00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 /* N.Kurz 8-Jun-1998 */ 00017 /* N.Kurz 30-May-2000 updated */ 00018 00019 #include "typedefs.h" 00020 00021 #define MO__TCP_MSG_DAQSTAT 0x101 00022 #define MO__TCP_MSG_DATREQ 0x102 00023 #define MO__TCP_MSG_ACKREQ1 0x103 00024 #define MO__TCP_MSG_ACKREQ2 0x104 00025 00026 #define MO__DATREQ_SIZE 12 00027 #define MO__ACKN1_SIZE 32 00028 00029 #define MO__N_NODE 16 00030 /* maximal nr. of ds and dr nodes each in a system */ 00031 00032 #define MO__SETUP_TAB "mo_setup" 00033 00034 #define MO__RD_PIPE_NAME "mo_read_pipe" 00035 /* generic name, will be expanded by the ds node id */ 00036 00037 #define MO__EVT_BUF_NAME "evt_buf" 00038 /* intermediate event buffer */ 00039 00040 #define RIO2__SLAVE_VME_PIPE_OFF 0x200000 00041 #define RIO2__SLAVE_VME_WIN_SIZE 0x1000000 00042 #define RIO2__PCI_OFFSET 0x80000000 00043 00044 00045 #define DLEB__TCP_INFO 0x201 00046 #define DLEB__INFO_SIZE 12 00047 #define DLEB__CONNECT_RETRY 5 00048 00049 //----------------------------END OF GO4 SOURCE FILE ---------------------