#include <DataFormats/MuonDetId/interface/CSCDetId.h>
#include <FWCore/Utilities/interface/Exception.h>
#include <iostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const CSCDetId &id) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const CSCDetId & | id | |||
) |
Definition at line 110 of file CSCDetId.cc.
00111 { 00112 // Note that there is no endl to end the output 00113 00114 os << " E:" << id.endcap() 00115 << " S:" << id.station() 00116 << " R:" << id.ring() 00117 << " C:" << id.chamber() 00118 << " L:" << id.layer(); 00119 return os; 00120 }