Skip to content

Commit

Permalink
Revert bad idea
Browse files Browse the repository at this point in the history
  • Loading branch information
vkucera authored Jun 3, 2024
1 parent aec28df commit 4a2b212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PWGHF/Utils/utilsEvSelHf.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
const float posZ = collision.posZ();
hPosZBeforeEvSel->Fill(posZ);

for (EventRejection reason = 1; reason < EventRejection::NEventRejection; reason++) {
for (std::size_t reason = 1; reason < EventRejection::NEventRejection; reason++) {
if (TESTBIT(rejectionMask, reason)) {
return;
}
Expand Down Expand Up @@ -297,7 +297,7 @@ struct HfEventSelectionMc {
{
hParticles->Fill(EventRejection::None);

for (EventRejection reason = 1; reason < EventRejection::NEventRejection; reason++) {
for (std::size_t reason = 1; reason < EventRejection::NEventRejection; reason++) {
if (TESTBIT(rejectionMask, reason)) {
return;
}
Expand Down

0 comments on commit 4a2b212

Please sign in to comment.