Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:54

0001 #include "EventFilter/L1TRawToDigi/interface/OmtfMuonDataWord64.h"
0002 
0003 #include <bitset>
0004 
0005 namespace omtf {
0006   std::ostream &operator<<(std::ostream &out, const MuonDataWord64 &o) {
0007     out << "MuonDataWord64: "
0008         << " type: " << DataWord64::type(o.type()) << " bx: " << o.bxNum() << " pT: " << o.pT() << " eta: " << o.eta()
0009         << " phi: " << o.phi() << " quality: " << o.quality() << " layers: " << std::bitset<18>(o.layers()) << "";
0010     return out;
0011   }
0012 }  // namespace omtf