ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusterHitAssocv1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusterHitAssocv1.cc
1 
9 
10 #include <ostream> // for operator<<, endl, basic_ostream, ostream, basic_o...
11 
12 void
14 {
15  m_map.clear();
16 }
17 
18 void
19 TrkrClusterHitAssocv1::identify(std::ostream &os) const
20 {
21  os << "-----TrkrClusterHitAssocv1-----" << std::endl;
22  os << "Number of associations: " << m_map.size() << std::endl;
23 
24  for ( auto& entry : m_map )
25  {
26  // os << " cluster key: 0x" << std::hex << entry.first << std::dec
27  os << " cluster key: " << entry.first << std::dec
28  << " hit key: " << entry.second << std::endl;
29  }
30 
31  os << "------------------------------" << std::endl;
32 
33  return;
34 
35 }
36 
37 void
39 {
40  m_map.insert(std::make_pair(ckey, hidx));
41 }
42 
45 { return std::make_pair( m_map.lower_bound(ckey), m_map.upper_bound(ckey) ); }