CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/DataFormats/EcalDigi/src/EEDataFrame.cc

Go to the documentation of this file.
00001 #include "DataFormats/EcalDigi/interface/EEDataFrame.h"
00002 #include<iostream>
00003 
00004 std::ostream& operator<<(std::ostream& s, const EEDataFrame& digi) {
00005   s << digi.id() << " " << digi.size() << " samples " << std::endl;
00006   for (int i=0; i<digi.size(); i++) 
00007     s << "  " << digi.sample(i) << std::endl;
00008   return s;
00009 }
00010