#include "AlgoDataTypes.h"
#include "GenericTob.h"
#include "eEmSortSelectCountContainerPortsOut.h"
#include "eTauSortSelectCountPortsOut.h"
#include <ostream>
#include <map>
#include <vector>
Go to the source code of this file.
|
| GlobalSim |
| AlgTool to obtain a selection of eFex RoIs read in from the event store.
|
|
◆ operator<<()
Definition at line 28 of file DataCollector.cxx.
6 os <<
"DataCollector\nints:[" << col.
m_ints.size() <<
"]\n\n";
8 for (
const auto&
p : col.
m_ints) {
13 os <<
"\nsize_t containers:\n\n";
16 os <<
p.first <<
":\n"
23 os <<
"\neEmTob containers:\n\n";
26 os <<
p.first <<
" [" <<
p.second.size() <<
"]\n";
31 os <<
"\n vector of eEmTob containers:\n\n";
34 os <<
p.first <<
" [" <<
p.second.size() <<
"]\n"
40 os <<
"\n vector of GenericTob containers:\n\n";
43 const auto& vecOfvec =
p.second;
44 os <<
'\n' <<
p.first <<
" [" << vecOfvec.size() <<
"]\n";
45 for (
const auto&
vec : vecOfvec) {
46 os <<
"\n inner vec size [" <<
vec.size() <<
"]\n";
47 for(
const auto&
e :
vec) {