StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtHitCollection.h
1 
14 #ifndef StGmtHitCollection_hh
15 #define StGmtHitCollection_hh
16 
17 // STAR headers
18 #include "StObject.h"
19 #include "StContainers.h"
20 
21 // Forward declaration
22 class StGmtHit;
23 
24 //________________
25 class StGmtHitCollection : public StObject {
26  public:
28  StGmtHitCollection( short moduleId = -1 );
29  // StGmtHitCollection( const StGmtHitCollection& other ); ---> use default
30  // StGmtHitCollection& operator=( const StGmtHitCollection& other ); ---> use default
31 
34 
36  StSPtrVecGmtHit& getHitVec() { return mHitVec; }
38  const StSPtrVecGmtHit& getHitVec() const { return mHitVec; }
39 
41  size_t getNumHits() const { return mHitVec.size(); }
43  short getModule() const { return mModule; }
45  void setModule( short moduleId ) { mModule = moduleId; }
46 
48  void Clear( Option_t *opt = "" );
49 
50  protected:
52  Short_t mModule;
54  StSPtrVecGmtHit mHitVec;
55 
56  private:
57  ClassDef(StGmtHitCollection,1)
58 };
59 
60 #endif // #define StGmtHitCollection_hh
61 
Short_t mModule
Module index.
short getModule() const
Module number.
void setModule(short moduleId)
Set module number.
Holds collection of GMT hits in the module.
StSPtrVecGmtHit mHitVec
Vector of hits that belong to the current module.
Holds data for the hit in GMT.
Definition: StGmtHit.h:23
size_t getNumHits() const
Number of hits in the module.
void Clear(Option_t *opt="")
Clear.
StGmtHitCollection(short moduleId=-1)
Constructor.
StSPtrVecGmtHit & getHitVec()
Vector of hits that belong to the module.
~StGmtHitCollection()
Deconstructor.
const StSPtrVecGmtHit & getHitVec() const
Vector of hits that belong to the module.