CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/CondFormats/CSCObjects/interface/CSCDBGains.h File Reference

#include <iosfwd>
#include <vector>

Go to the source code of this file.

Classes

class  CSCDBGains
struct  CSCDBGains::Item

Functions

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

Function Documentation

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

Definition at line 4 of file CSCDBGains.cc.

References CSCDBGains::gains, and i.

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