#include "RawData/RawBlockProxy.h"#include "MessageService/MsgService.h"#include "RawData/RawDataBlock.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: RawBlockProxy.cxx,v 1.4 2002/07/13 15:43:09 rhatcher Exp $") | |
| ostream & | operator<< (ostream &os, const RawBlockProxy &rbp) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 17 of file RawBlockProxy.cxx. References RawBlockProxy::GetMajorId(), RawBlockProxy::GetName(), and RawBlockProxy::IsDCS(). 00018 {
00019 os << " "
00020 << ((rbp.IsDCS()) ? "DCS" : "DAQ") << " "
00021 << "0x" << hex << setw(4) << setfill('0')
00022 << rbp.GetMajorId()
00023 << setfill(' ') << dec
00024 << " (" << setw(5) << rbp.GetMajorId() << ") "
00025 << rbp.GetName() << " ";
00026
00027 return os;
00028 }
|
1.3.9.1