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