File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments