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