Skip to content

Commit 4a2b212

Browse files
authored
Revert bad idea
1 parent aec28df commit 4a2b212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/Utils/utilsEvSelHf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
202202
const float posZ = collision.posZ();
203203
hPosZBeforeEvSel->Fill(posZ);
204204

205-
for (EventRejection reason = 1; reason < EventRejection::NEventRejection; reason++) {
205+
for (std::size_t reason = 1; reason < EventRejection::NEventRejection; reason++) {
206206
if (TESTBIT(rejectionMask, reason)) {
207207
return;
208208
}
@@ -297,7 +297,7 @@ struct HfEventSelectionMc {
297297
{
298298
hParticles->Fill(EventRejection::None);
299299

300-
for (EventRejection reason = 1; reason < EventRejection::NEventRejection; reason++) {
300+
for (std::size_t reason = 1; reason < EventRejection::NEventRejection; reason++) {
301301
if (TESTBIT(rejectionMask, reason)) {
302302
return;
303303
}

0 commit comments

Comments
 (0)