00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef StMcSsdHitCollection_hh
00025 #define StMcSsdHitCollection_hh
00026
00027 #include "StMcSsdLadderHitCollection.hh"
00028
00029 class StMcSsdHit;
00030
00031 class StMcSsdHitCollection : public StObject {
00032 public:
00033
00034 StMcSsdHitCollection();
00035 virtual ~StMcSsdHitCollection();
00036
00037 bool addHit(StMcSsdHit*);
00038 unsigned long numberOfHits() const;
00039 unsigned int numberOfLadders() const;
00040
00041 StMcSsdLadderHitCollection* ladder(unsigned int);
00042 const StMcSsdLadderHitCollection* ladder(unsigned int) const;
00043 protected:
00044 enum { mNumberOfLadders = 20 };
00045 StMcSsdLadderHitCollection mLadders[mNumberOfLadders];
00046 ClassDef(StMcSsdHitCollection,1)
00047 };
00048 #endif