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