Skip to content

Commit

Permalink
Add tracks time to trackStudy output
Browse files Browse the repository at this point in the history
  • Loading branch information
shahor02 committed Oct 6, 2023
1 parent 0ae9597 commit a5021ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Detectors/GlobalTrackingWorkflow/study/src/TrackingStudy.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,10 @@ void TrackingStudySpec::process(o2::globaltracking::RecoContainer& recoData)
if (!prop->propagateToDCA(pv, trc, prop->getNominalBz(), 2., o2::base::PropagatorF::MatCorrType::USEMatCorrLUT, &dca)) {
continue;
}
float ttime = 0, ttimeE = 0;
recoData.getTrackTime(vid, ttime, ttimeE);
(*mDBGOut) << "dca"
<< "tfID=" << TFCount << "ttime=" << ttime << "ttimeE=" << ttimeE
<< "gid=" << vid << "pv=" << pv << "trc=" << trc << "pvCont=" << pvCont << "ambig=" << ambig << "dca=" << dca << "xmin=" << xmin << "\n";
}
}
Expand Down

0 comments on commit a5021ed

Please sign in to comment.