StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
evbMemMap.h
1 #ifndef _MEMMAP_H_
2 #define _MEMMAP_H_
3 
4 //---------------------------------
5 // Currently only the PP defines...
6 //---------------------------------
7 #ifdef RTS_PROJECT_PP
8 
9 #define MAX_DET_SIZE (32*1024)
10 #define MAX_EVENT_SIZE (64*1024)
11 #define NUMBER_TCP_BUFFS 200 // 40
12 
13 #define MAX_TOKENS 1000
14 
15 #define EVB_MAX_DETS 5 // max dets in one event
16 #define EVB_MAX_BUFFS MAX_TOKENS
17 
18 #define EVB_DEFAULT_BUFF_SIZE MAX_EVENT_SIZE
19 #define EVB_SEG_SIZE (MAX_TOKENS*64*1024)
20 
21 // File sizes....
22 #define MAX_FILE_SIZE (500*1024*1024)
23 #define RCF_MAX_FILE_SIZE MAX_FILE_SIZE
24 
25 #define XING_MAX 128
26 
27 #endif // pp
28 
29 
30 #endif