@@ -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; }
@@ -59,6 +59,8 @@ class MatchInfoTOF
5959 float getDZatTOF () const { return mDZatTOF ; }
6060 void setDXatTOF (float val) { mDXatTOF = val; }
6161 float getDXatTOF () const { return mDXatTOF ; }
62+ void setDYatTOF (float val) { mDYatTOF = val; }
63+ float getDYatTOF () const { return mDYatTOF ; }
6264 void setSignal (double time) { mSignal = time; }
6365 double getSignal () const { return mSignal ; }
6466
@@ -78,6 +80,7 @@ class MatchInfoTOF
7880 float mZatTOF = 0.0 ; // /< Z position at TOF
7981 float mDXatTOF = 0.0 ; // /< DX position at TOF
8082 float mDZatTOF = 0.0 ; // /< DZ position at TOF
83+ float mDYatTOF = 0.0 ; // /< DY position at TOF
8184 float mDeltaT = 0.0 ; // /< tTOF - TPC (microsec)
8285 double mSignal = 0.0 ; // /< TOF time in ps
8386 float mVz = 0.0 ; // /< Vz from TOF match
0 commit comments