CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/CondFormats/CSCObjects/interface/CSCDBPedestals.h File Reference

#include <iosfwd>
#include <vector>

Go to the source code of this file.

Classes

class  CSCDBPedestals
struct  CSCDBPedestals::Item

Functions

std::ostream & operator<< (std::ostream &os, const CSCDBPedestals &cscdb)

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CSCDBPedestals cscdb 
)

Definition at line 4 of file CSCDBPedestals.cc.

References i, and CSCDBPedestals::pedestals.

{
  for ( size_t i = 0; i < cscdb.pedestals.size(); ++i )
  {
    os <<  "elem: " << i << " pedestal: " << cscdb.pedestals[i].ped << " rms: " << cscdb.pedestals[i].rms << "\n";
  }
  return os;
}