#include <iostream>
#include <DataFormats/MuonDetId/interface/DTLayerId.h>
#include <FWCore/Utilities/interface/Exception.h>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const DTLayerId &id) |
Definition in file DTLayerId.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const DTLayerId & | id | |||
) |
Definition at line 84 of file DTLayerId.cc.
00084 { 00085 os << " Wh:"<< id.wheel() 00086 << " St:"<< id.station() 00087 << " Se:"<< id.sector() 00088 << " Sl:"<< id.superlayer() 00089 << " La:"<< id.layer() 00090 <<" "; 00091 00092 return os; 00093 }