00001 #ifndef TMBFpsData_H 00002 #define TMBFpsData_H 00003 00005 // // 00006 // TMBTree class for forward preshower data chunk 00007 // 00008 // Created: 6-January-2005 Alan Magerkurth 00009 // // 00011 00012 #ifndef ROOT_TObject 00013 #include "TObject.h" 00014 #endif 00015 00016 /* Forward preshower data 00017 \ingroup reco 00018 */ 00019 class TMBFpsData : public TObject 00020 { 00021 00022 private: 00023 Int_t _wedge; 00024 Int_t _strip; 00025 Float_t _energy; 00026 00027 public: 00028 00029 TMBFpsData(); 00030 TMBFpsData(Int_t wedge, Int_t strip, Float_t energy); 00031 ~TMBFpsData() {} 00032 00033 Int_t wedge() const { return _wedge; } 00034 Int_t strip() const { return _strip; } 00035 Float_t energy() const { return _energy;} 00036 00037 ClassDef(TMBFpsData, 2); //TMBTree Fps data class 00038 }; 00039 00040 #endif
1.3.4