Skip to content

Commit c68106f

Browse files
committed
Changing file name to JetHadronsPid.cxx and and it's corresponding workflow
1 parent 320fe70 commit c68106f

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

PWGJE/Tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ if(FastJet_FOUND)
437437
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::PWGJECore O2Physics::AnalysisCore
438438
COMPONENT_NAME Analysis)
439439
o2physics_add_dpl_workflow(jet-hadrons-pid
440-
SOURCES jetHadronsPid.cxx
440+
SOURCES JetHadronsPid.cxx
441441
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore O2Physics::PWGJECore FastJet::FastJet FastJet::Contrib O2Physics::EventFilteringUtils
442442
COMPONENT_NAME Analysis)
443443
endif()
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file jetHadronsPid.cxx
12+
/// \file JetHadronsPid.cxx
1313
/// \brief Analysis of hadrons in jets
1414
/// \author Leonard Lorenc, WUT Warsaw, leonard.lorenc@cern.ch
1515
/// \author Aleksandra Mulewicz, WUT Warsaw, aleksandra.mulewicz@cern.ch
@@ -68,7 +68,7 @@ using HadronTracksMC = soa::Join<aod::Tracks, aod::TracksExtra, aod::TrackSelect
6868
aod::pidTPCFullPr, aod::pidTOFFullPr,
6969
aod::McTrackLabels>;
7070

71-
struct jetHadronsPid {
71+
struct JetHadronsPid {
7272

7373
HistogramRegistry registryData{"registryData", {}, OutputObjHandlingPolicy::AnalysisObject, true, true};
7474

@@ -338,7 +338,7 @@ struct jetHadronsPid {
338338
}
339339
}
340340
}
341-
PROCESS_SWITCH(jetHadronsPid, processPureTracks, "Pure Tracks Analysis", true);
341+
PROCESS_SWITCH(JetHadronsPid, processPureTracks, "Pure Tracks Analysis", true);
342342

343343
void processJets(JetEvents::iterator const& collision,
344344
soa::Join<aod::ChargedJets, aod::ChargedJetConstituents> const& jets,
@@ -540,7 +540,7 @@ struct jetHadronsPid {
540540
registryData.fill(HIST("tracks_n_in_ue"), nTracksOut);
541541
}
542542
}
543-
PROCESS_SWITCH(jetHadronsPid, processJets, "Jets Analysis", true);
543+
PROCESS_SWITCH(JetHadronsPid, processJets, "Jets Analysis", true);
544544

545545
void processMC(StandardEvents::iterator const& collision, HadronTracksMC const& tracks, aod::McParticles const&)
546546
{
@@ -618,7 +618,7 @@ struct jetHadronsPid {
618618
}
619619
}
620620
}
621-
PROCESS_SWITCH(jetHadronsPid, processMC, "Run on Monte Carlo", false);
621+
PROCESS_SWITCH(JetHadronsPid, processMC, "Run on Monte Carlo", false);
622622

623623
void processMCTruth(aod::McCollisions::iterator const& mcCollision, aod::McParticles const& mcParticles)
624624
{
@@ -647,10 +647,10 @@ struct jetHadronsPid {
647647
}
648648
}
649649
}
650-
PROCESS_SWITCH(jetHadronsPid, processMCTruth, "Run on Monte Carlo (Pure Truth)", false);
650+
PROCESS_SWITCH(JetHadronsPid, processMCTruth, "Run on Monte Carlo (Pure Truth)", false);
651651
};
652652

653653
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
654654
{
655-
return WorkflowSpec{adaptAnalysisTask<jetHadronsPid>(cfgc)};
655+
return WorkflowSpec{adaptAnalysisTask<JetHadronsPid>(cfgc)};
656656
}

0 commit comments

Comments
 (0)