Skip to content

Commit

Permalink
Merge branch 'AliceO2Group:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Archita-Dash authored Dec 11, 2024
2 parents 61e9f79 + 2477796 commit 93c926d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -852,13 +852,14 @@ struct femtoUniverseProducerTask {
const auto vtxZ = col.posZ();
const auto multNtr = col.multNTracksPV();
const auto cent = col.centFT0C();
const auto occupancy = col.trackOccupancyInTimeRange();

// check whether the basic event selection criteria are fulfilled
// if the basic selection is NOT fulfilled:
// in case of skimming run - don't store such collisions
// in case of trigger run - store such collisions but don't store any
// particle candidates for such collisions
if (!colCuts.isSelectedRun3(col)) {
if (!colCuts.isSelectedRun3(col) || (occupancy < ConfTPCOccupancyMin || occupancy > ConfTPCOccupancyMax)) {
return false;
} else {
if ((col.selection_bit(aod::evsel::kNoSameBunchPileup)) && (col.selection_bit(aod::evsel::kIsGoodZvtxFT0vsPV))) {
Expand Down

0 comments on commit 93c926d

Please sign in to comment.