00001 #ifndef TMBCpsDigi_H 00002 #define TMBCpsDigi_H 00003 00005 // // 00006 // TMBTree class for central preshower digi chunk 00007 // 00008 // Created: 6-January-2005 Alan Magerkurth 00009 // // 00011 00012 #ifndef ROOT_TObject 00013 #include "TObject.h" 00014 #endif 00015 00017 class TMBCpsDigi : public TObject 00018 { 00019 private: 00020 Int_t _layer; 00021 Int_t _strip; 00022 Float_t _energy; 00023 00024 public: 00025 00026 TMBCpsDigi(); 00027 TMBCpsDigi(Int_t layer, Int_t strip, Float_t energy); 00028 ~TMBCpsDigi() {} 00029 00030 Int_t layer() const { return _layer; } 00031 Int_t strip() const { return _strip; } 00032 Float_t energy() const { return _energy;} 00033 00034 ClassDef(TMBCpsDigi, 2); //TMBTree Cps digi class 00035 }; 00036 00037 #endif
1.3.4