00001 00005 /*************************************************************************** 00006 * 00007 * $Id: StSsdHitCollection.h,v 2.3 2002/02/22 22:56:50 jeromel Exp $ 00008 * 00009 * Author: Lilian Martin, Thomas Ullrich, Dec 1999 00010 *************************************************************************** 00011 * 00012 * Description: 00013 * 00014 *************************************************************************** 00015 * 00016 * $Log: StSsdHitCollection.h,v $ 00017 * Revision 2.3 2002/02/22 22:56:50 jeromel 00018 * Doxygen basic documentation in all header files. None of this is required 00019 * for QM production. 00020 * 00021 * Revision 2.2 2001/04/05 04:00:42 ullrich 00022 * Replaced all (U)Long_t by (U)Int_t and all redundant ROOT typedefs. 00023 * 00024 * Revision 2.1 2000/01/05 16:00:07 ullrich 00025 * Initial Revision. 00026 * 00027 **************************************************************************/ 00028 #ifndef StSsdHitCollection_hh 00029 #define StSsdHitCollection_hh 00030 00031 #include "StObject.h" 00032 #include "StSsdLadderHitCollection.h" 00033 class StSsdHit; 00034 00035 class StSsdHitCollection : public StObject { 00036 public: 00037 StSsdHitCollection(); 00038 ~StSsdHitCollection(); 00039 // StSsdHitCollection(const StSsdHitCollection&); use default 00040 // StSsdHitCollection& operator=(const StSsdHitCollection&); use default 00041 00042 bool addHit(StSsdHit*); 00043 unsigned int numberOfHits() const; 00044 unsigned int numberOfLadders() const; 00045 00046 StSsdLadderHitCollection* ladder(unsigned int); 00047 const StSsdLadderHitCollection* ladder(unsigned int) const; 00048 00049 private: 00050 enum { mNumberOfLadders = 20 }; 00051 StSsdLadderHitCollection mLadders[mNumberOfLadders]; 00052 00053 ClassDef(StSsdHitCollection,1) 00054 }; 00055 #endif
1.5.9