#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
#include <boost/cstdint.hpp>
#include <ostream>
#include <sstream>
Go to the source code of this file.
Classes | |
class | FedChannelConnection |
More... |
|
Functions | |
std::ostream & | operator<< (std::ostream &, const FedChannelConnection &) |
Debug info for FedChannelConnection class. |
std::ostream& operator<< | ( | std::ostream & | , | |
const FedChannelConnection & | ||||
) |
Debug info for FedChannelConnection class.
Definition at line 219 of file FedChannelConnection.cc.
References FedChannelConnection::print(), and ss.
00219 { 00220 std::stringstream ss; 00221 conn.print(ss); 00222 os << ss.str(); 00223 return os; 00224 }