1414// / \author Grazia Luparello <grazia.luparello@cern.ch>
1515// / \author Samuele Cattaruzzi <samuele.cattaruzzi@cern.ch>
1616
17- #include < vector>
18- #include < unordered_map>
19-
20- #include " CommonConstants/PhysicsConstants.h"
21- #include " Framework/AnalysisTask.h"
22- #include " Framework/HistogramRegistry.h"
23- #include " Framework/runDataProcessing.h"
17+ #include " PWGHF/Core/HfHelper.h"
18+ #include " PWGHF/Core/SelectorCuts.h"
19+ #include " PWGHF/DataModel/CandidateReconstructionTables.h"
20+ #include " PWGHF/DataModel/CandidateSelectionTables.h"
21+ #include " PWGHF/HFC/DataModel/CorrelationTables.h"
22+ #include " PWGHF/HFC/DataModel/DerivedDataCorrelationTables.h"
2423
2524#include " Common/Core/TrackSelection.h"
2625#include " Common/DataModel/Centrality.h"
2726#include " Common/DataModel/EventSelection.h"
2827#include " Common/DataModel/Multiplicity.h"
2928#include " Common/DataModel/TrackSelectionTables.h"
3029
31- #include " PWGHF/Core/HfHelper.h"
32- #include " PWGHF/Core/SelectorCuts.h"
33- #include " PWGHF/DataModel/CandidateReconstructionTables.h"
34- #include " PWGHF/DataModel/CandidateSelectionTables.h"
35- #include " PWGHF/HFC/DataModel/CorrelationTables.h"
36- #include " PWGHF/HFC/DataModel/DerivedDataCorrelationTables.h"
30+ #include " CommonConstants/PhysicsConstants.h"
31+ #include " Framework/AnalysisTask.h"
32+ #include " Framework/HistogramRegistry.h"
33+ #include " Framework/runDataProcessing.h"
34+
35+ #include < unordered_map>
36+ #include < vector>
3737
3838using namespace o2 ;
3939using namespace o2 ::analysis;
@@ -233,6 +233,7 @@ struct HfCorrelatorDsHadrons {
233233 AxisSpec axisStatus = {15 , 0.5 , 15.5 , " Selection status" };
234234
235235 // Histograms for data analysis
236+ registry.add (" hCollisionPoolBin" , " Ds candidates collision pool bin" , {HistType::kTH1F , {axisPoolBin}});
236237 if (fillHistoData) {
237238 registry.add (" hPtCand" , " Ds candidates pt" , {HistType::kTH1F , {axisPtD}});
238239 registry.add (" hSelectionStatusDsToKKPi" , " Ds candidates selection" , {HistType::kTH1F , {axisStatus}});
@@ -249,7 +250,6 @@ struct HfCorrelatorDsHadrons {
249250 registry.add (" hZVtx" , " z vertex" , {HistType::kTH1F , {axisPosZ}});
250251 registry.add (" hMassDsVsPt" , " Ds candidates massVsPt" , {HistType::kTH2F , {{axisMassD}, {axisPtD}}});
251252 registry.add (" hMassDsData" , " Ds candidates mass" , {HistType::kTH1F , {axisMassD}});
252- registry.add (" hCollisionPoolBin" , " Ds candidates collision pool bin" , {HistType::kTH1F , {axisPoolBin}});
253253 registry.add (" hDsPoolBin" , " Ds candidates pool bin" , {HistType::kTH1F , {axisPoolBin}});
254254 registry.add (" hTracksPoolBin" , " Particles associated pool bin" , {HistType::kTH1F , {axisPoolBin}});
255255 }
@@ -291,6 +291,7 @@ struct HfCorrelatorDsHadrons {
291291 registry.add (" hCorrAllPrimaryPions" , " Ds-pion correlations MC Gen" , {HistType::kTH3F , {{axisPhi}, {axisPtD}, {axisPtHadron}}});
292292 registry.add (" hCorrAllPrimaryKaons" , " Ds-kaon correlations MC Gen" , {HistType::kTH3F , {{axisPhi}, {axisPtD}, {axisPtHadron}}});
293293 registry.add (" hCorrAllPrimaryProtons" , " Ds-proton correlations MC Gen" , {HistType::kTH3F , {{axisPhi}, {axisPtD}, {axisPtHadron}}});
294+ registry.add (" hFakeCollision" , " Fake collision counter" , {HistType::kTH1F , {{1 , -0.5 , 0.5 , " n fake coll" }}});
294295 }
295296 }
296297
0 commit comments