diff --git a/Common/TableProducer/eventSelectionService.cxx b/Common/TableProducer/eventSelectionService.cxx index cc7773d1ff2..b5d15e5cce9 100644 --- a/Common/TableProducer/eventSelectionService.cxx +++ b/Common/TableProducer/eventSelectionService.cxx @@ -61,7 +61,7 @@ struct eventselectionRun2 { o2::common::eventselection::evselConfigurables evselOpts; o2::common::eventselection::EventSelectionModule evselmodule; - Produces timestampTable; /// Table with SOR timestamps produced by the task + Produces timestampTable; /// Table with SOR timestamps produced by the task Produces bcsel; Produces evsel; @@ -123,7 +123,7 @@ struct eventselectionRun3 { o2::common::eventselection::lumiConfigurables lumiOpts; o2::common::eventselection::LumiModule lumimodule; - Produces timestampTable; /// Table with SOR timestamps produced by the task + Produces timestampTable; /// Table with SOR timestamps produced by the task Produces bcsel; Produces evsel; diff --git a/Common/Tools/EventSelectionTools.h b/Common/Tools/EventSelectionTools.h index 5c84a0a00d4..285d30d1502 100644 --- a/Common/Tools/EventSelectionTools.h +++ b/Common/Tools/EventSelectionTools.h @@ -725,7 +725,7 @@ class EventSelectionModule //__________________________________________________ template - void processRun2(TCCDB const& ccdb, THistoRegistry& histos, TCollisions const& collisions, TTracklets const& tracklets, TSlicecache& cache, TTimestamps const& timestamps, TBcSelBuffer const& bcselbuffer, TEvselCursor& evsel) + void processRun2(TCCDB const& ccdb, THistoRegistry& histos, TCollisions const& collisions, TTracklets const& tracklets, TSlicecache& cache, TTimestamps const& timestamps, TBcSelBuffer const& bcselbuffer, TEvselCursor& evsel) { if (evselOpts.amIneeded.value == 0) { return; // dummy process @@ -1386,7 +1386,7 @@ class LumiModule return false; if (run != lastRun && run >= 520259) { // o2-linter: disable=magic-number (scalers available for runs above 520120) lastRun = run; - int64_t ts = timestamps[0]; + int64_t ts = timestamps[0]; // getting GRP LHCIF object to extract colliding system, energy and colliding bc pattern auto grplhcif = ccdb->template getForTimeStamp("GLO/Config/GRPLHCIF", ts);