StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSsdWaferHitCollection.h
1 
5 /***************************************************************************
6  *
7  * $Id: StSsdWaferHitCollection.h,v 2.2 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: StSsdWaferHitCollection.h,v $
17  * Revision 2.2 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.1 2000/01/05 16:00:13 ullrich
22  * Initial Revision.
23  *
24  **************************************************************************/
25 #ifndef StSsdWaferHitCollection_hh
26 #define StSsdWaferHitCollection_hh
27 
28 #include "StObject.h"
29 #include "StContainers.h"
30 
31 class StSsdHit;
32 
34 public:
36  // StSsdWaferHitCollection(const StSsdWaferHitCollection&); use default
37  // const StSsdWaferHitCollection&
38  // operator=(const StSsdWaferHitCollection&); use default
40 
41  StSPtrVecSsdHit& hits();
42  const StSPtrVecSsdHit& hits() const;
43 
44 private:
45  StSPtrVecSsdHit mHits;
46 
47  ClassDef(StSsdWaferHitCollection,1)
48 };
49 #endif