ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusterIterationMapv1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusterIterationMapv1.cc
1 
9 
10 #include <ostream> // for operator<<, endl, basic_ostream, ostream, basic_o...
11 
13 {
14  m_map.clear();
15 }
16 
17 void TrkrClusterIterationMapv1::identify(std::ostream &os) const
18 {
19  os << "-----TrkrClusterIterationMapv1-----" << std::endl;
20  os << "Number of associations: " << m_map.size() << std::endl;
21 
22  for ( auto& entry : m_map )
23  {
24  // os << " cluster key: 0x" << std::hex << entry.first << std::dec
25  os << " cluster key: " << entry.first << std::dec
26  << " iteration: " << entry.second << std::endl;
27  }
28 
29  os << "------------------------------" << std::endl;
30 
31  return;
32 
33 }
34 
36 {
37  m_map.insert(std::make_pair(ckey, iter));
38 }
39 
41 {
42  Map::iterator iter = m_map.find(ckey);
43  if(iter!=m_map.end()){
44  return (*iter).second;
45  }else{
46  return 0;
47  }
48 }
49 
50 unsigned int TrkrClusterIterationMapv1::size() const {return m_map.size();}