Go to the source code of this file.
|
| namespace | Trk |
| | Ensure that the ATLAS eigen extensions are properly loaded.
|
|
| template<class T> |
| MsgStream & | operator<< (MsgStream &msg_stream, const std::map< std::string, T > &elm_map) |
| template<class T> |
| MsgStream & | operator<< (MsgStream &msg_stream, const std::vector< std::string > &elm_vector) |
◆ operator<<() [1/2]
template<class T>
| MsgStream & operator<< |
( |
MsgStream & | msg_stream, |
|
|
const std::map< std::string, T > & | elm_map ) |
|
inline |
Definition at line 56 of file TrackParticleCreatorTool.cxx.
58{
59 for (const std::pair<const std::string, T>& elm : elm_map) {
60 msg_stream << " " << elm.first;
61 }
62 return msg_stream;
63}
◆ operator<<() [2/2]
template<class T>
| MsgStream & operator<< |
( |
MsgStream & | msg_stream, |
|
|
const std::vector< std::string > & | elm_vector ) |
|
inline |
Definition at line 66 of file TrackParticleCreatorTool.cxx.
68{
69 for (const std::string& elm : elm_vector) {
70 msg_stream << " " << elm;
71 }
72 return msg_stream;
73}