// -*- mode: c++ -*- // // $Id: BrMultCent.h,v 1.2 2001/06/25 14:24:27 cholm Exp $ // #ifndef BRAT_BrMultCent #define BRAT_BrMultCent #ifndef BRAT_BrDataObject #include "BrDataObject.h" #endif class BrMultCent : public BrDataObject { private: Double_t fCent; // Centrality Double_t fMult; // Multiplicity public: BrMultCent(); BrMultCent(const Char_t* name, const Char_t* title); void Print(Option_t* option="") const; //*MENU* void SetMult(Double_t x) {fMult = x;}; Double_t GetMult() {return fMult;}; void SetCent(Double_t x) {fCent = x;}; Double_t GetCent() {return fCent;}; ClassDef(BrMultCent,1) // Centrality data for a given event }; #endif // // $Log: BrMultCent.h,v $ // Revision 1.2 2001/06/25 14:24:27 cholm // packages/ // // Revision 1.1.1.1 2001/06/21 14:55:00 hagel // Initial revision of brat2 // // Revision 1.1 2001/04/19 15:07:12 cholm // Renamed BrCent... to BrMultCent... to reduce confusion // //