Skip to content

Commit da5d4ea

Browse files
authored
PWGEM/PhotonMeson: fix histogram name for rotation bkg (#6681)
1 parent 0125504 commit da5d4ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGEM/PhotonMeson/Core/Pi0EtaToGammaGamma.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,10 +513,10 @@ struct Pi0EtaToGammaGamma {
513513
float openingAngle2 = std::acos(photon2.Vect().Dot(photon3.Vect()) / (photon2.P() * photon3.P()));
514514

515515
if (openingAngle1 > emccuts.minOpenAngle && abs(mother1.Rapidity()) < maxY) {
516-
fRegistry.fill(HIST("Pair/rotation/hMggPt"), mother1.M(), mother1.Pt());
516+
fRegistry.fill(HIST("Pair/rotation/hs"), mother1.M(), mother1.Pt(), 0.0, 0.0);
517517
}
518518
if (openingAngle2 > emccuts.minOpenAngle && abs(mother2.Rapidity()) < maxY) {
519-
fRegistry.fill(HIST("Pair/rotation/hMggPt"), mother2.M(), mother2.Pt());
519+
fRegistry.fill(HIST("Pair/rotation/hs"), mother2.M(), mother2.Pt(), 0.0, 0.0);
520520
}
521521
}
522522
}

0 commit comments

Comments
 (0)