StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFtpcSectorHitCollection.h
1 
5 /***************************************************************************
6  *
7  * $Id: StFtpcSectorHitCollection.h,v 2.3 2002/02/22 22:56:48 jeromel Exp $
8  *
9  * Author: Thomas Ullrich, July 1999
10  ***************************************************************************
11  *
12  * Description:
13  *
14  ***************************************************************************
15  *
16  * $Log: StFtpcSectorHitCollection.h,v $
17  * Revision 2.3 2002/02/22 22:56:48 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:25:24 ullrich
22  * Adapted new StArray version. First version to compile on Linux and Sun.
23  *
24  * Revision 2.1 1999/10/13 19:43:11 ullrich
25  * Initial Revision
26  *
27  **************************************************************************/
28 #ifndef StFtpcSectorHitCollection_hh
29 #define StFtpcSectorHitCollection_hh
30 
31 #include "StObject.h"
32 #include "StContainers.h"
33 
34 class StFtpcHit;
35 
37 public:
39  // StFtpcSectorHitCollection(const StFtpcSectorHitCollection&); use default
40  // StFtpcSectorHitCollection& operator=(const StFtpcSectorHitCollection&); use default
42 
43  StSPtrVecFtpcHit& hits();
44  const StSPtrVecFtpcHit& hits() const;
45 
46 private:
47  StSPtrVecFtpcHit mHits;
48 
49  ClassDef(StFtpcSectorHitCollection,1)
50 };
51 #endif