#include <boost/cstdint.hpp>
#include <ostream>
Go to the source code of this file.
Classes | |
class | HcalTriggerPrimitiveSample |
| |
Defines | |
#define | HCALTRIGGERPRIMITIVESAMPLE_H 1 |
Functions | |
std::ostream & | operator<< (std::ostream &s, const HcalTriggerPrimitiveSample &samp) |
#define HCALTRIGGERPRIMITIVESAMPLE_H 1 |
Definition at line 2 of file HcalTriggerPrimitiveSample.h.
std::ostream& operator<< | ( | std::ostream & | s, | |
const HcalTriggerPrimitiveSample & | samp | |||
) |
Definition at line 12 of file HcalTriggerPrimitiveSample.cc.
References HcalTriggerPrimitiveSample::compressedEt(), and HcalTriggerPrimitiveSample::fineGrain().
00012 { 00013 return s << "Value=" << samp.compressedEt() << ", FG=" << samp.fineGrain(); 00014 }