StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPhmdModule.h
1 
5 /********************************************************************
6  *
7  * $Id: StPhmdModule.h,v 2.1 2002/12/20 22:33:00 ullrich Exp $
8  *
9  * Author: Subhasis Chattopadhyay, Dec 2002
10  ********************************************************************
11  *
12  * Description: This is the class for each supermodule
13  * having the hit information.
14  *
15  ********************************************************************
16  *
17  * $Log: StPhmdModule.h,v $
18  * Revision 2.1 2002/12/20 22:33:00 ullrich
19  * Initial Revision.
20  *
21  ********************************************************************/
22 #ifndef StPhmdModule_hh
23 #define StPhmdModule_hh
24 
25 #include "StObject.h"
26 #include "StContainers.h"
27 #include "StPhmdHit.h"
28 
29 class StPhmdModule : public StObject {
30 public:
31  StPhmdModule();
32  ~StPhmdModule();
33 
34  unsigned int numberOfHits() const;
35  StSPtrVecPhmdHit& hits();
36  const StSPtrVecPhmdHit& hits() const;
37 
38 private:
39  StSPtrVecPhmdHit mHits;
40  ClassDef(StPhmdModule,1)
41 };
42 #endif
43 
44 
45 
46 
47 
48 
49 
50 
51