#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <map>
#include <memory>
Go to the source code of this file.
- Author
- mark sutton
- Date
- Sun 18 Jan 2009 19:08:11 GMT
- Copyright
- Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
Definition in file TIDAAssociator.h.
◆ operator<<()
template<typename T, typename S>
Definition at line 87 of file TIDAAssociator.h.
87 {
88 typename TIDA::Associator<T,S>::map_type::const_iterator mitr =
a.matched().begin();
89 typename TIDA::Associator<T,S>::map_type::const_iterator mend =
a.matched().end();
90
91 std::cout <<
"TIDA::Associator size() " <<
a.size() << std::endl;
92
93 while ( mitr!=mend ) {
95 if ( mitr->first )
s << *(mitr->first) <<
"\t";
96 else s <<
"-------\t\t";
97
98 if ( mitr->second )
s << *(mitr->second);
100
101 s <<
" ]" << std::endl;
102
103 ++mitr;
104 }
105
107}