// -*- mode: c++ -*- // // $Id: BrTd1TrackMatch.h,v 1.1 2002/02/08 21:33:40 videbaek Exp $ // $Author: videbaek $ // $Date: 2002/02/08 21:33:40 $ // $Copyright: (C) 2001 BRAHMS Collaboration // #ifndef BRAT_BrTd1TrackMatch #define BRAT_BrTd1TrackMatch #ifndef ROOT_TObject #include "TObject.h" #endif class BrTd1TrackMatch : public TObject { private: Int_t fTrackId; Int_t fSlat; Float_t fT0; Float_t fLength; public: BrTd1TrackMatch(); virtual ~BrTd1TrackMatch() {}; void SetMatching(Int_t trk, Int_t slat, Float_t time, Float_t length); Int_t GetTrackId() const {return fTrackId;} Int_t GetSlat() const {return fSlat;} Float_t GetTime() const {return fT0;} Float_t GetLength() const {return fLength;} void Print(Option_t* option = "") const; ClassDef(BrTd1TrackMatch,1) // track - tof hit matching Ids }; #endif //_______________________________________________________________ // // $Log: BrTd1TrackMatch.h,v $ // Revision 1.1 2002/02/08 21:33:40 videbaek // Td1 trigger counter matching object added // //