Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Dec 5, 2024
1 parent 7c2febc commit 5dcc6bd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions PWGLF/Utils/collisionCuts.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ class CollisonCuts
void setApplyNoITSROBorderCut(bool applyNoITSROBorderCut) { mApplyNoITSROBorderCut = applyNoITSROBorderCut; }

/// Set the track occupancy in time range cut
void setTrackOccupancyInTimeRange(int trackOccupancyInTimeRangeMax, int trackOccupancyInTimeRangeMin) { mtrackOccupancyInTimeRangeMax = trackOccupancyInTimeRangeMax; mtrackOccupancyInTimeRangeMin = trackOccupancyInTimeRangeMin; }
void setTrackOccupancyInTimeRange(int trackOccupancyInTimeRangeMax, int trackOccupancyInTimeRangeMin)
{
mtrackOccupancyInTimeRangeMax = trackOccupancyInTimeRangeMax;
mtrackOccupancyInTimeRangeMin = trackOccupancyInTimeRangeMin;
}

/// Set the NoCollInTimeRangeStandard cut
void setApplyCollInTimeRangeStandard(bool applyCollInTimeRangeStandard) { mApplyCollInTimeRangeStandard = applyCollInTimeRangeStandard; }
Expand Down Expand Up @@ -218,7 +222,7 @@ class CollisonCuts
return false;
}
auto bc = col.template bc_as<BCsWithRun2Info>();
if (!(bc.eventCuts() & BIT(aod::Run2EventCuts::kAliEventCutsAccepted))){
if (!(bc.eventCuts() & BIT(aod::Run2EventCuts::kAliEventCutsAccepted))) {
LOGF(debug, "Offline selection failed (AliEventCuts)");
return false;
}
Expand Down

0 comments on commit 5dcc6bd

Please sign in to comment.