#include <iosfwd>
#include <vector>
Go to the source code of this file.
Classes | |
class | CSCDBCrosstalk |
struct | CSCDBCrosstalk::Item |
Functions | |
std::ostream & | operator<< (std::ostream &os, const CSCDBCrosstalk &cscdb) |
std::ostream& operator<< | ( | std::ostream & | os, |
const CSCDBCrosstalk & | cscdb | ||
) |
Definition at line 4 of file CSCDBCrosstalk.cc.
References CSCDBCrosstalk::crosstalk, and i.
{ for ( size_t i = 0; i < cscdb.crosstalk.size(); ++i ) { os << "elem: " << i << " R slope: " << cscdb.crosstalk[i].xtalk_slope_right << " intercept: " << cscdb.crosstalk[i].xtalk_intercept_right << " L slope: " << cscdb.crosstalk[i].xtalk_slope_left << " intercept: " << cscdb.crosstalk[i].xtalk_intercept_left << "\n"; } return os; }