// -*- mode: c++ -*- // // $Id: BrSiCent.h,v 1.2 2001/06/25 14:26:23 cholm Exp $ // #ifndef BRAT_BrSiCent #define BRAT_BrSiCent #ifndef BRAT_BrDataObject #include #endif class BrSiCent : public BrDataObject { private: Float_t fLowCut; Float_t fHighCut; public: BrSiCent(); BrSiCent(const Char_t* name, const Char_t* title); virtual Float_t GetLowCut() const { return fLowCut; } virtual Float_t GetHighCut() const { return fHighCut; } virtual void SetLowCut(Float_t low) { fLowCut = low; } virtual void SetHighCut(Float_t high) { fHighCut = high; } virtual void Print(Option_t* option="") const; //*MENU* ClassDef(BrSiCent,1) // Centrality data for a given event }; #endif // // $Log: BrSiCent.h,v $ // Revision 1.2 2001/06/25 14:26:23 cholm // Made Print conform to TObject // // Revision 1.1.1.1 2001/06/21 14:54:59 hagel // Initial revision of brat2 // // Revision 1.1 2001/04/19 15:11:18 cholm // Added centrality classes for SMA // //