// -*- mode: c++ -*- // // $Id: BrTileCent.h,v 1.2 2001/06/25 14:26:30 cholm Exp $ // #ifndef BRAT_BrTileCent #define BRAT_BrTileCent #ifndef BRAT_BrDataObject #include "BrDataObject.h" #endif class BrTileCent : public BrDataObject { private: Float_t fLowCut; Float_t fHighCut; public: BrTileCent(); BrTileCent(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(BrTileCent,1) // Centrality data for a given event }; #endif // // $Log: BrTileCent.h,v $ // Revision 1.2 2001/06/25 14:26:30 cholm // Made Print conform to TObject // // Revision 1.1.1.1 2001/06/21 14:54:59 hagel // Initial revision of brat2 // // Revision 1.2 2001/02/08 15:10:47 cholm // BUmped class version of BrTileCent to 1 for persistency. // Added some static calibration varaibles to BrTileCentModule. // Minor bug fix to BrTileRdoModule. // // Revision 1.1 2001/01/29 20:51:30 cholm // Added a data class for storing the centrality of an event in a BrEventNode, // plus a module to find the values, and a module to do the releveant // calibrations. None of them have been tested yet. // //