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

TMBFpd.hpp

Go to the documentation of this file.
00001 #ifndef TMBFpd_H
00002 #define TMBFpd_H
00003 
00005 //                                                                      //
00006 // TMBTree class for FPD Hits
00007 //
00008 // Created: 4-DEC-2004  G. Alves
00009 //
00010 // Modified: 
00011 //                                                                      //
00013 
00014 #ifndef ROOT_TObject
00015 #include "TObject.h"
00016 #endif
00017 
00018 #include "TString.h"
00019 #include "TMap.h"
00020 
00021 class TMBFpd : public TObject {
00022 
00023 private:
00024        //       FPD block
00025         TString _pot;
00026         TString _plane;
00027         Int_t   _fiber;
00028         Int_t   _ADC;
00029 
00030 public:
00031 
00032 TMBFpd();
00033 
00034 TMBFpd(TString pot, TString plane, Int_t fiber, Int_t ADC);
00035 
00036 TString  pot() const {return _pot;}
00037 TString  plane() const {return _plane;}
00038 Int_t    fiber() const {return _fiber;}
00039 Int_t    ADC() const {return _ADC;}
00040 virtual   ~TMBFpd() {;}
00041 
00042    ClassDef(TMBFpd, 1)   //TMBTree Fpd class
00043 };
00044 
00045 #endif

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