CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/TBDataFormats/EcalTBObjects/src/EcalTBHodoscopePlaneRawHits.cc

Go to the documentation of this file.
00001 #include "TBDataFormats/EcalTBObjects/interface/EcalTBHodoscopePlaneRawHits.h"
00002 
00003 std::ostream& operator<<(std::ostream& s, const EcalTBHodoscopePlaneRawHits& planeHits) {
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 }