CMS 3D CMS Logo

Classes | Namespaces | Typedefs | Functions

/data/refman/pasoursint/CMSSW_5_3_1/src/DataFormats/EcalDigi/interface/EcalMGPASample.h File Reference

#include <iosfwd>
#include <boost/cstdint.hpp>

Go to the source code of this file.

Classes

class  EcalMGPASample

Namespaces

namespace  ecalMGPA

Typedefs

typedef uint16_t ecalMGPA::sample_type

Functions

int ecalMGPA::adc (sample_type sample)
 get the ADC sample (12 bits)
int ecalMGPA::gainId (sample_type sample)
 get the gainId (2 bits)
std::ostream & operator<< (std::ostream &, const EcalMGPASample &)
sample_type ecalMGPA::pack (int adc, int gainId)

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const EcalMGPASample  
)

Definition at line 8 of file EcalMGPASample.cc.

References EcalMGPASample::adc(), EcalMGPASample::gainId(), and alignCSCRings::s.

                                                                  {
  s << "ADC=" << samp.adc() << ", gainId=" << samp.gainId();
  return s;
}