Skip to content

Commit 89a6d23

Browse files
committed
Set triggerBcShift to 0 by default. Use default CCDB objects for unanchored MCs
1 parent 10cef7b commit 89a6d23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/TableProducer/eventSelection.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct BcSelectionTask {
5959
Produces<aod::BcSels> bcsel;
6060
Service<o2::ccdb::BasicCCDBManager> ccdb;
6161
HistogramRegistry histos{"Histos", {}, OutputObjHandlingPolicy::AnalysisObject};
62-
Configurable<int> confTriggerBcShift{"triggerBcShift", 999, "set to 294 for apass2/apass3 in LHC22o-t"}; // o2-linter: disable=name/configurable
62+
Configurable<int> confTriggerBcShift{"triggerBcShift", 0, "set either custom shift or 999 for apass2/apass3 in LHC22o-t"}; // o2-linter: disable=name/configurable
6363
Configurable<int> confITSROFrameStartBorderMargin{"ITSROFrameStartBorderMargin", -1, "Number of bcs at the start of ITS RO Frame border. Take from CCDB if -1"}; // o2-linter: disable=name/configurable
6464
Configurable<int> confITSROFrameEndBorderMargin{"ITSROFrameEndBorderMargin", -1, "Number of bcs at the end of ITS RO Frame border. Take from CCDB if -1"}; // o2-linter: disable=name/configurable
6565
Configurable<int> confTimeFrameStartBorderMargin{"TimeFrameStartBorderMargin", -1, "Number of bcs to cut at the start of the Time Frame. Take from CCDB if -1"}; // o2-linter: disable=name/configurable
@@ -264,7 +264,7 @@ struct BcSelectionTask {
264264

265265
int run = bcs.iteratorAt(0).runNumber();
266266

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

0 commit comments

Comments
 (0)