Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _FED_TRAILER_H
00013 #define _FED_TRAILER_H
00014
00015 #ifdef __cplusplus
00016 extern "C" {
00017 #endif
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 typedef struct fedt_struct {
00032 unsigned int conscheck;
00033 unsigned int eventsize;
00034 } fedt_t ;
00035
00036
00037 #define FED_TCTRLID_MASK 0xF0000000
00038 #define FED_EVSZ_MASK 0x00FFFFFF
00039
00040 #define FED_CRCS_MASK 0xFFFF0000
00041 #define FED_STAT_MASK 0x00000F00
00042 #define FED_TTSI_MASK 0x000000F0
00043 #define FED_MORE_TRAILERS 0x00000008
00044
00045
00046 #define FED_TCTRLID 0xA0000000
00047
00048
00049 #define FED_EVSZ_SHIFT 0
00050
00051 #define FED_CRCS_SHIFT 16
00052 #define FED_STAT_SHIFT 8
00053 #define FED_TTSI_SHIFT 4
00054
00055 #ifdef __cplusplus
00056 }
00057 #endif
00058
00059 #endif
00060
00061