00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef StMuFmsCollection_hh
00018 #define StMuFmsCollection_hh
00019
00020 #include "StObject.h"
00021 #include "TClonesArray.h"
00022
00023 class StMuFmsHit;
00024
00025
00026
00027 class StMuFmsCollection : public StObject {
00028 public:
00029 StMuFmsCollection();
00030 ~StMuFmsCollection();
00031
00032 void init();
00033 void addHit();
00034 unsigned int numberOfHits() const;
00035 void setFmsHitArray(TClonesArray *array) {mHits=array;};
00036
00037 StMuFmsHit* getHit(int hitId);
00038 TClonesArray* getHitArray() { return mHits; };
00039
00040 private:
00041 TClonesArray* mHits;
00042
00043 ClassDef(StMuFmsCollection,1)
00044 };
00045 #endif