CMS 3D CMS Logo

CSCDBCrosstalk.cc
Go to the documentation of this file.
2 #include <iostream>
3 
4 std::ostream& operator<<(std::ostream& os, const CSCDBCrosstalk& cscdb) {
5  for (size_t i = 0; i < cscdb.crosstalk.size(); ++i) {
6  os << "elem: " << i << " R slope: " << cscdb.crosstalk[i].xtalk_slope_right
7  << " intercept: " << cscdb.crosstalk[i].xtalk_intercept_right
8  << " L slope: " << cscdb.crosstalk[i].xtalk_slope_left
9  << " intercept: " << cscdb.crosstalk[i].xtalk_intercept_left << "\n";
10  }
11  return os;
12 }
CrosstalkContainer crosstalk
std::ostream & operator<<(std::ostream &os, const CSCDBCrosstalk &cscdb)