@@ -301,13 +301,13 @@ struct correlateMixedEvents {
301301 histos.fill (HIST (" deltaEtaDistribution" ), triggerTrack.eta () - assocTrack.eta ());
302302 // Correlate
303303 if (t2.compatibleK0Short ()) {
304- histos.fill (HIST (" mixedFullHadronK0Short" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
304+ histos.fill (HIST (" mixedFullHadronK0Short" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
305305 }
306306 if (t2.compatibleLambda ()) {
307- histos.fill (HIST (" mixedFullHadronLambda" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
307+ histos.fill (HIST (" mixedFullHadronLambda" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
308308 }
309309 if (t2.compatibleAntiLambda ()) {
310- histos.fill (HIST (" mixedFullHadronAntiLambda" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
310+ histos.fill (HIST (" mixedFullHadronAntiLambda" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
311311 }
312312 }
313313 }
@@ -326,16 +326,16 @@ struct correlateMixedEvents {
326326 auto assocTrack = t2.cascData ();
327327 // Correlate
328328 if (t2.compatibleXiMinus ()) {
329- histos.fill (HIST (" mixedFullHadronXiMinus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
329+ histos.fill (HIST (" mixedFullHadronXiMinus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
330330 }
331331 if (t2.compatibleXiPlus ()) {
332- histos.fill (HIST (" mixedFullHadronXiPlus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
332+ histos.fill (HIST (" mixedFullHadronXiPlus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
333333 }
334334 if (t2.compatibleOmegaMinus ()) {
335- histos.fill (HIST (" mixedFullHadronOmegaMinus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
335+ histos.fill (HIST (" mixedFullHadronOmegaMinus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
336336 }
337337 if (t2.compatibleOmegaPlus ()) {
338- histos.fill (HIST (" mixedFullHadronOmegaPlus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta ());
338+ histos.fill (HIST (" mixedFullHadronOmegaPlus" ), ComputeDeltaPhi (triggerTrack.phi (), assocTrack.phi ()), triggerTrack.eta () - assocTrack.eta (), assocTrack. pt () );
339339 }
340340 }
341341 }
0 commit comments