We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb4de20 commit 416b75cCopy full SHA for 416b75c
1 file changed
Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx
@@ -38,6 +38,9 @@ void ITSTrackingInterface::initialise()
38
std::vector<TrackingParameters> trackParams;
39
const auto& trackConf = o2::its::TrackerParamConfig::Instance();
40
float bFactor = std::abs(o2::base::Propagator::Instance()->getNominalBz()) / 5.0066791;
41
+ if (bFactor < 0.01) {
42
+ bFactor = 1.;
43
+ }
44
if (mMode == TrackingMode::Unset) {
45
mMode = (TrackingMode)(trackConf.trackingMode);
46
LOGP(info, "Tracking mode not set, trying to fetch it from configurable params to: {}", asString(mMode));
0 commit comments