|
9 | 9 | // granted to it by virtue of its status as an Intergovernmental Organization |
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 |
|
12 | | -/// \file FwdMuonsUPC.cxx |
| 12 | +/// \file fwdMuonsUPC.cxx |
13 | 13 | /// \brief perform some selections on fwd events and saves the results |
14 | 14 |
|
15 | 15 | /// executable name o2-analysis-ud-fwd-muon-upc |
@@ -179,7 +179,7 @@ const float kMaxZDCTime = 2.; |
179 | 179 | const int k2Tracks = 2; |
180 | 180 | const int k4Tracks = 4; |
181 | 181 |
|
182 | | -struct FwdMuonsUPC { |
| 182 | +struct fwdMuonsUPC { |
183 | 183 |
|
184 | 184 | using CandidatesFwd = soa::Join<o2::aod::UDCollisions, o2::aod::UDCollisionsSelsFwd>; |
185 | 185 | using ForwardTracks = soa::Join<o2::aod::UDFwdTracks, o2::aod::UDFwdTracksExtra>; |
@@ -759,7 +759,7 @@ struct FwdMuonsUPC { |
759 | 759 | } |
760 | 760 | } |
761 | 761 |
|
762 | | - PROCESS_SWITCH(FwdMuonsUPC, processData, "", true); |
| 762 | + PROCESS_SWITCH(fwdMuonsUPC, processData, "", true); |
763 | 763 |
|
764 | 764 | // process MC Truth |
765 | 765 | void processMcGen(aod::UDMcCollisions const& mccollisions, aod::UDMcParticles const& McParts) |
@@ -791,7 +791,7 @@ struct FwdMuonsUPC { |
791 | 791 | processMcGenCand(cand, tr1, tr2); |
792 | 792 | } |
793 | 793 | } |
794 | | - PROCESS_SWITCH(FwdMuonsUPC, processMcGen, "", false); |
| 794 | + PROCESS_SWITCH(fwdMuonsUPC, processMcGen, "", false); |
795 | 795 |
|
796 | 796 | // process reco MC (gen info included) |
797 | 797 | void processMcReco(CandidatesFwd const& eventCandidates, |
@@ -831,12 +831,12 @@ struct FwdMuonsUPC { |
831 | 831 | processMcRecoCand(cand, tr1, trMc1, tr2, trMc2); |
832 | 832 | } |
833 | 833 | } |
834 | | - PROCESS_SWITCH(FwdMuonsUPC, processMcReco, "", false); |
| 834 | + PROCESS_SWITCH(fwdMuonsUPC, processMcReco, "", false); |
835 | 835 | }; |
836 | 836 |
|
837 | 837 | WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
838 | 838 | { |
839 | 839 | return WorkflowSpec{ |
840 | | - adaptAnalysisTask<FwdMuonsUPC>(cfgc), |
| 840 | + adaptAnalysisTask<fwdMuonsUPC>(cfgc), |
841 | 841 | }; |
842 | 842 | } |
0 commit comments