Belle II Software  release-05-02-19
h2m.h
1 /* h2m.h */
2 
3 
4 #ifndef H2M_H
5 #define H2M_H
6 
7 
8 struct h2m_header_t {
9  unsigned int h_n_words; /* network byte order */
10  unsigned int h_n_words_in_header; /* network byte order */
11  unsigned int h_hltout_id;
12  unsigned int h_reserved[1];
13  unsigned int h_marker; /* 0x5f5f5f5f */
14 };
15 
16 
17 struct h2m_footer_t {
18  unsigned int f_reserved[2];
19  unsigned int f_checksum; /* checksum (currently 0) */
20  unsigned int f_marker; /* 0xa0a0a0a0 */
21 };
22 
23 
24 #endif /* H2M_H */
25 
h2m_header_t
Definition: h2m.h:8