Skip to content

Commit 7f17e5e

Browse files
Update utilsEvSelHf.h
1 parent e0c1abe commit 7f17e5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/Utils/utilsEvSelHf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
261261
/// \param ccdb ccdb service needed to retrieve the needed info for zorro
262262
/// \param registry reference to the histogram registry needed for zorro
263263
/// \return bitmask with the event selection criteria not satisfied by the collision
264-
template <bool useEvSel, o2::hf_centrality::CentralityEstimator centEstimator, typename BCs, typename Coll>
264+
template <bool useEvSel, o2::hf_centrality::CentralityEstimator centEstimator, typename BCsType, typename Coll>
265265
uint32_t getHfCollisionRejectionMask(const Coll& collision, float& centrality, o2::framework::Service<o2::ccdb::BasicCCDBManager> const& ccdb, o2::framework::HistogramRegistry& registry)
266266
{
267267
uint32_t rejectionMask{0}; // 32 bits, in case new ev. selections will be added
@@ -340,7 +340,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
340340

341341
if (softwareTrigger.value != "") {
342342
// we might have to update it from CCDB
343-
auto bc = collision.template bc_as<BCs>();
343+
auto bc = collision.template bc_as<BCsType>();
344344

345345
int runNumber = bc.runNumber();
346346
if (runNumber != currentRun) { // We might need to update Zorro from CCDB if the run number changes

0 commit comments

Comments
 (0)