// ------------------------------------------------------------------------------ // ----- R3BLandPMT ----- // ----- Created 17-03-2014 by D. Kresan ----- // ------------------------------------------------------------------------------ #ifndef R3BLANDPMT_H #define R3BLANDPMT_H #include "TObject.h" class R3BLandPMT : public TObject { public: R3BLandPMT(); virtual ~R3BLandPMT(); const UShort_t& GetBarId() const { return fBarId; } const UShort_t& GetSide() const { return fSide; } const UShort_t& GetTac() const { return fTac; } const UShort_t& GetQdc() const { return fQdc; } private: UShort_t fBarId; UShort_t fSide; UShort_t fTac; UShort_t fQdc; public: ClassDef(R3BLandPMT, 1) }; #endif