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
LOGF(DEBUG, "Loaded TPC track %i with time %f", nTracksLoadedTPC, trkAttribs.mTime);
325
+
LOGF(DEBUG, "Loaded TPC track %i with time %f. Window from %f to %f", nTracksLoadedTPC, trkAttribs.mTime, trkAttribs.mTime - trkAttribs.mTimeSubMax, trkAttribs.mTime + trkAttribs.mTimeAddMax);
323
326
}
324
327
LOGF(INFO, "%i tracks are loaded into the TRD tracker. Out of those %i ITS-TPC tracks and %i TPC tracks", nTracksLoadedITSTPC + nTracksLoadedTPC, nTracksLoadedITSTPC, nTracksLoadedTPC);
LOG(ERROR) << "Matching to TPC-only tracks requested, but IR without ITS contribution are filtered out. This does not lead to a crash, but it deteriorates the matching efficiency.";
665
+
LOG(INFO) << "Matching to TPC-only tracks requested, but IRs without ITS contribution are filtered out (used strict matching mode to constrain TPC tracks before matching to ITS)";
roadY = 7.f * CAMath::Sqrt(trkWork->getSigmaY2() + 0.1f * 0.1f) + mExtraRoadY; // add constant to the road to account for uncertainty due to radial deviations (few mm)
653
+
roadY = 7.f * CAMath::Sqrt(trkWork->getSigmaY2() + 0.1f * 0.1f) + Param().rec.trd.extraRoadY; // add constant to the road to account for uncertainty due to radial deviations (few mm)
654
654
// roadZ = 7.f * CAMath::Sqrt(trkWork->getSigmaZ2() + 9.f * 9.f / 12.f); // take longest pad length
655
-
roadZ = mRoadZ; // simply twice the longest pad length -> efficiency 99.996%
655
+
roadZ = mRoadZ + Param().rec.trd.extraRoadZ; // simply twice the longest pad length -> efficiency 99.996%
656
656
//
657
657
if (CAMath::Abs(trkWork->getZ() + zShiftTrk) - roadZ >= zMaxTRD) {
@@ -198,8 +196,7 @@ class GPUTRDTracker_t : public GPUProcessor
198
196
/// ---- end error parametrization ----
199
197
boolmDebugOutput; // store debug output
200
198
staticCONSTEXPRfloatsRadialOffsetGPUCA_CPP11_INIT(= -0.1f); // due to (possible) mis-calibration of t0 -> will become obsolete when tracklet conversion is done outside of the tracker
201
-
floatmMaxEta; // TPC tracks with higher eta are ignored
202
-
floatmExtraRoadY; // addition to search road in r-phi to account for not exact radial match of tracklets and tracks in first iteration
199
+
floatmMaxEta; // TPC tracks with higher eta are ignored
203
200
floatmRoadZ; // in z, a constant search road is used
204
201
floatmZCorrCoefNRC; // tracklet z-position depends linearly on track dip angle
205
202
floatmTPCVdrift; // TPC drift velocity used for shifting TPC tracks along Z
0 commit comments