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 {
00007 os << "DTCFragment " << std::hex << ", packet count: " << f.hdr_packet_count() << ", timestamp: " << f.hdr_timestamp()
00008 << "\n";
00009
00010 return os;
00011 }