StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtWaferHitCollection.h
1 
5 /***************************************************************************
6  *
7  * $Id: StSvtWaferHitCollection.h,v 2.3 2002/02/22 22:56:51 jeromel Exp $
8  *
9  * Author: Thomas Ullrich, Sep 1999
10  ***************************************************************************
11  *
12  * Description:
13  *
14  ***************************************************************************
15  *
16  * $Log: StSvtWaferHitCollection.h,v $
17  * Revision 2.3 2002/02/22 22:56:51 jeromel
18  * Doxygen basic documentation in all header files. None of this is required
19  * for QM production.
20  *
21  * Revision 2.2 1999/10/28 22:26:58 ullrich
22  * Adapted new StArray version. First version to compile on Linux and Sun.
23  *
24  * Revision 2.1 1999/10/13 19:43:53 ullrich
25  * Initial Revision
26  *
27  **************************************************************************/
28 #ifndef StSvtWaferHitCollection_hh
29 #define StSvtWaferHitCollection_hh
30 
31 #include "StObject.h"
32 #include "StContainers.h"
33 
34 class StSvtHit;
35 
37 public:
39  // StSvtWaferHitCollection(const StSvtWaferHitCollection&); use default
40  // const StSvtWaferHitCollection&
41  // operator=(const StSvtWaferHitCollection&); use default
43 
44  StSPtrVecSvtHit& hits();
45  const StSPtrVecSvtHit& hits() const;
46 
47 private:
48  StSPtrVecSvtHit mHits;
49 
50  ClassDef(StSvtWaferHitCollection,1)
51 };
52 #endif