Skip to content

Commit a5021ed

Browse files
committed
Add tracks time to trackStudy output
1 parent 0ae9597 commit a5021ed

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Detectors/GlobalTrackingWorkflow/study/src/TrackingStudy.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,10 @@ void TrackingStudySpec::process(o2::globaltracking::RecoContainer& recoData)
175175
if (!prop->propagateToDCA(pv, trc, prop->getNominalBz(), 2., o2::base::PropagatorF::MatCorrType::USEMatCorrLUT, &dca)) {
176176
continue;
177177
}
178+
float ttime = 0, ttimeE = 0;
179+
recoData.getTrackTime(vid, ttime, ttimeE);
178180
(*mDBGOut) << "dca"
181+
<< "tfID=" << TFCount << "ttime=" << ttime << "ttimeE=" << ttimeE
179182
<< "gid=" << vid << "pv=" << pv << "trc=" << trc << "pvCont=" << pvCont << "ambig=" << ambig << "dca=" << dca << "xmin=" << xmin << "\n";
180183
}
181184
}

0 commit comments

Comments
 (0)