Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ struct TrackInfoExt {
float ttime = 0;
float ttimeE = 0;
float xmin = 0;
float chi2TPC = 0.f;
float chi2ITSTPC = 0.f;
float q2ptITS = 0.f;
float q2ptTPC = 0.f;
Expand All @@ -56,7 +57,7 @@ struct TrackInfoExt {
float getTPCInY0() const { return innerTPCPos0[1]; }
float getTPCInZ0() const { return innerTPCPos0[2]; }

ClassDefNV(TrackInfoExt, 5);
ClassDefNV(TrackInfoExt, 6);
};

} // namespace dataformats
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ void TrackingStudySpec::process(o2::globaltracking::RecoContainer& recoData)
}
}
fillTPCClInfo(*tpcTr, trcExt, tsuse);
trcExt.chi2TPC = tpcTr->getChi2();
}
auto gidRefs = recoData.getSingleDetectorRefs(vid);
if (gidRefs[GTrackID::ITS].isIndexSet()) {
Expand Down