00001 #include "mu2e-artdaq-core/Overlays/mu2eFragment.hh" 00002 00003 #include <iomanip> 00004 00005 std::ostream & mu2e::operator << (std::ostream & os, mu2eFragment const & f) { 00006 os << "mu2eFragment " << std::dec 00007 << ", block count: " << f.hdr_block_count() 00008 << ", type: " << f.hdr_fragment_type() 00009 << "\n"; 00010 00011 return os; 00012 }