You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto hOmegaMinus = histos.get<TH2>(HIST("h2dGeneratedOmegaMinus"));
1498
1498
auto hOmegaPlus = histos.get<TH2>(HIST("h2dGeneratedOmegaPlus"));
1499
1499
for (auto& gVec : geK0Short) {
1500
-
if (gVec.generatedK0Short().size() != hK0Short->GetNcells())
1500
+
if (int(gVec.generatedK0Short().size()) != hK0Short->GetNcells())
1501
1501
LOGF(fatal, "K0Short: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedK0Short().size(), hK0Short->GetNcells());
1502
-
for (uint64_t iv = 0; iv < hK0Short->GetNcells(); iv++) {
1502
+
for (int iv = 0; iv < hK0Short->GetNcells(); iv++) {
if (gVec.generatedLambda().size() != hLambda->GetNcells())
1507
+
if (int(gVec.generatedLambda().size()) != hLambda->GetNcells())
1508
1508
LOGF(fatal, "Lambda: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedLambda().size(), hLambda->GetNcells());
1509
-
for (uint64_t iv = 0; iv < hLambda->GetNcells(); iv++) {
1509
+
for (int iv = 0; iv < hLambda->GetNcells(); iv++) {
if (gVec.generatedAntiLambda().size() != hAntiLambda->GetNcells())
1514
+
if (int(gVec.generatedAntiLambda().size()) != hAntiLambda->GetNcells())
1515
1515
LOGF(fatal, "AntiLambda: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedAntiLambda().size(), hAntiLambda->GetNcells());
1516
-
for (uint64_t iv = 0; iv < hAntiLambda->GetNcells(); iv++) {
1516
+
for (int iv = 0; iv < hAntiLambda->GetNcells(); iv++) {
if (gVec.generatedXiMinus().size() != hXiMinus->GetNcells())
1521
+
if (int(gVec.generatedXiMinus().size()) != hXiMinus->GetNcells())
1522
1522
LOGF(fatal, "XiMinus: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedXiMinus().size(), hXiMinus->GetNcells());
1523
-
for (uint64_t iv = 0; iv < hXiMinus->GetNcells(); iv++) {
1523
+
for (int iv = 0; iv < hXiMinus->GetNcells(); iv++) {
if (gVec.generatedXiPlus().size() != hXiPlus->GetNcells())
1528
+
if (int(gVec.generatedXiPlus().size()) != hXiPlus->GetNcells())
1529
1529
LOGF(fatal, "XiPlus: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedXiPlus().size(), hXiPlus->GetNcells());
1530
-
for (uint64_t iv = 0; iv < hXiPlus->GetNcells(); iv++) {
1530
+
for (int iv = 0; iv < hXiPlus->GetNcells(); iv++) {
if (gVec.generatedOmegaMinus().size() != hOmegaMinus->GetNcells())
1535
+
if (int(gVec.generatedOmegaMinus().size()) != hOmegaMinus->GetNcells())
1536
1536
LOGF(fatal, "OmegaMinus: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedOmegaMinus().size(), hOmegaMinus->GetNcells());
1537
-
for (uint64_t iv = 0; iv < hOmegaMinus->GetNcells(); iv++) {
1537
+
for (int iv = 0; iv < hOmegaMinus->GetNcells(); iv++) {
if (gVec.generatedOmegaPlus().size() != hOmegaPlus->GetNcells())
1542
+
if (int(gVec.generatedOmegaPlus().size()) != hOmegaPlus->GetNcells())
1543
1543
LOGF(fatal, "OmegaPlus: Number of elements in generated array and number of cells in receiving histogram differ: %i vs %i!", gVec.generatedOmegaPlus().size(), hOmegaPlus->GetNcells());
1544
-
for (uint64_t iv = 0; iv < hOmegaPlus->GetNcells(); iv++) {
1544
+
for (int iv = 0; iv < hOmegaPlus->GetNcells(); iv++) {
0 commit comments