#include <DataFormats/DetId/interface/DetId.h>
#include <iosfwd>
#include <iostream>
Go to the source code of this file.
Classes | |
class | DTChamberId |
DetUnit identifier for DT chambers. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const DTChamberId &id) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const DTChamberId & | id | |||
) |
Definition at line 69 of file DTChamberId.cc.
00069 { 00070 os << " Wh:"<< id.wheel() 00071 << " St:"<< id.station() 00072 << " Se:"<< id.sector() 00073 <<" "; 00074 00075 return os; 00076 }