StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtPointCollection.h
1 
13 #ifndef StGmtPointCollection_hh
14 #define StGmtPointCollection_hh
15 
16 // STAR headers
17 #include "StObject.h"
18 #include "StContainers.h"
19 
20 // Forward declaration
21 class StGmtPoint;
22 
23 //________________
25  public:
28  // StGmtPointCollection( const StGmtPointCollection& other ); ---> use default
29  // StGmtPointCollection& operator=( const StGmtPointCollection& other ); ---> use default
30 
33 
35  StSPtrVecGmtPoint& getPointVec() { return mPointVec; }
37  const StSPtrVecGmtPoint& getPointVec() const { return mPointVec; }
39  size_t getNumPoints() const { return mPointVec.size(); }
40 
42  void Clear( Option_t *opt = "" ) { mPointVec.clear(); }
43 
44  protected:
46  StSPtrVecGmtPoint mPointVec;
47 
48  private:
49  ClassDef(StGmtPointCollection,1)
50 };
51 
52 #endif // #define StGmtPointCollection_hh
StGmtPointCollection()
Constructor.
StSPtrVecGmtPoint & getPointVec()
Vector with points.
const StSPtrVecGmtPoint & getPointVec() const
Vector with points.
void Clear(Option_t *opt="")
Clear.
size_t getNumPoints() const
Number of points (size of the vector)
StSPtrVecGmtPoint mPointVec
Vector of GMT points.
Holds data for the point (a.k.a. cluster) in GMT.
Definition: StGmtPoint.h:22
~StGmtPointCollection()
Destructor.