Skip to content

Commit

Permalink
Update StRoot/StRefMultCorr/StRefMultCorr.cxx
Browse files Browse the repository at this point in the history
Extra part for the second half of 3.5 GeV data set processing.

Co-authored-by: Vinh Luong <[email protected]>
  • Loading branch information
nigmatkulov and lbavinh authored Nov 6, 2023
1 parent 359c43c commit e5b1bf7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions StRoot/StRefMultCorr/StRefMultCorr.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,22 @@ Bool_t StRefMultCorr::passnTofMatchRefmultCut(Double_t refmult, Double_t ntofmat
refmultcutmin = calcPileUpRefMult(ntofmatch, c0, c1, c2, c3, c4);
notPileUp = isInPileUpRefMultLimits(refmult, refmultcutmin, refmultcutmax);
}
else if (mParameterIndex == 6) { // Run 20 Au+Au 5.75 GeV (sqrt(s_NN)=3.5 GeV)
b0=23.28;
b1=5.247;
b2=0.04037;
b3=-1.206e-3;
b4=5.792e-6;
c0=-14.82;
c1=1.583;
c2=0.02684;
c3=4.605e-5;
c4=-2.410e-6;

refmultcutmax = calcPileUpRefMult(ntofmatch, b0, b1, b2, b3, b4);
refmultcutmin = calcPileUpRefMult(ntofmatch, c0, c1, c2, c3, c4);
notPileUp = isInPileUpRefMultLimits(refmult, refmultcutmin, refmultcutmax);
}
else {
notPileUp = kTRUE;
}
Expand Down

0 comments on commit e5b1bf7

Please sign in to comment.