00001 #ifndef TMBFpd_H
00002 #define TMBFpd_H
00003
00005
00006
00007
00008
00009
00010
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
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)
00043 };
00044
00045 #endif