00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef StEtrHit_hh
00029 #define StEtrHit_hh
00030
00031 #include "StHit.h"
00032 #include "StMemoryPool.hh"
00033
00034 class StEtrPoint;
00035
00036 class StEtrHit : public StHit {
00037 public:
00038 StEtrHit();
00039 StEtrHit(const StThreeVectorF& position,
00040 int sector, int layer, int section, float charge);
00041 ~StEtrHit();
00042 StDetectorId detector() const {return kEtrId;}
00043
00044 int section() const;
00045 int sector() const;
00046 int layer() const;
00047 protected:
00048 ClassDef(StEtrHit,1)
00049 };
00050 #endif