32 *
fout <<
"size: " << jets->
size() << std::endl;
36 for (
auto jet : *jets)
38 *
fout <<
"id: " << jet->get_id() << std::endl;
39 *
fout <<
"px: " << jet->get_px() << std::endl;
40 *
fout <<
"py: " << jet->get_py() << std::endl;
41 *
fout <<
"pz: " << jet->get_pz() << std::endl;
42 *
fout <<
"e: " << jet->get_e() << std::endl;
43 *
fout <<
"p: " << jet->get_p() << std::endl;
44 *
fout <<
"pt: " << jet->get_pt() << std::endl;
45 *
fout <<
"et: " << jet->get_et() << std::endl;
46 *
fout <<
"eta: " << jet->get_eta() << std::endl;
47 *
fout <<
"phi: " << jet->get_phi() << std::endl;
48 *
fout <<
"mass: " << jet->get_mass() << std::endl;
51 for (
auto prop : jets->property_indices()) {
52 *
fout <<
"prop id: " <<
static_cast<unsigned int>(prop.first)
53 <<
" value: " << jet->get_property(prop.second)
60 for (
const auto&
comp : jet->get_comp_vec()) {
61 *
fout <<
"src: " <<
comp.first <<
" value: " <<
comp.second << std::endl;