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 58 of file CSCStripDigi.cc.

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

58  {
59  o << " " << digi.getStrip();
60  for (size_t i = 0; i < digi.getADCCounts().size(); ++i) {
61  o << " " << (digi.getADCCounts())[i];
62  }
63  return o;
64 }
std::vector< int > const & getADCCounts() const
Get ADC readings.
Definition: CSCStripDigi.h:44
int getStrip() const
Definition: CSCStripDigi.h:41