File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Detectors/GlobalTrackingWorkflow/study
include/GlobalTrackingStudy Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ struct TrackInfoExt {
3535 float ttime = 0 ;
3636 float ttimeE = 0 ;
3737 float xmin = 0 ;
38+ float chi2TPC = 0 .f;
3839 float chi2ITSTPC = 0 .f;
3940 float q2ptITS = 0 .f;
4041 float q2ptTPC = 0 .f;
@@ -56,7 +57,7 @@ struct TrackInfoExt {
5657 float getTPCInY0 () const { return innerTPCPos0[1 ]; }
5758 float getTPCInZ0 () const { return innerTPCPos0[2 ]; }
5859
59- ClassDefNV (TrackInfoExt, 5 );
60+ ClassDefNV (TrackInfoExt, 6 );
6061};
6162
6263} // namespace dataformats
Original file line number Diff line number Diff line change @@ -503,6 +503,7 @@ void TrackingStudySpec::process(o2::globaltracking::RecoContainer& recoData)
503503 }
504504 }
505505 fillTPCClInfo (*tpcTr, trcExt, tsuse);
506+ trcExt.chi2TPC = tpcTr->getChi2 ();
506507 }
507508 auto gidRefs = recoData.getSingleDetectorRefs (vid);
508509 if (gidRefs[GTrackID::ITS].isIndexSet ()) {
You can’t perform that action at this time.
0 commit comments