#include "DataFormats/EcalDigi/interface/EBDataFrame.h"
#include <iostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const EBDataFrame &digi) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const EBDataFrame & | digi | |||
) |
Definition at line 5 of file EBDataFrame.cc.
References lat::endl(), i, EBDataFrame::id(), and EcalDataFrame::size().
00005 { 00006 s << digi.id() << " " << digi.size() << " samples " << std::endl; 00007 for (int i=0; i<digi.size(); i++) 00008 s << " " << digi[i] << std::endl; 00009 return s; 00010 }