CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/CondFormats/CSCObjects/src/CSCDBGains.cc

Go to the documentation of this file.
00001 #include "CondFormats/CSCObjects/interface/CSCDBGains.h"
00002 #include <iostream>
00003 
00004 std::ostream & operator<<(std::ostream & os, const CSCDBGains & cscdb)
00005 {
00006   for ( size_t i = 0; i < cscdb.gains.size(); ++i )
00007   {
00008     os <<  "elem: " << i << " gain_slope: " << cscdb.gains[i].gain_slope << "\n";
00009   }
00010   return os;
00011 }