Skip to content

Commit d2b6137

Browse files
authored
Fix event selection for not-anchored simulations
@ekryshen the introduction of the mapRCT breaks not-anchored simulation, where the default runNumber is set to 300000 and the map is not filled. Does this fix make sense? I tested it locally and it works
1 parent 2a57c49 commit d2b6137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/TableProducer/eventSelection.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ struct BcSelectionTask {
262262

263263
int run = bcs.iteratorAt(0).runNumber();
264264

265-
if (run != lastRun && run >= 500000) {
265+
if (run != lastRun && run >= 300000) {
266266
lastRun = run;
267267
auto runInfo = o2::parameters::AggregatedRunInfo::buildAggregatedRunInfo(o2::ccdb::BasicCCDBManager::instance(), run);
268268
// first bc of the first orbit

0 commit comments

Comments
 (0)