Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:12

0001 #include "TBDataFormats/EcalTBObjects/interface/EcalTBHodoscopePlaneRawHits.h"
0002 
0003 std::ostream& operator<<(std::ostream& s, const EcalTBHodoscopePlaneRawHits& planeHits) {
0004   s << "Number of channels: " << planeHits.channels() << std::endl;
0005   for (unsigned int i = 0; i < planeHits.channels(); i++)
0006     s << "Channel " << i << ": " << (int)planeHits[i] << std::endl;
0007   return s;
0008 }