Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGJE/Tasks/taskEmcExtensiveMcQa.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct TaskEmcExtensiveMcQa {
o2::emcal::Geometry* mGeometry = nullptr;
o2::framework::Service<o2::ccdb::BasicCCDBManager> ccdb;

ctpRateFetcher rateFetcher;
o2::ctpRateFetcher rateFetcher;
HfEventSelection hfEvSel;
HfEventSelectionMc hfEvSelMc;

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