Skip to content

Commit 451cdae

Browse files
Added additional analysis histograms
1 parent dbc326a commit 451cdae

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

PWGCF/EbyEFluctuations/Tasks/v0ptHadPiKaProt.cxx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,6 @@ struct V0ptHadPiKaProt {
532532
TH1D* fPtProfileKaInWinB = new TH1D("fPtProfileKaInWinB", "fPtProfileKaInWinB", 20, binsarray);
533533
TH1D* fPtProfileProtInWinB = new TH1D("fPtProfileProtInWinB", "fPtProfileProtInWinB", 20, binsarray);
534534
double nSumInWinB = 0.0; // for Z = f(pT) = n(pT)/N_B in window B
535-
double nSumInWinBpi = 0.0;
536-
double nSumInWinBka = 0.0;
537-
double nSumInWinBprot = 0.0;
538535

539536
double nSumInWinA = 0.0; // for X (in window A) to calculate v2^2
540537
double nSumInWinC = 0.0; // for Y (in window C) to calculate v2^2
@@ -679,15 +676,12 @@ struct V0ptHadPiKaProt {
679676
if (std::abs(trkEta) < cfgCutEtaWindowB) {
680677
if (isPion) {
681678
fPtProfilePiInWinB->Fill(trkPt);
682-
nSumInWinBpi += 1.0;
683679
}
684680
if (isKaon) {
685681
fPtProfileKaInWinB->Fill(trkPt);
686-
nSumInWinBka += 1.0;
687682
}
688683
if (isProton && trkPt > cfgCutPtLowerProt) {
689684
fPtProfileProtInWinB->Fill(trkPt);
690-
nSumInWinBprot += 1.0;
691685
}
692686
}
693687
}

0 commit comments

Comments
 (0)