// -*- mode: c++ -*- #ifndef BRAT_BrTrigStart #define BRAT_BrTrigStart // $Id: BrTrigStart.h,v 1.1 2001/09/18 13:48:29 operator Exp $ // // Root Classes #ifndef BRAT_BrDataObject #include "BrDataObject.h" #endif class BrTrigStart: public BrDataObject { public: BrTrigStart(){ }; BrTrigStart(const Char_t* Name, const Char_t* Title) : BrDataObject(Name, Title) {}; virtual ~BrTrigStart() { }; virtual Int_t GetTdc(const Int_t i) const; virtual void SetTdc(const Int_t iscaler,const Int_t value); virtual void Print(Option_t* option="R") const; enum EStartInfo { kChan = 16 }; private: Int_t fTdc[kChan]; // Array of tdcstart public: ClassDef(BrTrigStart,1) // BRAHMS trigger scaler class }; #endif // // $Log: BrTrigStart.h,v $ // Revision 1.1 2001/09/18 13:48:29 operator // dding a new raw dataclass, namely BrTrigStart. //