Skip to content

Commit d02c559

Browse files
committed
[PWGEM] PhotonMeson: Fix bool configs using int as default value instead of boolean vlaue
1 parent c764bec commit d02c559

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ struct TaskPi0FlowEMC {
240240
struct : ConfigurableGroup {
241241
std::string prefix = "correctionConfig";
242242
Configurable<std::string> cfgSpresoPath{"cfgSpresoPath", "Users/m/mhemmer/EM/Flow/Resolution", "Path to SP resolution file"};
243-
Configurable<bool> cfgApplySPresolution{"cfgApplySPresolution", 0, "Apply resolution correction"};
244-
Configurable<bool> doEMCalCalib{"doEMCalCalib", 0, "Produce output for EMCal calibration"};
243+
Configurable<bool> cfgApplySPresolution{"cfgApplySPresolution", false, "Apply resolution correction"};
244+
Configurable<bool> doEMCalCalib{"doEMCalCalib", false, "Produce output for EMCal calibration"};
245245
Configurable<bool> cfgEnableNonLin{"cfgEnableNonLin", false, "flag to turn extra non linear energy calibration on/off"};
246246
} correctionConfig;
247247

0 commit comments

Comments
 (0)