CMS 3D CMS Logo

Classes | Functions
CSCStripDigi.h File Reference
#include <vector>
#include <iosfwd>
#include <cstdint>

Go to the source code of this file.

Classes

class  CSCStripDigi
 

Functions

std::ostream & operator<< (std::ostream &o, const CSCStripDigi &digi)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  o,
const CSCStripDigi digi 
)

Definition at line 51 of file CSCStripDigi.cc.

References CSCStripDigi::getADCCounts(), CSCStripDigi::getStrip(), mps_fire::i, and connectstrParser::o.

51  {
52  o << " " << digi.getStrip();
53  for (size_t i = 0; i<digi.getADCCounts().size(); ++i ){
54  o <<" " <<(digi.getADCCounts())[i]; }
55  return o;
56 
57 }
std::vector< int > const & getADCCounts() const
Get ADC readings.
Definition: CSCStripDigi.h:54
int getStrip() const
Definition: CSCStripDigi.h:51