Skip to content

Commit e094eb9

Browse files
authored
Fix build error
1 parent 1bcf9e0 commit e094eb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,11 @@ class FemtoUniverseMath
269269
const double mRS = (y1_lcms - y2_lcms) / 0.197327;
270270
const double mRL = (z1_lcms - z2_lcms) / 0.197327;
271271
const double mDT = (t1_lcms - t2_lcms) / 0.197327;
272-
const double rOutPRF = gammaOut * (mRO - betaOut * mDT);
273-
274-
const double phase_inv = fDKOutPRF * mROut + fDKSidePRF * mRS + fDKLongPRF * mRL;
275-
double quantumweight = 1.0 + TMath::Cos(2.0 * phase_inv);
272+
const double rOutPRF = gammaOut * (mRO - betaOut * mDT);
276273

274+
const double phase_inv = fDKOutPRF * rOutPRF + fDKSidePRF * mRS + fDKLongPRF * mRL;
275+
double quantumweight = 1.0 + TMath::Cos(2.0*phase_inv);
276+
277277
vect.push_back(quantumweight);
278278
} else {
279279
vect.push_back(1.0);

0 commit comments

Comments
 (0)