// -*- mode: c++ -*- // // $Id: BrTofTrackMatch.h,v 1.2 2001/11/07 10:29:54 ouerdane Exp $ // $Author: ouerdane $ // $Date: 2001/11/07 10:29:54 $ // $Copyright: (C) 2001 BRAHMS Collaboration // #ifndef BRAT_BrTofTrackMatch #define BRAT_BrTofTrackMatch #ifndef ROOT_TObject #include "TObject.h" #endif class BrTofTrackMatch : public TObject { public: BrTofTrackMatch(); ~BrTofTrackMatch() {}; void SetMatching(Int_t trk, Int_t hit1, Int_t id2 = 0, Int_t hit2 = 0); Int_t GetTrackId() const; // MRS, FFS or BFS Track id Int_t GetTrack2Id() const; // FFS Track id for BFS Int_t GetPanelId() const; // Tof Panel id for MRS Int_t GetHitId() const; // Tof hit Int_t GetHit2Id() const; // H1 hit for BFS void Print(Option_t* option = "") const; ClassDef(BrTofTrackMatch,1) // track - tof hit matching Ids }; #endif //_______________________________________________________________ // // $Log: BrTofTrackMatch.h,v $ // Revision 1.2 2001/11/07 10:29:54 ouerdane // added method to get FFS track id for BFS-Tof match // // Revision 1.1 2001/10/02 01:48:43 ouerdane // Added new class holding the combination Tof hit-track // //