Skip to content

Commit c3fef67

Browse files
authored
[PWGDQ] Fix uint8_t configurables (AliceO2Group#8526)
1 parent 18eb20c commit c3fef67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PWGDQ/Tasks/dqCorrelation.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ struct DqCumulantFlow {
116116
ConfigurableAxis axisEta{"axisEta", {40, -6.0, 1.5}, "eta axis for histograms"};
117117
ConfigurableAxis axisPt{"axisPt", {100, 0, 20}, "pt axis for histograms"};
118118
ConfigurableAxis axisMass{"axisMass", {40, 2, 4}, "mass axis for histograms"};
119-
Configurable<uint8_t> fConfigNPow{"cfgNPow", 0, "Power of weights for Q vector"};
119+
Configurable<uint> fConfigNPow{"cfgNPow", 0, "Power of weights for Q vector"};
120120
// Configurables for the reference flow
121121
Configurable<string> fConfigTrackCuts{"cfgLeptonCuts", "jpsiO2MCdebugCuts2", "Comma separated list of barrel track cuts"};
122122
Configurable<float> fConfigCutPtMin{"cfgCutPtMin", 1.0f, "Minimal pT for tracks"};

PWGDQ/Tasks/dqFlow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ struct DQEventQvector {
117117
Configurable<int> fConfigCutTPCNClMin{"cfgCutTPCNclMin", 0, "Min requirement for number of TPC clusters"};
118118
Configurable<float> fConfigEtaLimitMin{"cfgEtaLimitMin", -0.4f, "Eta gap min separation, only if using subEvents"};
119119
Configurable<float> fConfigEtaLimitMax{"cfgEtaLimitMax", 0.4f, "Eta gap max separation, only if using subEvents"};
120-
// Configurable<uint8_t> fConfigNPow{"cfgNPow", 0, "Power of weights for Q vector"};
120+
// Configurable<uint> fConfigNPow{"cfgNPow", 0, "Power of weights for Q vector"};
121121
// Configurable<GFWBinningCuts> cfgGFWBinning{"cfgGFWBinning", {40, 16, 72, 300, 0, 3000, 0.2, 10.0, 0.2, 3.0, {0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85, 0.9, 0.95, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.5, 4, 5, 6, 8, 10}, {0, 5, 10, 20, 30, 40, 50, 60, 70, 80, 90}}, "Configuration for binning"};
122122

123123
// Access to the efficiencies and acceptances from CCDB

0 commit comments

Comments
 (0)