#include <vector>
#include <iostream>
Go to the source code of this file.
Classes | |
class | CSCStripDigi |
Digi for CSC Cathode Strips. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &o, const CSCStripDigi &digi) |
std::ostream& operator<< | ( | std::ostream & | o, | |
const CSCStripDigi & | digi | |||
) | [inline] |
Definition at line 71 of file CSCStripDigi.h.
References CSCStripDigi::getADCCounts(), CSCStripDigi::getStrip(), and i.
00071 { 00072 o << " " << digi.getStrip(); 00073 for (size_t i = 0; i<digi.getADCCounts().size(); ++i ){ 00074 o <<" " <<(digi.getADCCounts())[i]; } 00075 return o; 00076 00077 }