CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/L1Trigger/GlobalCaloTrigger/src/L1GctUnsignedInt.h File Reference

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

Go to the source code of this file.

Classes

class  L1GctUnsignedInt< nBits >
 Definition of unsigned integer types with overflow. More...

Functions

template<int nBits>
std::ostream & operator<< (std::ostream &s, const L1GctUnsignedInt< nBits > &data)

Function Documentation

template<int nBits>
std::ostream & operator<< ( std::ostream &  s,
const L1GctUnsignedInt< nBits > &  data 
)

Definition at line 166 of file L1GctUnsignedInt.h.

References data, and alignCSCRings::s.

                                                                           {

  s << "L1GctUnsignedInt value : " << data.value();
  if (data.overFlow()) { s << " Overflow set! "; }

  return s;

}