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 }