Skip to content

Commit ddc96e4

Browse files
authored
fixname
1 parent 74c72e6 commit ddc96e4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

PWGHF/HFC/TableProducer/correlatorHfeHadrons.cxx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ struct HfCorrelatorHfeHadrons {
167167
registry.fill(HIST("hptElectron"), ptElectron);
168168
int lsElCounts = 0;
169169
int ulsElCounts = 0;
170-
if (eTrack.lsElPairCount() > 0) {
171-
for (int i = 0; i < eTrack.lsElPairCount(); ++i) {
170+
if (eTrack.lSElPairCount() > 0) {
171+
for (int i = 0; i < eTrack.lSElPairCount(); ++i) {
172172

173173
++lsElCounts;
174174
registry.fill(HIST("hLSElectronBin"), poolBin);
175175
}
176176
}
177-
if (eTrack.ulsElPairCount() > 0) {
178-
for (int i = 0; i < eTrack.ulsElPairCount(); ++i) {
177+
if (eTrack.uLSElPairCount() > 0) {
178+
for (int i = 0; i < eTrack.uLSElPairCount(); ++i) {
179179

180180
++ulsElCounts;
181181
registry.fill(HIST("hULSElectronBin"), poolBin);
@@ -211,15 +211,15 @@ struct HfCorrelatorHfeHadrons {
211211

212212
int lsPairElcorr = 0;
213213
int ulsPairElcorr = 0;
214-
if (eTrack.lsElPairCount() > 0) {
215-
for (int i = 0; i < eTrack.lsElPairCount(); ++i) {
214+
if (eTrack.lSElPairCount() > 0) {
215+
for (int i = 0; i < eTrack.lSElPairCount(); ++i) {
216216

217217
++lsPairElcorr;
218218
registry.fill(HIST("hLSEHCorrel"), ptElectron, ptHadron, deltaPhi, deltaEta);
219219
}
220220
}
221-
if (eTrack.ulsElPairCount() > 0) {
222-
for (int i = 0; i < eTrack.ulsElPairCount(); ++i) {
221+
if (eTrack.uLSElPairCount() > 0) {
222+
for (int i = 0; i < eTrack.uLSElPairCount(); ++i) {
223223

224224
registry.fill(HIST("hULSEHCorrel"), ptElectron, ptHadron, deltaPhi, deltaEta);
225225
++ulsPairElcorr;
@@ -273,15 +273,15 @@ struct HfCorrelatorHfeHadrons {
273273
registry.fill(HIST("hMixEventInclusiveEHCorrl"), ptElectronMix, ptHadronMix, deltaPhiMix, deltaEtaMix);
274274
int lsElPairCorr = 0;
275275
int ulsElPairCorr = 0;
276-
if (t1.lsElPairCount() > 0) {
277-
for (int i = 0; i < t1.lsElPairCount(); ++i) {
276+
if (t1.lSElPairCount() > 0) {
277+
for (int i = 0; i < t1.lSElPairCount(); ++i) {
278278

279279
registry.fill(HIST("hMixEventLSEHCorrel"), ptElectronMix, ptHadronMix, deltaPhiMix, deltaEtaMix);
280280
++lsElPairCorr;
281281
}
282282
}
283-
if (t1.ulsElPairCount() > 0) {
284-
for (int i = 0; i < t1.ulsElPairCount(); ++i) {
283+
if (t1.uLSElPairCount() > 0) {
284+
for (int i = 0; i < t1.uLSElPairCount(); ++i) {
285285

286286
registry.fill(HIST("hMixEventULSEHCorrel"), ptElectronMix, ptHadronMix, deltaPhiMix, deltaEtaMix);
287287
++ulsElPairCorr;

0 commit comments

Comments
 (0)