You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::string prefix = "fitterConfigurations"; // JSON group name
293
+
Configurable<bool> propagateToPCA{"propagateToPCA", true, "Propagate to PCA?"};
294
+
Configurable<float> minParamChange{"minParamChange", 4., "Stop minimization iterations if largest change of any X is smaller than this."};
295
+
Configurable<float> minRelChi2Change{"minRelChi2Change", 0.9, "Stop iterations is chi2/chi2old > this"};
296
+
Configurable<bool> useAbsDCA{"useAbsDCA", true, "Use abs. distance minimization rather than chi2"};
297
+
Configurable<bool> useLUTMatCorr{"useLUTMatCorr", true, "Use material LUT correction, instead of TGeo material correction or no material correction."};
298
+
Configurable<bool> useTGeoMatCorr{"useTGeoMatCorr", false, "Use material TGeo correction, instead of LUT material correction or no material correction."};
299
+
} fitterConfigurations;
300
+
290
301
o2::base::MatLayerCylSet* lut; // material LUT for DCA fitter
0 commit comments