#include <iostream>
#include <DataFormats/MuonDetId/interface/DTWireId.h>
#include <FWCore/Utilities/interface/Exception.h>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const DTWireId &id) |
Definition in file DTWireId.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const DTWireId & | id | |||
) |
Definition at line 102 of file DTWireId.cc.
00102 { 00103 00104 os << " Wh:"<< id.wheel() 00105 << " St:"<< id.station() 00106 << " Se:"<< id.sector() 00107 << " Sl:"<< id.superlayer() 00108 << " La:"<< id.layer() 00109 << " Wi:"<< id.wire() 00110 <<" "; 00111 00112 return os; 00113 }