Skip to content
Closed
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions PWGHF/Tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.

o2physics_add_dpl_workflow(correlate-estimator-dn-deta
SOURCES correlateEstimatorDnDeta.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
COMPONENT_NAME Analysis)

o2physics_add_dpl_workflow(task-charm-had-impact-par
SOURCES taskCharmHadImpactPar.cxx
PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
Expand Down Expand Up @@ -43,8 +48,3 @@ o2physics_add_dpl_workflow(task-mc-validation
# SOURCES taskSelOptimisation.cxx
# PUBLIC_LINK_LIBRARIES O2Physics::AnalysisCore
# COMPONENT_NAME Analysis)

o2physics_add_dpl_workflow(correlate-estimator-dn-deta
SOURCES correlateEstimatorDnDeta.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2Physics::AnalysisCore
COMPONENT_NAME Analysis)
4 changes: 2 additions & 2 deletions PWGHF/Tasks/correlateEstimatorDnDeta.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ using namespace o2::framework::expressions;

struct CorrelateEstimatorDnDeta {
HistogramRegistry registry{"registry", {}};
static constexpr int8_t nEstimators = 8;
static constexpr std::array<std::string_view, nEstimators> estimatorsNames = {"FV0A", "FT0A", "FT0C", "FT0M", "FDDA", "FDDC", "FDDM", "NTPV"};
static constexpr int8_t nEstimators = 8;
static constexpr std::array<std::string_view, nEstimators> estimatorsNames = {"FV0A", "FT0A", "FT0C", "FT0M", "FDDA", "FDDC", "FDDM", "NTPV"};

std::vector<unsigned> consideredParticles = {
kElectron,
Expand Down
Loading