|
25 | 25 | #include "Framework/AnalysisDataModel.h" |
26 | 26 | #include "Framework/AnalysisTask.h" |
27 | 27 | #include "Framework/HistogramRegistry.h" |
28 | | -#include "Framework/Logger.h" #include "ReconstructionDataFormats/Track.h" |
| 28 | +#include "Framework/Logger.h" |
29 | 29 | #include "Framework/O2DatabasePDGPlugin.h" |
30 | 30 | #include "Framework/StaticFor.h" |
31 | 31 | #include "Framework/runDataProcessing.h" |
| 32 | +#include "ReconstructionDataFormats/Track.h" |
32 | 33 |
|
33 | 34 | #include <TF1.h> |
34 | 35 | #include <TH1F.h> |
@@ -149,19 +150,19 @@ struct MultiplicityPt { |
149 | 150 | // Data processing |
150 | 151 | void processData(CollisionTableData::iterator const& collision, |
151 | 152 | TrackTableData const& tracks); |
152 | | - PROCESS_SWITCH(multiplicitypt, processData, "process data", false); |
| 153 | + PROCESS_SWITCH(MultiplicityPt, processData, "process data", false); |
153 | 154 |
|
154 | 155 | // MC processing - EXACT spectraTOF approach |
155 | 156 | void processMC(TrackTableMC const& tracks, |
156 | 157 | aod::McParticles const& particles, |
157 | 158 | CollisionTableMCTrue const& mcCollisions, |
158 | 159 | CollisionTableMC const& collisions); |
159 | | - PROCESS_SWITCH(multiplicitypt, processMC, "process MC", true); |
| 160 | + PROCESS_SWITCH(MultiplicityPt, processMC, "process MC", true); |
160 | 161 |
|
161 | 162 | // True MC processing - EXACT spectraTOF approach |
162 | 163 | void processTrue(CollisionTableMCTrue const& mcCollisions, |
163 | 164 | ParticleTableMC const& particles); |
164 | | - PROCESS_SWITCH(multiplicitypt, processTrue, "process true MC", true); |
| 165 | + PROCESS_SWITCH(MultiplicityPt, processTrue, "process true MC", true); |
165 | 166 |
|
166 | 167 | // ======================================================================== |
167 | 168 | // TRACK SELECTION FUNCTIONS - MATCHING spectraTOF |
@@ -564,7 +565,7 @@ void MultiplicityPt::init(InitContext const&) |
564 | 565 | ue.add("hvtxZ", "Vertex Z (data);Vertex Z (cm);Events", HistType::kTH1F, {{40, -20.0, 20.0}}); |
565 | 566 | ue.add("hvtxZmc", "MC vertex Z;Vertex Z (cm);Events", HistType::kTH1F, {{40, -20.0, 20.0}}); |
566 | 567 |
|
567 | | - LOG(info) << "Initialized multiplicitypt task with EXCLUSIVE PID for INCLUSIVE + PARTICLE-SPECIFIC (Pi, K, p) analysis"; |
| 568 | + LOG(info) << "Initialized MultiplicityPt task with EXCLUSIVE PID for INCLUSIVE + PARTICLE-SPECIFIC (Pi, K, p) analysis"; |
568 | 569 | } |
569 | 570 |
|
570 | 571 | // ======================================================================== |
|
0 commit comments