Go to the documentation of this file.00001 #include "CondFormats/CSCObjects/interface/CSCDBCrosstalk.h"
00002 #include <iostream>
00003
00004 std::ostream & operator<<(std::ostream & os, const CSCDBCrosstalk & cscdb)
00005 {
00006 for ( size_t i = 0; i < cscdb.crosstalk.size(); ++i )
00007 {
00008 os << "elem: " << i <<
00009 " R slope: " << cscdb.crosstalk[i].xtalk_slope_right <<
00010 " intercept: " << cscdb.crosstalk[i].xtalk_intercept_right <<
00011 " L slope: " << cscdb.crosstalk[i].xtalk_slope_left <<
00012 " intercept: " << cscdb.crosstalk[i].xtalk_intercept_left << "\n";
00013 }
00014 return os;
00015 }