00001 #include "mu2e-artdaq-core/Overlays/DTCFragment.hh" 00002 00003 #include <iomanip> 00004 #include "cetlib/exception.h" 00005 00006 std::ostream & mu2e::operator << (std::ostream & os, DTCFragment const & f) { 00007 os << "DTCFragment " << std::hex 00008 << ", packet count: " << f.hdr_packet_count() 00009 << ", timestamp: " << f.hdr_timestamp() 00010 << "\n"; 00011 00012 return os; 00013 }