File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Detectors/GlobalTrackingWorkflow/study
include/GlobalTrackingStudy Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ struct TrackInfoExt {
5353 uint8_t padFromEdge = -1 ;
5454 uint8_t rowMaxTPC = 0 ;
5555 uint8_t rowCountTPC = 0 ;
56-
56+ size_t hashIU = 0 ;
5757 void setTPCA () { setBit (int (TPCA)); }
5858 void setTPCC () { setBit (int (TPCC)); }
5959 void setTPCAC () { setBit (int (TPCC)); }
@@ -74,7 +74,7 @@ struct TrackInfoExt {
7474 void resetBit (int bit) { flags &= ~(kBitMask & (0x1 << bit)); }
7575 bool isBitSet (int bit) const { return flags & (kBitMask & (0x1 << bit)); }
7676
77- ClassDefNV (TrackInfoExt, 7 );
77+ ClassDefNV (TrackInfoExt, 8 );
7878};
7979
8080} // namespace dataformats
Original file line number Diff line number Diff line change @@ -479,6 +479,7 @@ void TrackingStudySpec::process(o2::globaltracking::RecoContainer& recoData)
479479 auto & trcExt = trcExtVec.emplace_back ();
480480 recoData.getTrackTime (vid, trcExt.ttime , trcExt.ttimeE );
481481 trcExt.track = trc;
482+ trcExt.hashIU = trc.hash ();
482483 trcExt.dca = dca;
483484 trcExt.gid = vid;
484485 trcExt.xmin = xmin;
You can’t perform that action at this time.
0 commit comments