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