Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BufferConstants.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file BufferConstants.h
1 #ifndef __BUFFER_CONSTANTS_H
2 #define __BUFFER_CONSTANTS_H
3 
4 /* the header length values */
5 #define BUFFERHEADERLENGTH 4
6 #define EOBLENGTH 4
7 #define BUFFERSIZE (1024*1024)
8 
9 #define DAQONCSFORMAT 0
10 #define DAQPRDFFORMAT 1
11 
12 #define PRDFBUFFERHEADER 0xffffffc0;
13 #define ONCSBUFFERHEADER 0xffffc0c0;
14 
15 #define BUFFERMARKER 0xffffffc0U
16 #define ONCSBUFFERMARKER 0xffffc0c0U
17 #define GZBUFFERMARKER 0xfffffafeU
18 #define LZO1XBUFFERMARKER 0xffffbbfeU
19 #define ONCSLZO1XBUFFERMARKER 0xffffbbc0U
20 
21 
22 #define BUFFERBLOCKSIZE 8192
23 
24 
25 
26 #endif