1
2
3
4
5
6
7
8
9
10
11
12
|
#include "DataFormats/L1TMuon/interface/OMTF/OmtfCscDataWord64.h"
namespace omtf {
std::ostream &operator<<(std::ostream &out, const CscDataWord64 &o) {
out << "CscDataWord64: "
<< " type: " << DataWord64::type(o.type()) << " val: " << o.valid() << " bx: " << o.bxNum()
<< " lnk: " << o.linkNum() << " stat: " << o.station() << " cscId: " << o.cscID() << " hit: " << o.hitNum()
<< " qual: " << o.quality() << " patt: " << o.clctPattern() << " bending: " << o.bend()
<< " hs: " << o.halfStrip() << " wg: " << o.wireGroup();
return out;
}
} // namespace omtf
|