#include <vector>
#include <iosfwd>
#include <string>
#include <stdexcept>
#include <unordered_map>
#include "AthLinks/ElementLink.h"
#include "GeneratorObjects/McEventCollection.h"
#include "McParticleEvent/TruthParticleParamDefs.h"
Go to the source code of this file.
◆ operator<<()
Definition at line 156 of file TruthEtIsolations.cxx.
159 const std::size_t nEtIsols = etIsols.
size();
160 out <<
"nbr of EtIsols: " << nEtIsols;
161 std::ostringstream
buf;
162 buf << std::right << std::scientific << std::setprecision(8);
165 buf <<
"\nbc: " <<
i->first <<
" [ ";
166 std::copy(
i->second.begin(),
i->second.end(), std::ostream_iterator<double>( buf,
" " ) );