Skip to content

Commit cd5de89

Browse files
authored
Merge pull request #8 from alibuild/alibot-cleanup-10595
Please consider the following formatting changes to AliceO2Group#10595
2 parents 75b74ea + 0ffe5e7 commit cd5de89

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ struct AntinucleiInJets {
449449
static std::mt19937 gen(rd());
450450
static std::uniform_int_distribution<> dis(0, 99);
451451
int randomNumber = dis(gen);
452-
if(randomNumber <= rejectionPercentage) {
452+
if (randomNumber <= rejectionPercentage) {
453453
return false;
454454
}
455455
return true;
@@ -458,7 +458,8 @@ struct AntinucleiInJets {
458458
// Process Data
459459
void processData(SelectedCollisions::iterator const& collision, FullNucleiTracks const& tracks)
460460
{
461-
if(rejectEvents && shouldRejectEvent()) return;
461+
if (rejectEvents && shouldRejectEvent())
462+
return;
462463

463464
// event counter: before event selection
464465
registryData.fill(HIST("number_of_events_data"), 0.5);
@@ -1215,7 +1216,8 @@ struct AntinucleiInJets {
12151216
// Process Systematics
12161217
void processSystematicsData(SelectedCollisions::iterator const& collision, FullNucleiTracks const& tracks)
12171218
{
1218-
if(rejectEvents && shouldRejectEvent()) return;
1219+
if (rejectEvents && shouldRejectEvent())
1220+
return;
12191221

12201222
const int nSystematics = 10;
12211223
int itsNclustersSyst[nSystematics] = {5, 6, 5, 4, 5, 3, 5, 6, 3, 4};

0 commit comments

Comments
 (0)