StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSsdLadderHitCollection.h
1 
5 /***************************************************************************
6  *
7  * $Id: StSsdLadderHitCollection.h,v 2.3 2002/02/22 22:56:50 jeromel Exp $
8  *
9  * Author: Lilian Martin, Thomas Ullrich, Dec 1999
10  ***************************************************************************
11  *
12  * Description:
13  *
14  ***************************************************************************
15  *
16  * $Log: StSsdLadderHitCollection.h,v $
17  * Revision 2.3 2002/02/22 22:56:50 jeromel
18  * Doxygen basic documentation in all header files. None of this is required
19  * for QM production.
20  *
21  * Revision 2.2 2001/04/05 04:00:42 ullrich
22  * Replaced all (U)Long_t by (U)Int_t and all redundant ROOT typedefs.
23  *
24  * Revision 2.1 2000/01/05 16:00:10 ullrich
25  * Initial Revision.
26  *
27  **************************************************************************/
28 #ifndef StSsdLadderHitCollection_hh
29 #define StSsdLadderHitCollection_hh
30 
31 #include "StObject.h"
32 #include "StSsdWaferHitCollection.h"
33 
35 public:
38  // StSsdLadderHitCollection(const StSsdLadderHitCollection&); use default
39  // const StSsdLadderHitCollection&
40  // operator=(const StSsdLadderHitCollection&); use default
41 
42  unsigned int numberOfHits() const;
43  unsigned int numberOfWafers() const;
44 
45  StSsdWaferHitCollection* wafer(unsigned int);
46  const StSsdWaferHitCollection* wafer(unsigned int) const;
47 
48 private:
49  enum { mMaxNumberOfWafers = 16 };
50  StSsdWaferHitCollection mWafers[mMaxNumberOfWafers];
51 
52  ClassDef(StSsdLadderHitCollection,1)
53 };
54 #endif