#include "CondFormats/SiStripObjects/interface/FedChannelConnection.h"
#include <boost/cstdint.hpp>
#include <sstream>
#include <vector>
#include <string>
Go to the source code of this file.
Classes | |
class | SiStripFedCabling |
Contains cabling info at the device level, including DetId, APV pair numbers, hardware addresses, DCU id. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &, const SiStripFedCabling &) |
Debug info for SiStripFedCabling class. |
std::ostream& operator<< | ( | std::ostream & | , | |
const SiStripFedCabling & | ||||
) |
Debug info for SiStripFedCabling class.
Definition at line 424 of file SiStripFedCabling.cc.
References SiStripFedCabling::print(), and ss.
00424 { 00425 std::stringstream ss; 00426 cabling.print(ss); 00427 os << ss.str(); 00428 return os; 00429 }