@@ -266,9 +266,12 @@ struct AntinucleiInJets {
266266 registryMC.add (" antiproton_ue_rec_tpc" , " antiproton_ue_rec_tpc" , HistType::kTH1F , {{nbins, min, max, " #it{p}_{T} (GeV/#it{c})" }});
267267 registryMC.add (" antiproton_jet_rec_tof" , " antiproton_jet_rec_tof" , HistType::kTH1F , {{nbins, min, max, " #it{p}_{T} (GeV/#it{c})" }});
268268 registryMC.add (" antiproton_ue_rec_tof" , " antiproton_ue_rec_tof" , HistType::kTH1F , {{nbins, min, max, " #it{p}_{T} (GeV/#it{c})" }});
269+ registryMC.add (" antiproton_jet_tpc_rec_vs_generatedptjet" , " antiproton_jet_tpc_rec_vs_generatedptjet" , HistType::kTH2F , {{nbins, min, max, " #it{p}_{T, antiproton}^{rec} (GeV/#it{c})" }, {1000 , 0 ., 100 ., " #it{p}_{T, jet}^{gen} (GeV/#it{c})" }});
270+ registryMC.add (" antiproton_jet_tof_rec_vs_generatedptjet" , " antiproton_jet_tof_rec_vs_generatedptjet" , HistType::kTH2F , {{nbins, min, max, " #it{p}_{T, antiproton}^{rec} (GeV/#it{c})" }, {1000 , 0 ., 100 ., " #it{p}_{T, jet}^{gen} (GeV/#it{c})" }});
269271
270272 // detector response matrix
271273 registryMC.add (" detectorResponseMatrix" , " detectorResponseMatrix" , HistType::kTH2F , {{1000 , 0.0 , 100.0 , " #it{p}_{T}^{rec} (GeV/#it{c})" }, {2000 , -20.0 , 20.0 , " #it{p}_{T}^{gen} - #it{p}_{T}^{rec} (GeV/#it{c})" }});
274+ registryMC.add (" generatedVsReconstructedPt" , " generatedVsReconstructedPt" , HistType::kTH2F , {{1000 , 0.0 , 100.0 , " #it{p}_{T}^{rec} (GeV/#it{c})" }, {1000 , 0.0 , 100.0 , " #it{p}_{T}^{gen} (GeV/#it{c})" }});
272275 }
273276
274277 // systematic uncertainties
@@ -1175,6 +1178,7 @@ struct AntinucleiInJets {
11751178
11761179 // fill detector response matrix
11771180 registryMC.fill (HIST (" detectorResponseMatrix" ), jet.pt (), jetPtGen - jet.pt ()); // maybe it should be filled after bkg sub
1181+ registryMC.fill (HIST (" generatedVsReconstructedPt" ), jet.pt (), jetPtGen);
11781182
11791183 // jet pt must be larger than threshold
11801184 auto jetForSub = jet;
@@ -1232,8 +1236,10 @@ struct AntinucleiInJets {
12321236
12331237 if (passedItsPidProt) {
12341238 registryMC.fill (HIST (" antiproton_jet_rec_tpc" ), track.pt (), nsigmaTPCPr);
1239+ registryMC.fill (HIST (" antiproton_jet_tpc_rec_vs_generatedptjet" ), track.pt (), jetPtGen);
12351240 if (nsigmaTPCPr > minNsigmaTpc && nsigmaTPCPr < maxNsigmaTpc && track.hasTOF ())
12361241 registryMC.fill (HIST (" antiproton_jet_rec_tof" ), track.pt (), nsigmaTOFPr);
1242+ registryMC.fill (HIST (" antiproton_jet_tof_rec_vs_generatedptjet" ), track.pt (), jetPtGen);
12371243 }
12381244 }
12391245
0 commit comments