@@ -233,8 +233,8 @@ class BcSelectionModule
233233 }
234234
235235 // __________________________________________________
236- template <typename TCCDB, typename TBCs, typename TBcSelCursor>
237- std::vector<o2::common::eventselection::bcselEntry> processRun2 (TCCDB const & ccdb, TBCs const & bcs, TBcSelCursor& bcsel)
236+ template <typename TCCDB, typename TBCs, typename TBcSelBuffer, typename TBcSelCursor>
237+ std::vector<o2::common::eventselection::bcselEntry> processRun2 (TCCDB const & ccdb, TBCs const & bcs, TBcSelBuffer const & bcselbuffer, TBcSelCursor& bcsel)
238238 {
239239 std::vector<o2::common::eventselection::bcselEntry> bcselEntries;
240240 for (const auto & bc : bcs) {
@@ -367,8 +367,8 @@ class BcSelectionModule
367367 } // end processRun2
368368
369369 // __________________________________________________
370- template <typename TCCDB, typename THistoRegistry, typename TBCs, typename TBcSelCursor>
371- std::vector<o2::common::eventselection::bcselEntry> processRun3 (TCCDB const & ccdb, THistoRegistry& histos, TBCs const & bcs, TBcSelCursor& bcsel)
370+ template <typename TCCDB, typename THistoRegistry, typename TBCs, typename TBcSelBuffer, typename TBcSelCursor>
371+ std::vector<o2::common::eventselection::bcselEntry> processRun3 (TCCDB const & ccdb, THistoRegistry& histos, TBCs const & bcs, TBcSelBuffer const & bcselbuffer, TBcSelCursor& bcsel)
372372 {
373373 std::vector<o2::common::eventselection::bcselEntry> bcselEntries;
374374 if (!configure (ccdb, bcs))
@@ -741,9 +741,9 @@ class EventSelectionModule
741741
742742 // fill counters
743743 if (evselOpts.isMC == 1 || (!isINT1period && bitcheck (alias, kINT7 )) || (isINT1period && bitcheck (alias, kINT1 ))) {
744- histos.template get <TH1>(HIST (" hColCounterAll" ))->Fill (Form (" %d" , bc.runNumber ()), 1 );
744+ histos.template get <TH1>(HIST (" eventselection/ hColCounterAll" ))->Fill (Form (" %d" , bc.runNumber ()), 1 );
745745 if ((!isINT1period && sel7) || (isINT1period && sel1)) {
746- histos.template get <TH1>(HIST (" hColCounterAcc" ))->Fill (Form (" %d" , bc.runNumber ()), 1 );
746+ histos.template get <TH1>(HIST (" eventselection/ hColCounterAcc" ))->Fill (Form (" %d" , bc.runNumber ()), 1 );
747747 }
748748 }
749749
0 commit comments