/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #include "Event/ReadoutFecBoard.h" 00002 #include <ostream> 00003 00004 std::ostream& DayaBay::ReadoutFecBoard::fillStream(std::ostream& s) const 00005 { 00006 s << "{ " 00007 << "2of4 flag : " << std::boolalpha << m_flag2of4 00008 << ", 3of4 flag : " << m_flag3of4 << std::noboolalpha 00009 << ", Fec hitmap : " << std::hex << m_hitMap << std::dec; 00010 s << "}"; 00011 return s; 00012 } 00013 00014 00015 //DayaBay::ReadoutFecBoard::ReadoutFecBoard(const DayaBay::ReadoutFecBoard& rh) 00016 //{ 00017 //DayaBay::ReadoutFecBoard::RpcChannelReadouts channels = rh.channelReadout(); 00018 //DayaBay::ReadoutFecBoard::RpcChannelReadouts::iterator it, done = channels.end(); 00019 //for (it = channels.begin(); it != done; ++it) { 00020 //it->second.setReadoutBoard(this); 00021 //} 00022 //this->setChannelReadout(channels); 00023 //this->setReadout(rh.readout()); 00024 //this->setBoardId(rh.boardId()); 00025 //} 00026 00027 //DayaBay::ReadoutFecBoard& DayaBay::ReadoutFecBoard::operator=(const DayaBay::ReadoutFecBoard& rh) 00028 //{ 00029 //if (this == &rh) return *this; 00030 00031 //DayaBay::ReadoutFecBoard::RpcChannelReadouts channels = rh.channels(); 00032 //DayaBay::ReadoutFecBoard::RpcChannelReadouts::iterator it, done = channels.end(); 00033 //for (it = channels.begin(); it != done; ++it) { 00034 //it->second.setReadoutBoard(this); 00035 //} 00036 //this->setChannelReadout(boards); 00037 //this->setReadout(rh.readout()); 00038 //this->setBoardId(rh.boardId()); 00039 00040 //return *this; 00041 //}