#include <ostream>
#include <boost/cstdint.hpp>
Go to the source code of this file.
Classes | |
class | EcalTBTDCSample |
Simple container packer/unpacker for a single sample from the TB TDC raw data. More... | |
Defines | |
#define | DIGIECAL_ECALTBTDCSAMPLE_H 1 |
Functions | |
std::ostream & | operator<< (std::ostream &, const EcalTBTDCSample &) |
#define DIGIECAL_ECALTBTDCSAMPLE_H 1 |
Definition at line 2 of file EcalTBTDCSample.h.
std::ostream& operator<< | ( | std::ostream & | , | |
const EcalTBTDCSample & | ||||
) |
Definition at line 8 of file EcalTBTDCSample.cc.
References EcalTBTDCSample::tdcChannel(), and EcalTBTDCSample::tdcValue().
00008 { 00009 s << "TDC Channel=" << samp.tdcChannel() << ", Value=" << samp.tdcValue(); 00010 return s; 00011 }