// -*- mode: c++ -*- // // $Id: BrTMrsFTrackMatch.h,v 1.1 2002/04/23 15:34:11 videbaek Exp $ // $Author: videbaek $ // $Date: 2002/04/23 15:34:11 $ // $Copyright: (C) 2001 BRAHMS Collaboration // #ifndef BRAT_BrTMrsFTrackMatch #define BRAT_BrTMrsFTrackMatch #ifndef ROOT_TObject #include "TObject.h" #endif class BrTMrsFTrackMatch : public TObject { private: Int_t fTrackId; Float_t fT0; Float_t fLength; public: BrTMrsFTrackMatch(); virtual ~BrTMrsFTrackMatch() {}; void SetMatching(Int_t trk, Float_t time, Float_t length); Int_t GetTrackId() const {return fTrackId;} Float_t GetTime() const {return fT0;} Float_t GetLength() const {return fLength;} void Print(Option_t* option = "") const; ClassDef(BrTMrsFTrackMatch,1) // track - tof hit matching Ids }; #endif //_______________________________________________________________ // // $Log: BrTMrsFTrackMatch.h,v $ // Revision 1.1 2002/04/23 15:34:11 videbaek // Add TMrsFTrackMatching object. Used for pp running only. // // TMrsF trigger counter matching object added // //