File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,9 +161,9 @@ void VertexTrackMatcher::extractTracks(const o2::globaltracking::RecoContainer&
161161 // unconstrained TPC track, with t0 = TrackTPC.getTime0+0.5*(DeltaFwd-DeltaBwd) and terr = 0.5*(DeltaFwd+DeltaBwd) in TimeBins
162162 t0 *= this ->mTPCBin2MUS ;
163163 terr *= this ->mTPCBin2MUS ;
164- } else if (isITSTrack<decltype (_tr)>()) { // error is supplied a half-ROF duration, convert to \mus
165- t0 += this ->mITSROFrameLengthMUS ; // ITS time is supplied in \mus as beginning of ROF
166- terr *= 0.5 * this ->mITSROFrameLengthMUS ; // error is supplied as a half-ROF duration, convert to \mus
164+ } else if (isITSTrack<decltype (_tr)>()) {
165+ t0 += 0.5 * this ->mITSROFrameLengthMUS ; // ITS time is supplied in \mus as beginning of ROF
166+ terr *= this ->mITSROFrameLengthMUS ; // error is supplied as a half-ROF duration, convert to \mus
167167 }
168168 // for all other tracks the time is in \mus with gaussian error
169169 mTBrackets .emplace_back (TrackTBracket{{t0 - terr, t0 + terr}, _origID});
You can’t perform that action at this time.
0 commit comments