#include "Rotorooter/RotoServer.h"#include "Rotorooter/RotoSocket.h"#include "Rotorooter/RotoObjectifier.h"#include "OnlineUtil/msgLogLib/msgLog.h"#include "TSystem.h"#include "TServerSocket.h"#include "TString.h"#include "RawData/RawRecord.h"#include "RawData/RawDaqHeader.h"#include "RawData/RawBeamMonHeader.h"#include "RawData/RawLIAdcSummaryBlock.h"#include "RawData/RawLITimingSummaryBlock.h"#include "RawData/RawSnarlHeaderBlock.h"#include "RawData/RawDigitDataBlock.h"#include "RawData/RawDcsAlarmBlock.h"#include "RawData/RawDcsMonitorBlock.h"#include "RawData/RawBeamMonHeaderBlock.h"#include "Persistency/PerOutputStream.h"#include "Persistency/PerOutputStreamManager.h"#include "MinosObjectMap/MomNavigator.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Enumerations | |
| enum | RotoFailureMode { kSuccess = 0x00000000, kFailRecvCmd = 0x00000001, kFailRecvByteCnt = 0x00000002, kFailRecvData = 0x00000004, kFailBuffResize = 0x00000008, kFailNotToMe = 0x00000010, kFailCmdBadFrom = 0x00000020, kFailCmdUnknown = 0x00000040, kFailReqUnknown = 0x00000080, kFailBadRcType = 0x00000100, kFailOpenFile = 0x00001000, kFailCloseFile = 0x00010000, kFailRecBuffer = 0x00100000, kFailInflateBuff = 0x00200000, kFailPartialRec = 0x00400000, kFailWriteRec = 0x01000000, kFailNoCodeYet = 0x40000000, kFailWhoops = 0x80000000 } |
Functions | |
| CVSID ("$Id: RotoServer.cxx,v 1.36 2005/09/07 19:41:58 rhatcher Exp $") | |
Variables | |
| const UInt_t | dbg_ReportCmd = 0x0001 |
| const UInt_t | dbg_ReportReply = 0x0002 |
| const UInt_t | dbg_ReportHex = 0x0004 |
| const UInt_t | dbg_ReportNotTo = 0x0008 |
| string | reportOpt |
|
|
Definition at line 56 of file RotoServer.cxx. 00056 {
00057 kSuccess = 0x00000000,
00058 kFailRecvCmd = 0x00000001,
00059 kFailRecvByteCnt = 0x00000002,
00060 kFailRecvData = 0x00000004,
00061 kFailBuffResize = 0x00000008,
00062 kFailNotToMe = 0x00000010,
00063 kFailCmdBadFrom = 0x00000020,
00064 kFailCmdUnknown = 0x00000040,
00065 kFailReqUnknown = 0x00000080,
00066 kFailBadRcType = 0x00000100,
00067 kFailOpenFile = 0x00001000,
00068 kFailCloseFile = 0x00010000,
00069 kFailRecBuffer = 0x00100000,
00070 kFailInflateBuff = 0x00200000,
00071 kFailPartialRec = 0x00400000,
00072 kFailWriteRec = 0x01000000,
00073
00074 kFailNoCodeYet = 0x40000000,
00075 kFailWhoops = 0x80000000
00076 };
|
|
||||||||||||
|
|
|
|
Definition at line 39 of file RotoServer.cxx. |
|
|
Definition at line 41 of file RotoServer.cxx. |
|
|
Definition at line 42 of file RotoServer.cxx. |
|
|
Definition at line 40 of file RotoServer.cxx. |
|
|
Initial value: (RotoServer::GetDebugFlags() & dbg_ReportHex) ? "b" : " " Definition at line 47 of file RotoServer.cxx. |
1.3.9.1