StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtCollection.h
1 
12 #ifndef StGmtCollection_hh
13 #define StGmtCollection_hh
14 
15 // StRoot headers
16 #include "StObject.h"
17 #include "StGmtStripCollection.h"
18 #include "StGmtHitCollection.h"
19 #include "StGmtPointCollection.h"
20 #include "StEnumerations.h"
21 
22 //________________
23 class StGmtCollection : public StObject {
24  public:
27  // StGmtCollection( const StGmtCollection& other ); ---> use default
28  // StGmtCollection& operator=( const StGmtCollection& other ); ---> use default
29 
32 
34  size_t getNumModules() const { return kGmtNumModules; }
36  size_t getNumStrips() const;
38  size_t getNumStrips( unsigned short moduleIdx) const
39  { return (moduleIdx < kGmtNumModules ? mStripCollection[moduleIdx].getNumStrips() : 0 ); }
41  size_t getNumHits() const;
43  size_t getNumHits( unsigned short moduleIdx ) const
44  { return (moduleIdx < kGmtNumModules ? mHitCollection[moduleIdx].getNumHits() : 0 ); }
46  size_t getNumPoints() const
47  { return mPointCollection.getNumPoints(); }
48 
49  // note: ownership of all pointers is retained by the containers.
50  // Do not delete any pointers received from this class.
51 
53  StGmtStripCollection* getStripCollection( unsigned short moduleIdx )
54  { return (moduleIdx < kGmtNumModules ? &mStripCollection[moduleIdx] : 0 ); }
56  const StGmtStripCollection* getStripCollection( unsigned short moduleIdx ) const
57  { return (moduleIdx < kGmtNumModules ? &mStripCollection[moduleIdx] : 0 ); }
58 
60  StGmtHitCollection* getHitCollection( unsigned short moduleIdx )
61  { return (moduleIdx < kGmtNumModules ? &mHitCollection[moduleIdx] : 0 ); }
63  const StGmtHitCollection* getHitCollection( unsigned short moduleIdx ) const
64  { return (moduleIdx < kGmtNumModules ? &mHitCollection[moduleIdx] : 0 ); }
65 
70 
72  void Clear( Option_t *opts = "" );
73 
74  protected:
75 
77  friend class StMuDstMaker;
78 
85 
86  private:
87  ClassDef(StGmtCollection,1)
88 };
89 
90 #endif // #define StGmtCollection_hh
Holds collections of GMT data.
void Clear(Option_t *opts="")
Clear method.
StGmtHitCollection * getHitCollection(unsigned short moduleIdx)
Pointer to the GMT hit collection in the i-th module.
StGmtStripCollection mStripCollection[kGmtNumModules]
GMT strip collections for all modules.
size_t getNumStrips() const
Number total number of strips.
const StGmtStripCollection * getStripCollection(unsigned short moduleIdx) const
Pointer to the GMT strip collection in the i-th module.
Holds collection of GMT hits in the module.
size_t getNumModules() const
Number of modules.
size_t getNumHits(unsigned short moduleIdx) const
Number of hits in the i-th module.
StGmtPointCollection * getPointCollection()
Pointer to the GMT point collection.
~StGmtCollection()
Destructor.
size_t getNumHits() const
Number total number of hits.
StGmtCollection()
Constructor.
size_t getNumPoints() const
Number of points.
StGmtStripCollection * getStripCollection(unsigned short moduleIdx)
Pointer to the GMT strip collection in the i-th module.
size_t getNumPoints() const
Number of points (size of the vector)
StGmtHitCollection mHitCollection[kGmtNumModules]
GMT hit collections for all modules.
const StGmtPointCollection * getPointCollection() const
Pointer to the GMT point collection.
const StGmtHitCollection * getHitCollection(unsigned short moduleIdx) const
Pointer to the GMT hit collection in the i-th module.
StGmtPointCollection mPointCollection
GMT point collection.
size_t getNumStrips(unsigned short moduleIdx) const
Number of strips in the i-th module.