CMS 3D CMS Logo

OmtfDataWord64.cc
Go to the documentation of this file.
2 
3 namespace omtf {
4 std::ostream & DataWord64::operator<< (std::ostream &out, const DataWord64::Type &o) {
5  switch(o) {
6  case(csc) : out <<"csc "; break;
7  case(rpc) : out <<"rpc "; break;
8  case(dt) : out <<"dt "; break;
9  case(omtf) : out <<"omtf"; break;
10  default : out <<"unkn"; break;
11  }
12  out<<"(0x"<<std::hex<<static_cast<int>(o)<<std::dec<<")";
13  return out;
14 }
15 }
float dt
Definition: AMPTWrapper.h:126
std::ostream & operator<<(std::ostream &out, const Type &o)
Definition: L1Track.h:19