Functions | |
ostream & | operator<< (ostream &os, TimModule &tim) |
|
Definition at line 363 of file TimModule.cxx. Referenced by SctPixelRod::TimModule::m_vmePort().
00363 { 00364 00365 os << "TIM status" << endl; 00366 00367 os << " Serial Number: " << tim.getSerialNumber(); 00368 os << " Version: " << tim.getFirmware() << endl; 00369 hex(cout); 00370 os << " L1ID: " << tim.fetchL1ID(); 00371 os << " BCID: " << tim.regFetch( TIM_REG_TRIGGER_BCID ); 00372 os << " status: " << tim.regFetch( TIM_REG_STATUS ); 00373 os << endl; 00374 00375 return os; 00376 } |