#include "CombinationsGenerator.h"
#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/HypoJetDefs.h"
#include <vector>
#include <iterator>
#include <iosfwd>
Go to the source code of this file.
◆ operator<<()
Definition at line 37 of file CombinationsIterator.cxx.
7 {
9 <<
" generator: " <<
iter.m_gen
10 <<
" end: " <<
iter.m_end
11 << " input vals: ";
12 for(
const auto& hj :
iter.m_input_vals) {
13 os << static_cast<const void*>(hj.get()) << '\n';
14 }
15
16 os <<
'\n' <<
" vals: ";
17
18 for(
const auto& hj :
iter.m_vals) {
19 os << static_cast<const void*>(hj.get()) << '\n';
20 }
23}