@@ -1774,6 +1774,12 @@ struct HStrangeCorrelation {
17741774 histos.add (" hNumberOfRejectedPairsHadron" , " hNumberOfRejectedPairsHadron" , kTH1F , {{1 , 0 , 1 }});
17751775 histos.add (" hNumberOfRejectedPairsPion" , " hNumberOfRejectedPairsPion" , kTH1F , {{1 , 0 , 1 }});
17761776 }
1777+ if (doprocessSameEventHHadrons) {
1778+ histos.add (" hDCAzTriggerHadron" , " hDCAzTriggerHadron" , kTH2F , {{200 , -10 , 10 }, axesConfigurations.axisPtQA });
1779+ histos.add (" hDCAxyTriggerHadron" , " hDCAxyTriggerHadron" , kTH2F , {{200 , -10 , 10 }, axesConfigurations.axisPtQA });
1780+ histos.add (" hDCAzAssociatedHadron" , " hDCAzAssociatedHadron" , kTH2F , {{200 , -10 , 10 }, axesConfigurations.axisPtQA });
1781+ histos.add (" hDCAxyAssociatedHadron" , " hDCAxyAssociatedHadron" , kTH2F , {{200 , -10 , 10 }, axesConfigurations.axisPtQA });
1782+ }
17771783 if (doprocessSameEventHV0s || doprocessMixedEventHV0s) {
17781784 histos.add (" hNumberOfRejectedPairsV0" , " hNumberOfRejectedPairsV0" , kTH1F , {{1 , 0 , 1 }});
17791785 }
@@ -2156,6 +2162,8 @@ struct HStrangeCorrelation {
21562162 auto track = triggerTrack.track_as <TracksComplete>();
21572163 if (!isValidTrigger (track, triggerTrack.isLeading ()))
21582164 continue ;
2165+ histos.fill (HIST (" hDCAzTriggerHadron" ), track.dcaZ (), track.pt ());
2166+ histos.fill (HIST (" hDCAxyTriggerHadron" ), track.dcaXY (), track.pt ());
21592167 float efficiency = 1 .0f ;
21602168 if (efficiencyFlags.applyEfficiencyCorrection ) {
21612169 efficiency = hEfficiencyTrigger->Interpolate (track.pt (), track.eta ());
@@ -2178,6 +2186,8 @@ struct HStrangeCorrelation {
21782186 continue ;
21792187 float efficiency = 1 .0f ;
21802188 float purity = 1 .0f ;
2189+ histos.fill (HIST (" hDCAzAssocHadron" ), assoc.dcaZ (), assoc.pt ());
2190+ histos.fill (HIST (" hDCAxyAssocHadron" ), assoc.dcaXY (), assoc.pt ());
21812191 if (efficiencyFlags.applyEfficiencyCorrection ) {
21822192 efficiency = hEfficiencyHadron->Interpolate (assoc.pt (), assoc.eta ());
21832193 if (efficiencyFlags.applyPurityHadron )
0 commit comments