#include "CalibFormats/CaloObjects/interface/IntegerCaloSamples.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const IntegerCaloSamples &samples) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const IntegerCaloSamples & | samples | |||
) |
Definition at line 16 of file IntegerCaloSamples.cc.
References lat::endl(), i, IntegerCaloSamples::id(), DetId::rawId(), and IntegerCaloSamples::size().
00016 { 00017 s << "DetId=" << samples.id().rawId(); 00018 s << ", "<< samples.size() << "samples" << std::endl; 00019 for (int i=0; i<samples.size(); i++) 00020 s << i << ":" << samples[i] << std::endl; 00021 return s; 00022 }