00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef StPhmdModule_hh
00023 #define StPhmdModule_hh
00024
00025 #include "StObject.h"
00026 #include "StContainers.h"
00027 #include "StPhmdHit.h"
00028
00029 class StPhmdModule : public StObject {
00030 public:
00031 StPhmdModule();
00032 ~StPhmdModule();
00033
00034 unsigned int numberOfHits() const;
00035 StSPtrVecPhmdHit& hits();
00036 const StSPtrVecPhmdHit& hits() const;
00037
00038 private:
00039 StSPtrVecPhmdHit mHits;
00040 ClassDef(StPhmdModule,1)
00041 };
00042 #endif
00043
00044
00045
00046
00047
00048
00049
00050
00051