#include <ostream>
#include <vector>
#include <boost/cstdint.hpp>
Go to the source code of this file.
Classes | |
class | EcalTBHodoscopePlaneRawHits |
Simple container for rawHits. More... | |
Defines | |
#define | DIGIECAL_ECALTBHODOSCOPEPLANERAWHITS_H 1 |
Functions | |
std::ostream & | operator<< (std::ostream &, const EcalTBHodoscopePlaneRawHits &) |
#define DIGIECAL_ECALTBHODOSCOPEPLANERAWHITS_H 1 |
Definition at line 2 of file EcalTBHodoscopePlaneRawHits.h.
std::ostream& operator<< | ( | std::ostream & | , | |
const EcalTBHodoscopePlaneRawHits & | ||||
) |
Definition at line 3 of file EcalTBHodoscopePlaneRawHits.cc.
References EcalTBHodoscopePlaneRawHits::channels(), lat::endl(), and i.
00003 { 00004 s << "Number of channels: " << planeHits.channels() << std::endl; 00005 for (unsigned int i=0; i<planeHits.channels(); i++) 00006 s << "Channel " << i << ": " << (int)planeHits[i] << std::endl; 00007 return s; 00008 }