StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StPmdModule.h
1 
5 /*****************************************************
6  *
7  * $Id: StPmdModule.h,v 1.2 2003/05/12 12:07:13 subhasis Exp $
8  *
9  * Author: Subhasis Chattopadhyay
10  *****************************************************
11  *
12  * Description: This is the class for each supermodule
13  * having the hit information.
14  *
15  ******************************************************
16  * $Log: StPmdModule.h,v $
17  * Revision 1.2 2003/05/12 12:07:13 subhasis
18  * Mapping added
19  *
20  *
21  *******************************************************/
22 #ifndef StPmdModule_hh
23 #define StPmdModule_hh
24 
25 #include "StObject.h"
26 #include "StPmdHit.h"
27 
28 class StPmdModule : public StObject {
29 
30 public:
31 
32  StPmdModule();
33  ~StPmdModule();
34  unsigned int numberOfHits() const;
35  TObjArray* Hits();
36 
37 private:
38  TObjArray mHits;
39  ClassDef(StPmdModule,1)
40  };
41 #endif
42 
43 inline TObjArray* StPmdModule::Hits() {return &mHits;}
44 
45 
46 
47 
48 
49 
50 
51 
52 
53 
54 
unsigned int numberOfHits() const
A destructor.
~StPmdModule()
A constructor.
Definition: StPmdModule.cxx:27