#include "SimCalorimetry/HcalSimAlgos/interface/HPDNoiseDataFrame.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &fStream, const HPDNoiseDataFrame &fFrame) |
printout |
std::ostream& operator<< | ( | std::ostream & | fStream, | |
const HPDNoiseDataFrame & | fFrame | |||
) |
printout
Definition at line 18 of file HPDNoiseDataFrame.cc.
References HPDNoiseDataFrame::charge(), FRAMESIZE, i, and HPDNoiseDataFrame::id().
00018 { 00019 fStream << fFrame.id(); 00020 for (size_t i = 0; i < FRAMESIZE; ++i) fStream << ' ' << i << ':' << fFrame.charge (i); 00021 return fStream; 00022 }