StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
rcfEventList.h
1 #ifndef RCFEVENTLIST_H
2 #define RCFEVENTLIST_H
3 
4 #define RCF_MAX_EVENTS 1000
5 
6 struct rcfEvent
7 {
8  int size;
9  char *ptr; /* This is calculated from shm + offset */
10 };
11 
13 {
14  struct rcfEvent event[RCF_MAX_EVENTS];
15  int size;
16  int nEvts;
17  char filename[255];
18  int append;
19 };
20 
21 #endif
22