00001 00005 /*************************************************************************** 00006 * 00007 * $Id: StSsdLadderHitCollection.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: StSsdLadderHitCollection.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:10 ullrich 00025 * Initial Revision. 00026 * 00027 **************************************************************************/ 00028 #ifndef StSsdLadderHitCollection_hh 00029 #define StSsdLadderHitCollection_hh 00030 00031 #include "StObject.h" 00032 #include "StSsdWaferHitCollection.h" 00033 00034 class StSsdLadderHitCollection : public StObject { 00035 public: 00036 StSsdLadderHitCollection(); 00037 ~StSsdLadderHitCollection(); 00038 // StSsdLadderHitCollection(const StSsdLadderHitCollection&); use default 00039 // const StSsdLadderHitCollection& 00040 // operator=(const StSsdLadderHitCollection&); use default 00041 00042 unsigned int numberOfHits() const; 00043 unsigned int numberOfWafers() const; 00044 00045 StSsdWaferHitCollection* wafer(unsigned int); 00046 const StSsdWaferHitCollection* wafer(unsigned int) const; 00047 00048 private: 00049 enum { mMaxNumberOfWafers = 16 }; 00050 StSsdWaferHitCollection mWafers[mMaxNumberOfWafers]; 00051 00052 ClassDef(StSsdLadderHitCollection,1) 00053 }; 00054 #endif
1.5.9