CMS 3D CMS Logo

OmtfMuonDataWord64.cc
Go to the documentation of this file.
2 
3 #include <bitset>
4 
5 namespace omtf {
6  std::ostream & operator<< (std::ostream &out, const MuonDataWord64 &o) {
7  out << "MuonDataWord64: "
8  <<" type: "<< DataWord64::type(o.type())
9  << " bx: "<<o.bxNum()
10  << " pT: "<<o.pT()
11  << " eta: "<<o.eta()
12  << " phi: "<<o.phi()
13  << " quality: "<<o.quality()
14  << " layers: "<< std::bitset<18>(o.layers())
15  << "";
16  return out;
17  }
18 }
unsigned int pT() const
unsigned int bxNum() const
unsigned int quality() const
unsigned int layers() const
unsigned int type() const
Type type(const T &)
std::ostream & operator<<(std::ostream &out, const CscDataWord64 &o)