We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4861386 commit 0ed1ffaCopy full SHA for 0ed1ffa
PWGLF/Tasks/Nuspex/antinucleiInJets.cxx
@@ -3282,8 +3282,8 @@ struct AntinucleiInJets {
3282
const int nBins = ptOverAbins.size() - 1;
3283
3284
// Clamp systematic index range
3285
- const int systStart = std::max(0, systIndexStart.value);
3286
- const int systEnd = std::min(nSyst, systIndexEnd.value);
+ const int systStart = std::max(0, static_cast<int>(systIndexStart.value));
+ const int systEnd = std::min(nSyst, static_cast<int>(systIndexEnd.value));
3287
3288
// Loop over systematic variations
3289
for (int isyst = systStart; isyst < systEnd; isyst++) {
0 commit comments