@@ -254,6 +254,7 @@ struct HfCorrelatorDplusHadrons {
254254 ConfigurableAxis binsPoolBin{" binsPoolBin" , {9 , 0 ., 9 .}, " PoolBin" };
255255 ConfigurableAxis binsMultFT0M{" binsMultFT0M" , {600 , 0 ., 6000 .}, " Multiplicity as FT0M signal amplitude" };
256256 ConfigurableAxis binsMassD{" binsMassD" , {200 , 1.7 , 2.10 }, " inv. mass (#pi^{+}K^{-}#pi^{+}) (GeV/#it{c}^{2})" };
257+ ConfigurableAxis binsDcaXY{" binsDcaXY" , {128 , -0.2 , 0.2 }, " DCA xy" };
257258 BinningType corrBinning{{binsZVtx, binsMultiplicity}, true };
258259 HistogramRegistry registry{" registry" , {}, OutputObjHandlingPolicy::AnalysisObject};
259260
@@ -271,6 +272,7 @@ struct HfCorrelatorDplusHadrons {
271272 AxisSpec const axisPoolBin = {binsPoolBin, " PoolBin" };
272273 AxisSpec const axisStatus = {15 , 0.5 , 15.5 , " Selection status" };
273274 AxisSpec const axisRapidity = {100 , -2 , 2 , " Rapidity" };
275+ AxisSpec const axisDcaXY = {binsDcaXY, " DCA xy" };
274276
275277 registry.add (" hPtCand" , " Dplus,Hadron candidates;candidate #it{p}_{T} (GeV/#it{c});entries" , {HistType::kTH1F , {axisPtD}});
276278 registry.add (" hPtProng0" , " Dplus,Hadron candidates;prong 0 #it{p}_{T} (GeV/#it{c});entries" , {HistType::kTH1F , {axisPtD}});
@@ -291,6 +293,7 @@ struct HfCorrelatorDplusHadrons {
291293 registry.add (" hMassDplusData" , " Dplus candidates;inv. mass (K^{-}#pi^{+}#pi^{+}) (GeV/#it{c}^{2});entries" , {HistType::kTH1F , {{axisMassD}}});
292294 registry.add (" hDplusPoolBin" , " D+ candidates pool bin" , {HistType::kTH1F , {axisPoolBin}});
293295 registry.add (" hTracksPoolBin" , " Particles associated pool bin" , {HistType::kTH1F , {axisPoolBin}});
296+ registry.add (" hDcaXYVsPt" , " DCA xy vs pt" , {HistType::kTH2F , {{axisDcaXY}, {axisPtHadron}}});
294297 // Histograms for MC Reco analysis
295298 registry.add (" hSelectionStatusMCRec" , " Dplus,Hadron candidates - MC reco;selection status;entries" , {HistType::kTH1F , {{4 , -0.5 , 3.5 }}});
296299 registry.add (" hMCEvtCount" , " Event counter - MC gen;;entries" , {HistType::kTH1F , {{1 , -0.5 , 0.5 }}});
0 commit comments