StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtHitCollection.cxx
1 
14 // StEvent headers
15 #include "StContainers.h"
16 #include "StGmtHit.h"
17 #include "StGmtHitCollection.h"
18 
19 //________________
20 StGmtHitCollection::StGmtHitCollection( short moduleId ) : StObject(), mModule( moduleId ) {
21  /* empty*/
22 }
23 
24 //________________
26  /* empty */
27 }
28 
29 //________________
30 void StGmtHitCollection::Clear( Option_t *opt ) {
31  // no need to delete the objects in mStripVec, is done within
32  // its clear function.
33 
34  // clear the vector
35  mHitVec.clear();
36 }
37 
38 
StSPtrVecGmtHit mHitVec
Vector of hits that belong to the current module.
void Clear(Option_t *opt="")
Clear.
StGmtHitCollection(short moduleId=-1)
Constructor.
~StGmtHitCollection()
Deconstructor.