LDMX Software
HcalElectronicsID.cxx
1#include "DetDescr/HcalElectronicsID.h"
2
3#include "DetDescr/DetectorIDInterpreter.h"
4
5namespace ldmx {
6std::ostream& operator<<(std::ostream& s, const ldmx::HcalElectronicsID& id) {
7 s << "HcalElectronics(" << id.fiber() << ',' << id.elink() << ','
8 << id.channel() << ')';
9 return s;
10}
11} // namespace ldmx
Identifies a location in the Hcal readout chain.