Skip to content

Commit 5cdde60

Browse files
author
Pengchong Hu
committed
fix for build
1 parent 131f052 commit 5cdde60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGCF/MultiparticleCorrelations/Tasks/multiharmonicCorrelations.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ struct MultiharmonicCorrelations { // this name is used in lower-case format to
695695
}
696696
}
697697

698-
for (int icut; icut < eCut_N; icut++) {
698+
for (int icut = 0; icut < eCut_N; icut++) {
699699
pc.fHistPt[icut] = new TH1F(Form("fHistPt[%s]", ccut[icut]), Form("pt distribution %s cut for reconstructed particles", ccut[icut]), nBins, min, max);
700700
pc.fHistPhi[icut] = new TH1F(Form("fHistPhi[%s]", ccut[icut]), Form("phi distribution %s cut for reconstructed particles", ccut[icut]), nBinsphi, minphi, maxphi);
701701
pc.fHistCharge[icut] = new TH1F(Form("fHistCharge[%s]", ccut[icut]), Form("charge distribution %s cut for reconstructed particles", ccut[icut]), nBinscharge, mincharge, maxcharge);

0 commit comments

Comments
 (0)