TMBCpsDigi.hpp

Go to the documentation of this file.
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 
00016 /* Central preshower digi
00017 \ingroup reco
00018  */
00019 class TMBCpsDigi : public TObject
00020 {
00021 private:
00022     Int_t        _layer;
00023     Int_t        _strip;
00024     Float_t      _energy;
00025     
00026 public:
00027     
00028     TMBCpsDigi();
00029     TMBCpsDigi(Int_t layer, Int_t strip, Float_t energy);
00030     ~TMBCpsDigi() {}
00031     
00032     Int_t   layer()  const { return _layer; }
00033     Int_t   strip()  const { return _strip; }
00034     Float_t energy() const { return _energy;}
00035     
00036     ClassDef(TMBCpsDigi, 2);   //TMBTree Cps digi class
00037 };
00038 
00039 #endif

Generated on Thu Apr 3 04:14:23 2008 for CAF by doxygen 1.3.4