We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 650bc5d commit 8548e53Copy full SHA for 8548e53
1 file changed
Modules/GLO/src/ITSTPCMatchingTask.cxx
@@ -62,7 +62,7 @@ void ITSTPCMatchingTask::initialize(o2::framework::InitContext& /*ctx*/)
62
}
63
if (auto param = mCustomParameters.find("maxChi2PerClusterITS"); param != mCustomParameters.end()) {
64
ILOG(Debug, Devel) << "Custom parameter - maxChi2PerClusterITS (for track selection): " << param->second << ENDM;
65
- mMatchITSTPCQC.setMaxChi2PerClusterITS(atoi(param->second.c_str()));
+ mMatchITSTPCQC.setMaxChi2PerClusterITS(atof(param->second.c_str()));
66
67
// TO DO: define an agreed way to implement the setter for ITS matching (min. # layers, which layers)
68
// [...] --> exploit the method TrackCuts::setRequireHitsInITSLayers(...)
0 commit comments