Skip to content

Commit a62faea

Browse files
committed
Fix
1 parent 420a6cb commit a62faea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/D2H/Tasks/taskOmegac0ToOmegapi.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ struct HfTaskOmegac0ToOmegapi {
107107
LOGP(fatal, "One and only one data process function should be enabled at a time.");
108108
}
109109

110-
std::array<bool, 2> doprocess{doprocessMcWithKFParticle, doprocessMcWithKFParticleMl};
111-
if ((std::accumulate(doprocess.begin(), doprocess.end(), 0)) != 1) {
110+
std::array<bool, 2> doprocessMc{doprocessMcWithKFParticle, doprocessMcWithKFParticleMl};
111+
if ((std::accumulate(doprocessMc.begin(), doprocessMc.end(), 0)) != 1) {
112112
LOGP(fatal, "One and only one MC process function should be enabled at a time.");
113113
}
114114

0 commit comments

Comments
 (0)