We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc126d commit c7a3f5fCopy full SHA for c7a3f5f
1 file changed
PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx
@@ -535,7 +535,7 @@ struct FactorialMomentsTask {
535
}
536
double charge = pdgInfo->Charge();
537
double physCharge = charge / 3.0;
538
- if (mc.isPhysicalPrimary() && std::abs(mc.eta()) < 0.8 && std::abs(physCharge) >= kMinCharge) {
+ if (mc.isPhysicalPrimary() && std::abs(mc.eta()) < centralEta && std::abs(physCharge) >= kMinCharge) {
539
histos.fill(HIST("mEta"), mc.eta());
540
histos.fill(HIST("mPt"), mc.pt());
541
histos.fill(HIST("mPhi"), mc.phi());
@@ -601,7 +601,7 @@ struct FactorialMomentsTask {
601
checkpT(track);
602
603
for (int iPt = 0; iPt < numPt; ++iPt) {
604
- if (countTracks[iPt] < 3705) {
+ if (countTracks[iPt] < 0) {
605
mHistArrQA[iPt * 4 + 3]->Fill(countTracks[iPt]);
606
607
0 commit comments