Skip to content

Commit 0273ba8

Browse files
committed
Revert const prefix
1 parent f64f34d commit 0273ba8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGHF/Utils/utilsAnalysis.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ bool isCandidateInMassRange(const float invMass,
173173

174174
/// Configurable group to apply trigger specific cuts for 2-prong HF analysis
175175
struct HfTrigger2ProngCuts : o2::framework::ConfigurableGroup {
176-
const std::string prefix = "hfTrigger2ProngCuts"; // JSON group name
176+
std::string prefix = "hfTrigger2ProngCuts"; // JSON group name
177177

178178
static constexpr float DefaultDeltaMassPars[1][2] = {{-0.0025f, 0.0001f}};
179179
static constexpr float DefaultSigmaPars[1][2] = {{0.01424f, 0.00178f}};
@@ -186,7 +186,7 @@ struct HfTrigger2ProngCuts : o2::framework::ConfigurableGroup {
186186

187187
/// Configurable group to apply trigger specific cuts for 3-prong HF analysis
188188
struct HfTrigger3ProngCuts : o2::framework::ConfigurableGroup {
189-
const std::string prefix = "hfTrigger3ProngCuts"; // JSON group name
189+
std::string prefix = "hfTrigger3ProngCuts"; // JSON group name
190190

191191
static constexpr float DefaultDeltaMassPars[1][2] = {{-0.0025f, 0.0001f}};
192192
static constexpr float DefaultSigmaPars[1][2] = {{0.00796f, 0.00176f}};

PWGHF/Utils/utilsEvSelHf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void setEventRejectionLabels(Histo& hRejection, std::string const& softwareTrigg
148148
}
149149

150150
struct HfEventSelection : o2::framework::ConfigurableGroup {
151-
const std::string prefix = "hfEvSel"; // JSON group name
151+
std::string prefix = "hfEvSel"; // JSON group name
152152
// event selection parameters (in chronological order of application)
153153
o2::framework::Configurable<float> centralityMin{"centralityMin", 0.f, "Minimum centrality"};
154154
o2::framework::Configurable<float> centralityMax{"centralityMax", 100.f, "Maximum centrality"};

0 commit comments

Comments
 (0)