Skip to content

Commit f8007d0

Browse files
committed
Boost the space part of phase to PRF
1 parent 0316181 commit f8007d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

PWGCF/FemtoUniverse/Core/FemtoUniverseMath.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,9 @@ 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-
273-
const double phase_inv = fDKOutPRF * mROutSmeared + fDKSidePRF * mRSideSmeared + fDKLongPRF * mRLongSmeared;
272+
const double rOutPRF = gammaOut * (mRO - betaOut * mDT);
273+
274+
const double phase_inv = fDKOutPRF * mROut + fDKSidePRF * mRS + fDKLongPRF * mRL;
274275
double quantumweight = 1.0 + TMath::Cos(2.0*phase_inv);
275276

276277
vect.push_back(quantumweight);

0 commit comments

Comments
 (0)