ATLAS Offline Software
Loading...
Searching...
No Matches
CombinationsJetStream.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5
7
8std::ostream& operator << (std::ostream& os, const CombinationsJetStream& str){
9 os << "CombinationsJetStream m_combgen " << str.m_id << '\n'
10 << *str.m_combgen << '\n';
11 return os;
12}
13
14std::stringstream& operator << (std::stringstream& os, const CombinationsJetStream& str){
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}
std::ostream & operator<<(std::ostream &os, const CombinationsJetStream &str)
CombinationsJetStream(const std::vector< std::size_t > &jets, std::unique_ptr< IJetStream > neigh, std::size_t k, std::size_t id)