File indexing completed on 2024-04-06 12:10:54
0001 #include "DataFormats/L1TMuon/interface/OMTF/OmtfCscDataWord64.h"
0002
0003 namespace omtf {
0004 std::ostream &operator<<(std::ostream &out, const CscDataWord64 &o) {
0005 out << "CscDataWord64: "
0006 << " type: " << DataWord64::type(o.type()) << " val: " << o.valid() << " bx: " << o.bxNum()
0007 << " lnk: " << o.linkNum() << " stat: " << o.station() << " cscId: " << o.cscID() << " hit: " << o.hitNum()
0008 << " qual: " << o.quality() << " patt: " << o.clctPattern() << " bending: " << o.bend()
0009 << " hs: " << o.halfStrip() << " wg: " << o.wireGroup();
0010 return out;
0011 }
0012 }