EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AssocInfoContainerv1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file AssocInfoContainerv1.cc
1 #include "AssocInfoContainerv1.h"
2 
4  : _map_cluster_id_track_id()
5 {
6 }
7 
9 
11 {
13 }
14 
15 void AssocInfoContainerv1::identify(std::ostream& os) const
16 {
17  os << "---ClusterTrackMap--------------------------" << std::endl;
18  for (auto iter = _map_cluster_id_track_id.begin();
19  iter != _map_cluster_id_track_id.end();
20  ++iter)
21  {
22  os
23  << "{" << iter->first
24  << " -> " << iter->second
25  << "}"
26  << std::endl;
27  }
28 }