|
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 |
@@ -190,7 +190,7 @@ const float kMaxZDCTime = 2.; |
190 | 190 | const int k2Tracks = 2; |
191 | 191 | const int k4Tracks = 4; |
192 | 192 |
|
193 | | -struct fwdMuonsUPC { |
| 193 | +struct FwdMuonsUpc { |
194 | 194 |
|
195 | 195 | // a PDG object |
196 | 196 | Service<o2::framework::O2DatabasePDG> pdg; |
@@ -762,7 +762,7 @@ struct fwdMuonsUPC { |
762 | 762 | } |
763 | 763 | } |
764 | 764 |
|
765 | | - PROCESS_SWITCH(fwdMuonsUPC, processData, "", true); |
| 765 | + PROCESS_SWITCH(FwdMuonsUpc, processData, "", true); |
766 | 766 |
|
767 | 767 | // process MC Truth |
768 | 768 | void processMcGen(aod::UDMcCollisions const& mccollisions, aod::UDMcParticles const& McParts) |
@@ -794,7 +794,7 @@ struct fwdMuonsUPC { |
794 | 794 | processMcGenCand(cand, tr1, tr2); |
795 | 795 | } |
796 | 796 | } |
797 | | - PROCESS_SWITCH(fwdMuonsUPC, processMcGen, "", false); |
| 797 | + PROCESS_SWITCH(FwdMuonsUpc, processMcGen, "", false); |
798 | 798 |
|
799 | 799 | // process reco MC (gen info included) |
800 | 800 | void processMcReco(CandidatesFwd const& eventCandidates, |
@@ -834,12 +834,12 @@ struct fwdMuonsUPC { |
834 | 834 | processMcRecoCand(cand, tr1, trMc1, tr2, trMc2); |
835 | 835 | } |
836 | 836 | } |
837 | | - PROCESS_SWITCH(fwdMuonsUPC, processMcReco, "", false); |
| 837 | + PROCESS_SWITCH(FwdMuonsUpc, processMcReco, "", false); |
838 | 838 | }; |
839 | 839 |
|
840 | 840 | WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
841 | 841 | { |
842 | 842 | return WorkflowSpec{ |
843 | | - adaptAnalysisTask<fwdMuonsUPC>(cfgc), |
| 843 | + adaptAnalysisTask<FwdMuonsUpc>(cfgc), |
844 | 844 | }; |
845 | 845 | } |
0 commit comments