Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusterCrossingAssocv1.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusterCrossingAssocv1.h
1 #ifndef TRACKBASE_TRKRCLUSTERCROSSINGASSOCV1_H
2 #define TRACKBASE_TRKRCLUSTERCROSSINGASSOCV1_H
3 
11 #include "TrkrDefs.h"
13 
14 #include <phool/PHObject.h>
15 
16 #include <iostream> // for cout, ostream
17 #include <map>
18 #include <utility> // for pair
19 
26 {
27  public:
28 
29  TrkrClusterCrossingAssocv1() = default;
30 
31  void Reset() override;
32 
33  void identify(std::ostream &os = std::cout) const override;
34 
35  void addAssoc(TrkrDefs::cluskey, short int) override;
36 
38 
39  ConstRange getAll() const override;
40 
41  unsigned int size(void) const override;
42 
43 private:
44 
45  std::multimap<TrkrDefs::cluskey, short int> m_map;
46 
48 };
49 
50 #endif // TRACKBASE_TRKRCLUSTERCROSSINGASSOCV1_H