We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a94a9 commit 6f0d1c8Copy full SHA for 6f0d1c8
PWGUD/Tasks/upcRhoAnalysis.cxx
@@ -674,7 +674,7 @@ struct UpcRhoAnalysis {
674
double deltaPhi(const ROOT::Math::PxPyPzMVector& p1, const ROOT::Math::PxPyPzMVector& p2)
675
{
676
double dPhi = p1.Phi() - p2.Phi();
677
- while (dPhi > o2::constants::math::PI)
+ while (dPhi >= o2::constants::math::PI)
678
dPhi -= o2::constants::math::TwoPI;
679
while (dPhi < -o2::constants::math::PI)
680
dPhi += o2::constants::math::TwoPI;
0 commit comments