@@ -28,7 +28,7 @@ class MatchInfoTOF
2828 using GTrackID = o2::dataformats::GlobalTrackID;
2929
3030 public:
31- MatchInfoTOF (int idLocal, int idxTOFCl, double time, float chi2, o2::track::TrackLTIntegral trkIntLT, GTrackID idxTrack, float dt = 0 , float z = 0 , float dx = 0 , float dz = 0 ) : mIdLocal (idLocal), mIdxTOFCl (idxTOFCl), mSignal (time), mChi2 (chi2), mIntLT (trkIntLT), mIdxTrack (idxTrack), mDeltaT (dt), mZatTOF (z), mDXatTOF (dx), mDZatTOF (dz){};
31+ MatchInfoTOF (int idLocal, int idxTOFCl, double time, float chi2, o2::track::TrackLTIntegral trkIntLT, GTrackID idxTrack, float dt = 0 , float z = 0 , float dx = 0 , float dz = 0 , float dy = 0 ) : mIdLocal (idLocal), mIdxTOFCl (idxTOFCl), mSignal (time), mChi2 (chi2), mIntLT (trkIntLT), mIdxTrack (idxTrack), mDeltaT (dt), mZatTOF (z), mDXatTOF (dx), mDZatTOF (dz), mDYatTOF (dy ){};
3232 MatchInfoTOF () = default ;
3333 void setIdxTOFCl (int index) { mIdxTOFCl = index; }
3434 void setIdxTrack (GTrackID index) { mIdxTrack = index; }
@@ -53,6 +53,8 @@ class MatchInfoTOF
5353 float getDZatTOF () const { return mDZatTOF ; }
5454 void setDXatTOF (float val) { mDXatTOF = val; }
5555 float getDXatTOF () const { return mDXatTOF ; }
56+ void setDYatTOF (float val) { mDYatTOF = val; }
57+ float getDYatTOF () const { return mDYatTOF ; }
5658 void setSignal (double time) { mSignal = time; }
5759 double getSignal () const { return mSignal ; }
5860
@@ -72,6 +74,7 @@ class MatchInfoTOF
7274 float mZatTOF = 0.0 ; // /< Z position at TOF
7375 float mDXatTOF = 0.0 ; // /< DX position at TOF
7476 float mDZatTOF = 0.0 ; // /< DZ position at TOF
77+ float mDYatTOF = 0.0 ; // /< DY position at TOF
7578 float mDeltaT = 0.0 ; // /< tTOF - TPC (microsec)
7679 double mSignal = 0.0 ; // /< TOF time in ps
7780 float mVz = 0.0 ; // /< Vz from TOF match
0 commit comments