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

TMBFpsData.hpp

Go to the documentation of this file.
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 
00017 class TMBFpsData : public TObject
00018 {
00019 
00020 private:
00021     Int_t        _wedge;
00022     Int_t        _strip;
00023     Float_t      _energy;
00024     
00025 public:
00026     
00027     TMBFpsData();
00028     TMBFpsData(Int_t wedge, Int_t strip, Float_t energy);
00029     ~TMBFpsData() {}    
00030 
00031     Int_t   wedge()  const { return _wedge; }
00032     Int_t   strip()  const { return _strip; }
00033     Float_t energy() const { return _energy;}
00034 
00035     ClassDef(TMBFpsData, 2);   //TMBTree Fps data class
00036 };
00037 
00038 #endif

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