Skip to content

Commit d72ccff

Browse files
committed
taskEmcExtensiveMcQa: Fix missing namespace prefix
1 parent 5cc7517 commit d72ccff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGJE/Tasks/taskEmcExtensiveMcQa.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ struct TaskEmcExtensiveMcQa {
8484
o2::emcal::Geometry* mGeometry = nullptr;
8585
o2::framework::Service<o2::ccdb::BasicCCDBManager> ccdb;
8686

87-
ctpRateFetcher rateFetcher;
87+
o2::ctpRateFetcher rateFetcher;
8888
HfEventSelection hfEvSel;
8989
HfEventSelectionMc hfEvSelMc;
9090

@@ -148,7 +148,7 @@ struct TaskEmcExtensiveMcQa {
148148
template <typename Coll>
149149
bool isCollSelected(const Coll& coll, float& cent)
150150
{
151-
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, o2::hf_centrality::CentralityEstimator::None, aod::BCsWithTimestamps>(coll, cent, ccdb, mHistManager);
151+
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, o2::hf_centrality::CentralityEstimator::None, o2::aod::BCsWithTimestamps>(coll, cent, ccdb, mHistManager);
152152
/// monitor the satisfied event selections
153153
hfEvSel.fillHistograms(coll, rejectionMask, cent);
154154
return rejectionMask == 0;

0 commit comments

Comments
 (0)