Skip to content

Commit 09512ff

Browse files
committed
Do not pass constant values in Configurable initialization
1 parent 1333dc0 commit 09512ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGDQ/Tasks/global-muon-matcher.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ struct GlobalMuonMatching {
167167
Configurable<std::string> cfgGeoNewPath{"cfgGeoNewPath", "GLO/Config/GeometryAligned", "Path of the new geometry file"};
168168
Configurable<int64_t> cfgCcdbNoLaterThanRef{"cfgCcdbNoLaterThanRef", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(), "latest acceptable timestamp of creation for the object of reference basis"};
169169
Configurable<int64_t> cfgCcdbNoLaterThanNew{"cfgCcdbNoLaterThanNew", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count(), "latest acceptable timestamp of creation for the object of new basis"};
170-
Configurable<double> cfgChamberResolutionX{"cfgChamberResolutionX", DefaultChamberResolution, "Chamber resolution along X configuration for refit"}; // 0.4cm pp, 0.2cm PbPb
171-
Configurable<double> cfgChamberResolutionY{"cfgChamberResolutionY", DefaultChamberResolution, "Chamber resolution along Y configuration for refit"}; // 0.4cm pp, 0.2cm PbPb
170+
Configurable<double> cfgChamberResolutionX{"cfgChamberResolutionX", 0.04, "Chamber resolution along X configuration for refit"}; // 0.4cm pp, 0.2cm PbPb
171+
Configurable<double> cfgChamberResolutionY{"cfgChamberResolutionY", 0.04, "Chamber resolution along Y configuration for refit"}; // 0.4cm pp, 0.2cm PbPb
172172
Configurable<double> cfgSigmaCutImprove{"cfgSigmaCutImprove", 6., "Sigma cut for track improvement"}; // 6 for pp, 4 for PbPb
173173
} configMchRealign;
174174

0 commit comments

Comments
 (0)