ATLAS Offline Software
Loading...
Searching...
No Matches
CombinationsJetStream.cxx File Reference
Include dependency graph for CombinationsJetStream.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CombinationsJetStream &str)
std::stringstream & operator<< (std::stringstream &os, const CombinationsJetStream &str)

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & os,
const CombinationsJetStream & str )

Definition at line 8 of file CombinationsJetStream.cxx.

8 {
9 os << "CombinationsJetStream m_combgen " << str.m_id << '\n'
10 << *str.m_combgen << '\n';
11 return os;
12}

◆ operator<<() [2/2]

std::stringstream & operator<< ( std::stringstream & os,
const CombinationsJetStream & str )

Definition at line 14 of file CombinationsJetStream.cxx.

14 {
15 os << "CombinationsJetStream id: " << str.m_id
16 << " m_combgen: " << *str.m_combgen
17 <<" data: ";
18 for (const auto& d : str.m_data){os << d << " ";}
19 os <<'\n';
20
21 return os;
22}