Skip to content

Commit d5da846

Browse files
committed
Rename task
1 parent 7c96bb0 commit d5da846

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGUD/Tasks/analysisMCDPMJetSGv3.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// In applying this license CERN does not waive the privileges and immunities
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
11-
/// \file analysisMCDPMJetSGv3.cxx
11+
/// \file AnalysisMCDPMJetSGv3.cxx
1212
/// \brief Process MC DPMJet events for inclusive studies.
1313
///
1414
/// \author Simone Ragoni
@@ -30,7 +30,7 @@ using namespace o2;
3030
using namespace o2::framework;
3131
using namespace o2::framework::expressions;
3232

33-
struct analysisMCDPMJetSGv3 {
33+
struct AnalysisMCDPMJetSGv3 {
3434
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};
3535
// TDatabasePDG* fPDG = TDatabasePDG::Instance();
3636

@@ -225,7 +225,7 @@ struct analysisMCDPMJetSGv3 {
225225
}
226226
histos.fill(HIST("hVisibleMultiVsGeneratedMulti"), counterMC, counter);
227227
}
228-
PROCESS_SWITCH(analysisMCDPMJetSGv3, processSim, "processSim", true);
228+
PROCESS_SWITCH(AnalysisMCDPMJetSGv3, processSim, "processSim", true);
229229

230230
void processReco(CC const& collision,
231231
TCs const& tracks,
@@ -402,11 +402,11 @@ struct analysisMCDPMJetSGv3 {
402402

403403
// } // collision loop
404404
}
405-
PROCESS_SWITCH(analysisMCDPMJetSGv3, processReco, "processReco", true);
405+
PROCESS_SWITCH(AnalysisMCDPMJetSGv3, processReco, "processReco", true);
406406
};
407407

408408
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
409409
{
410410
return WorkflowSpec{
411-
adaptAnalysisTask<analysisMCDPMJetSGv3>(cfgc)};
411+
adaptAnalysisTask<AnalysisMCDPMJetSGv3>(cfgc)};
412412
}

0 commit comments

Comments
 (0)