Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members

TMBFps.hpp

Go to the documentation of this file.
00001 #ifndef TMBFps_H
00002 #define TMBFps_H
00003 
00005 //                                                                      //
00006 // TMBTree class for preshower clusters
00007 //
00008 // Created: 4-APR-2002  S. Protopopescu
00009 //
00010 // Modified: 23-JUL-2003  J. Lazoflores
00011 //                                                                      //
00013 
00014 #ifndef ROOT_TObject
00015 #include "TObject.h"
00016 #endif
00017 
00018 class TMBFps : public TObject {
00019 
00020 private:
00021        //       PSblock
00022        Float_t        _r;
00023        Float_t        _phi;
00024        Float_t        _z;
00025        Float_t        _E;  
00026        Int_t          _nstr_u;
00027        Int_t          _nstr_v;
00028        Float_t        _cntrd_u;
00029        Float_t        _cntrd_v;
00030        Float_t        _rms_u;
00031        Float_t        _rms_v;
00032        Float_t        _ecl_u;
00033        Float_t        _ecl_v;
00034        Int_t          _index_cl;
00035 
00036 public:
00037 
00038 TMBFps();
00039 
00040   TMBFps(Float_t r,  Float_t phi, Float_t z, Float_t E, Int_t _nstr_u, Int_t _nstr_v, Float_t cntrd_u, Float_t cntrd_v, Float_t rms_u, Float_t rms_v, Float_t ecl_u, Float_t ecl_v, Int_t index_cl);
00041 
00042 Float_t  E() const {return _E;}
00043 Float_t  phi() const {return _phi;}
00044 Float_t  r() const {return _r;}
00045 Float_t  z() const {return _z;}
00046 Int_t    nstr_u() const {return _nstr_u;}
00047 Int_t    nstr_v() const {return _nstr_v;}
00048 Float_t  cntrd_u() const {return _cntrd_u;}
00049 Float_t  cntrd_v() const {return _cntrd_v;}
00050 Float_t  clrms_u() const {return _rms_u;}
00051 Float_t  clrms_v() const {return _rms_v;}
00052 Float_t  ecl_u() const {return _ecl_u;}
00053 Float_t  ecl_v() const {return _ecl_v;}
00054 Int_t    index_cl() const {return _index_cl;}
00055 virtual   ~TMBFps() {;}
00056 
00057    ClassDef(TMBFps, 3)   //TMBTree Fps class
00058 };
00059 
00060 #endif

Generated on Tue Mar 28 10:13:04 2006 for CAF by doxygen 1.3.4