AlcapDAQ
1
|
Go to the source code of this file.
Data Structures | |
struct | io_buffer |
struct | huffman_table |
struct | rle_state |
Typedefs | |
typedef struct io_buffer | io_buffer |
typedef struct huffman_node | huffman_node |
typedef struct huffman_table | huffman_table |
typedef struct rle_state | rle_state |
typedef struct tdc400_word | tdc400_word |
typedef struct stack_elt | stack_elt |
typedef struct caen_word | caen_word |
typedef struct channel_hit | channel_hit |
typedef union comp_word | comp_word |
typedef struct fadc_word | fadc_word |
typedef struct nfadc_word | nfadc_word |
typedef struct n2fadc_tpc_word | n2fadc_tpc_word |
typedef struct n2fadc_ndet_word | n2fadc_ndet_word |
typedef int(* | expand_fcn )(unsigned char *input, int input_size, void *output, int userParam) |
Functions | |
void | start_output_buffer (io_buffer *buffer, unsigned char *p) |
int | flush_output_buffer (io_buffer *buffer) |
void | io_buffer_put (io_buffer *buffer, unsigned int code_bits, int code_length) |
void | start_input_buffer (io_buffer *buffer, unsigned char *p) |
unsigned int | io_buffer_get (io_buffer *buffer, int num_bits) |
void | huffman_put_symbol (huffman_table *table, io_buffer *buffer, int symbol) |
int | huffman_get_symbol (huffman_table *table, io_buffer *buffer) |
BOOL | huffman_optimize_tree (huffman_table *table) |
void | huffman_init_default (huffman_table *table, int num_symbols) |
BOOL | save_huffman (char *key_dir, huffman_table *table) |
BOOL | load_huffman (char *key_dir, huffman_table *table) |
void | rle_bits_setup () |
void | rle_put (unsigned char b, rle_state *s, io_buffer *output) |
int | flush_rle (rle_state *s, io_buffer *output) |
int | rle_get (io_buffer *input, rle_state *s) |
void | tdc400_load () |
void | tdc400_optimize () |
int | tdc400_compress (tdc400_word *input, int input_size, unsigned char *output, int userParam) |
int | tdc400_expand (unsigned char *input, int input_size, tdc400_word *output, int userParam) |
void | stck_load () |
void | stck_optimize () |
int | stck_compress (stack_elt *input, int input_size, unsigned char *output, int userParam) |
int | stck_expand (unsigned char *input, int input_size, stack_elt *output, int userParam) |
void | comp_load () |
void | comp_optimize () |
int | caen_compress (caen_word *input, int input_size, unsigned char *output, int userParam) |
int | caen_expand (unsigned char *input, int input_size, caen_word *output, int userParam) |
void | hits_load () |
void | hits_optimize () |
int | hits_compress (channel_hit *input, int input_size, unsigned char *output, int userParam) |
int | hits_expand (unsigned char *input, int input_size, channel_hit *output, int userParam) |
void | caen_load () |
void | caen_optimize () |
int | cmp_compress (comp_word *input, int input_size, unsigned char *output, int userParam) |
int | cmp_expand (unsigned char *input, int input_size, comp_word *output, int userParam) |
void | fadc_load () |
void | fadc_optimize () |
int | fadc_compress (fadc_word *input, int input_size, unsigned char *output, int userParam) |
int | fadc_expand (unsigned char *input, int input_size, fadc_word *output, int userParam) |
void | nfadc_load () |
void | nfadc_optimize () |
int | nfadc_compress (unsigned char *input, int input_size, unsigned char *output, int userParam) |
int | nfadc_expand (unsigned char *input, int input_size, unsigned char *output, int userParam) |
void | n2fadc_tpc_load () |
void | n2fadc_tpc_optimize () |
int | n2fadc_tpc_compress (unsigned char *input, int input_size, unsigned char *output, int userParam) |
int | n2fadc_tpc_expand (unsigned char *input, int input_size, unsigned char *output, int userParam) |
void | n2fadc_ndet_load () |
void | n2fadc_ndet_optimize () |
int | n2fadc_ndet_compress (unsigned char *input, int input_size, unsigned char *output, int userParam) |
int | n2fadc_ndet_expand (unsigned char *input, int input_size, unsigned char *output, int userParam) |
int | read_midas_event (FILE *fp, char *pevent) |
void | compress_event (void *input_event, void *output_event, bool USE_OLD_COMPRESSION=false) |
void | compress_event_skim (void *input_event, void *output_event, bool keep_etc, bool USE_OLD_COMPRESSION=false) |
void | expand_event (void *input_event, void *output_event, bool USE_OLD_COMPRESSION=false) |
void | expand_bank (unsigned char *input_data, int input_size, void *output_event, char *output_name, expand_fcn f, int userParam) |
void | compress_load_all (bool USE_OLD_COMPRESSION=false) |
void | compress_optimize_all (bool USE_OLD_COMPRESSION=false) |
Definition at line 81 of file mucap_compress.h.
typedef struct channel_hit channel_hit |
Definition at line 93 of file mucap_compress.h.
Definition at line 102 of file mucap_compress.h.
typedef int(* expand_fcn)(unsigned char *input, int input_size, void *output, int userParam) |
Definition at line 164 of file mucap_compress.h.
Definition at line 114 of file mucap_compress.h.
typedef struct huffman_node huffman_node |
Definition at line 20 of file mucap_compress.h.
typedef struct huffman_table huffman_table |
typedef struct n2fadc_ndet_word n2fadc_ndet_word |
Definition at line 150 of file mucap_compress.h.
typedef struct n2fadc_tpc_word n2fadc_tpc_word |
Definition at line 139 of file mucap_compress.h.
typedef struct nfadc_word nfadc_word |
Definition at line 126 of file mucap_compress.h.
Definition at line 70 of file mucap_compress.h.
typedef struct tdc400_word tdc400_word |
Definition at line 56 of file mucap_compress.h.
int caen_compress | ( | caen_word * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 117 of file caen_compress.cpp.
References encode_caen(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event().
int caen_expand | ( | unsigned char * | input, |
int | input_size, | ||
caen_word * | output, | ||
int | userParam | ||
) |
Definition at line 219 of file caen_compress.cpp.
References decode_caen(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void caen_load | ( | ) |
Definition at line 25 of file caen_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_caen, should_strip_r1, should_strip_trailing_edge, size, and TRUE.
Referenced by compress_load_all().
void caen_optimize | ( | ) |
Definition at line 19 of file caen_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_all().
int cmp_compress | ( | comp_word * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 133 of file comp_compress.cpp.
References encode_cmp_bits(), encode_cmp_times(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event().
int cmp_expand | ( | unsigned char * | input, |
int | input_size, | ||
comp_word * | output, | ||
int | userParam | ||
) |
Definition at line 243 of file comp_compress.cpp.
References decode_cmp_bits(), decode_cmp_times(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void comp_load | ( | ) |
Definition at line 29 of file comp_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_comp, size, and TRUE.
Referenced by compress_load_all().
void comp_optimize | ( | ) |
Definition at line 18 of file comp_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_all().
void compress_event | ( | void * | input_event, |
void * | output_event, | ||
bool | USE_OLD_COMPRESSION = false |
||
) |
Definition at line 69 of file overall.cpp.
References caen_compress(), cmp_compress(), compress_bank(), fadc_compress(), n2fadc_ndet_compress(), n2fadc_tpc_compress(), nfadc_compress(), printf(), should_compress_caen, should_compress_comp, should_compress_fadc, should_compress_n2fadc_ndet, should_compress_n2fadc_tpc, should_compress_nfadc, should_compress_tdc400, sprintf(), and tdc400_compress().
Referenced by eb_user(), and main().
void compress_event_skim | ( | void * | input_event, |
void * | output_event, | ||
bool | keep_etc, | ||
bool | USE_OLD_COMPRESSION = false |
||
) |
Definition at line 160 of file overall.cpp.
References compress_bank(), fadc_compress(), hits_compress(), n2fadc_ndet_compress(), n2fadc_tpc_compress(), nfadc_compress(), should_compress_n2fadc_ndet, should_compress_n2fadc_tpc, should_compress_nfadc, sprintf(), and stck_compress().
void compress_load_all | ( | bool | USE_OLD_COMPRESSION = false ) |
Definition at line 373 of file overall.cpp.
References caen_load(), comp_load(), fadc_load(), hits_load(), n2fadc_ndet_load(), n2fadc_tpc_load(), nfadc_load(), stck_load(), and tdc400_load().
Referenced by eb_begin_of_run(), main(), MUnCompressRawData_init(), and process_file().
void compress_optimize_all | ( | bool | USE_OLD_COMPRESSION = false ) |
Definition at line 390 of file overall.cpp.
References caen_optimize(), comp_optimize(), fadc_optimize(), n2fadc_ndet_optimize(), n2fadc_tpc_optimize(), nfadc_optimize(), and tdc400_optimize().
Referenced by main().
void expand_bank | ( | unsigned char * | input_data, |
int | input_size, | ||
void * | output_event, | ||
char * | output_name, | ||
expand_fcn | f, | ||
int | userParam | ||
) |
void expand_event | ( | void * | input_event, |
void * | output_event, | ||
bool | USE_OLD_COMPRESSION = false |
||
) |
Definition at line 283 of file overall.cpp.
References caen_expand(), cmp_expand(), expand_bank(), fadc_expand(), hits_expand(), n2fadc_ndet_expand(), n2fadc_tpc_expand(), nfadc_expand(), sprintf(), stck_expand(), and tdc400_expand().
Referenced by main(), MUnCompressRawData(), and process_file().
int fadc_compress | ( | fadc_word * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 92 of file fadc_compress.cpp.
References encode_fadc(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event(), and compress_event_skim().
int fadc_expand | ( | unsigned char * | input, |
int | input_size, | ||
fadc_word * | output, | ||
int | userParam | ||
) |
Definition at line 165 of file fadc_compress.cpp.
References decode_fadc(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void fadc_load | ( | ) |
Definition at line 29 of file fadc_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_fadc, size, and TRUE.
Referenced by compress_load_all().
void fadc_optimize | ( | ) |
Definition at line 20 of file fadc_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_all().
int flush_output_buffer | ( | io_buffer * | buffer) |
Definition at line 23 of file io_buffer.cpp.
References io_buffer::num_codes, io_buffer::p, io_buffer::start, io_buffer::w, and io_buffer::w_bits.
Referenced by encode_caen(), encode_cmp_times(), encode_fadc(), encode_hits(), encode_n2fadc_ndet(), encode_n2fadc_tpc(), encode_nfadc(), encode_times(), and flush_rle().
Definition at line 103 of file rle.cpp.
References flush_output_buffer(), rle_state::huffman, rle_state::huffman_length, huffman_put_symbol(), io_buffer_put(), rle_state::run_length, and rle_state::running_digit.
Referenced by encode_bits(), and encode_cmp_bits().
int hits_compress | ( | channel_hit * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 77 of file hits_compress.cpp.
References encode_hits(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event_skim().
int hits_expand | ( | unsigned char * | input, |
int | input_size, | ||
channel_hit * | output, | ||
int | userParam | ||
) |
Definition at line 148 of file hits_compress.cpp.
References decode_hits(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void hits_load | ( | ) |
Definition at line 24 of file hits_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_hits, size, and TRUE.
Referenced by compress_load_all().
void hits_optimize | ( | ) |
Definition at line 18 of file hits_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_skim().
int huffman_get_symbol | ( | huffman_table * | table, |
io_buffer * | buffer | ||
) |
Definition at line 87 of file huffman.cpp.
References huffman_node::branch0, huffman_node::branch1, huffman_table::code_length, huffman_table::decode_symbols, io_buffer::num_codes, io_buffer::p, huffman_node::symbol, huffman_table::tree, io_buffer::w, and io_buffer::w_bits.
Referenced by decode_caen(), decode_cmp_times(), decode_fadc(), decode_hits(), decode_times(), and rle_get().
void huffman_init_default | ( | huffman_table * | table, |
int | num_symbols | ||
) |
Definition at line 305 of file huffman.cpp.
References huffman_table::code_bits, huffman_table::code_length, huffman_table::frequency, huffman_optimize_tree(), i, huffman_table::num_symbols, and huffman_table::tree.
Referenced by caen_load(), comp_load(), fadc_load(), hits_load(), stck_load(), and tdc400_load().
BOOL huffman_optimize_tree | ( | huffman_table * | table) |
Definition at line 200 of file huffman.cpp.
References huffman_node::branch0, huffman_node::branch1, huffman_table::code_length, huffman_table::frequency, huffman_node::frequency, huffman_node_compare(), huffman_precompute_decode(), huffman_visit(), i, huffman_node::next, huffman_table::num_symbols, SUCCESS, huffman_node::symbol, and huffman_table::tree.
Referenced by caen_optimize(), comp_optimize(), fadc_optimize(), hits_optimize(), huffman_init_default(), stck_optimize(), and tdc400_optimize().
void huffman_put_symbol | ( | huffman_table * | table, |
io_buffer * | buffer, | ||
int | symbol | ||
) |
Definition at line 28 of file huffman.cpp.
References huffman_table::code_bits, huffman_table::code_length, huffman_table::frequency, io_buffer_put(), io_buffer::num_codes, and huffman_node::symbol.
Referenced by encode_caen(), encode_cmp_times(), encode_fadc(), encode_hits(), encode_times(), flush_rle(), and rle_put().
unsigned int io_buffer_get | ( | io_buffer * | buffer, |
int | num_bits | ||
) |
Definition at line 70 of file io_buffer.cpp.
References io_buffer_get(), io_buffer::p, io_buffer::w, and io_buffer::w_bits.
Referenced by decode_caen(), decode_cmp_times(), decode_fadc(), decode_hits(), decode_n2fadc_ndet(), decode_n2fadc_tpc(), decode_nfadc(), decode_times(), io_buffer_get(), and rle_get().
void io_buffer_put | ( | io_buffer * | buffer, |
unsigned int | code_bits, | ||
int | code_length | ||
) |
Definition at line 36 of file io_buffer.cpp.
References io_buffer::p, io_buffer::w, and io_buffer::w_bits.
Referenced by encode_caen(), encode_cmp_times(), encode_fadc(), encode_hits(), encode_n2fadc_ndet(), encode_n2fadc_tpc(), encode_nfadc(), encode_times(), flush_rle(), huffman_put_symbol(), and rle_put().
BOOL load_huffman | ( | char * | key_dir, |
huffman_table * | table | ||
) |
Definition at line 429 of file huffman.cpp.
References huffman_table::code_bits, huffman_table::code_length, FALSE, huffman_table::frequency, hDB, huffman_build_tree(), i, huffman_table::num_symbols, size, sprintf(), and SUCCESS.
Referenced by caen_load(), comp_load(), fadc_load(), hits_load(), stck_load(), and tdc400_load().
int n2fadc_ndet_compress | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 97 of file n2fadc_ndet_compress.cpp.
References encode_n2fadc_ndet(), and start_output_buffer().
Referenced by compress_event(), and compress_event_skim().
int n2fadc_ndet_expand | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 166 of file n2fadc_ndet_compress.cpp.
References decode_n2fadc_ndet(), and start_input_buffer().
Referenced by expand_event().
void n2fadc_ndet_load | ( | ) |
Definition at line 24 of file n2fadc_ndet_compress.cpp.
References hDB, should_compress_n2fadc_ndet, size, and TRUE.
Referenced by compress_load_all().
void n2fadc_ndet_optimize | ( | ) |
Definition at line 20 of file n2fadc_ndet_compress.cpp.
Referenced by compress_optimize_all().
int n2fadc_tpc_compress | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 104 of file n2fadc_tpc_compress.cpp.
References encode_n2fadc_tpc(), and start_output_buffer().
Referenced by compress_event(), and compress_event_skim().
int n2fadc_tpc_expand | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 172 of file n2fadc_tpc_compress.cpp.
References decode_n2fadc_tpc(), and start_input_buffer().
Referenced by expand_event().
void n2fadc_tpc_load | ( | ) |
Definition at line 24 of file n2fadc_tpc_compress.cpp.
References hDB, should_compress_n2fadc_tpc, size, and TRUE.
Referenced by compress_load_all().
void n2fadc_tpc_optimize | ( | ) |
Definition at line 20 of file n2fadc_tpc_compress.cpp.
Referenced by compress_optimize_all().
int nfadc_compress | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 108 of file nfadc_compress.cpp.
References encode_nfadc(), and start_output_buffer().
Referenced by compress_event(), and compress_event_skim().
int nfadc_expand | ( | unsigned char * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 181 of file nfadc_compress.cpp.
References decode_nfadc(), and start_input_buffer().
Referenced by expand_event().
void nfadc_load | ( | ) |
Definition at line 24 of file nfadc_compress.cpp.
References hDB, should_compress_nfadc, size, and TRUE.
Referenced by compress_load_all().
void nfadc_optimize | ( | ) |
int read_midas_event | ( | FILE * | fp, |
char * | pevent | ||
) |
Definition at line 24 of file overall.cpp.
References data_size, le32_to_cpu, and SUCCESS.
Referenced by main().
void rle_bits_setup | ( | ) |
Definition at line 41 of file rle.cpp.
References i, num_leading_0, num_leading_1, num_leading_bits(), ones, and rle_bits_setup_done.
Referenced by caen_compress(), caen_expand(), cmp_compress(), cmp_expand(), fadc_compress(), fadc_expand(), hits_compress(), hits_expand(), stck_compress(), stck_expand(), tdc400_compress(), and tdc400_expand().
Definition at line 117 of file rle.cpp.
References rle_state::huffman, huffman_get_symbol(), rle_state::huffman_length, io_buffer_get(), ones, rle_state::run_length, and rle_state::running_digit.
Referenced by decode_bits(), and decode_cmp_bits().
Definition at line 66 of file rle.cpp.
References rle_state::huffman, rle_state::huffman_length, huffman_put_symbol(), io_buffer_put(), num_leading_0, num_leading_1, rle_state::run_length, rle_state::running_digit, and rle_state::use_extension_word.
Referenced by encode_bits(), and encode_cmp_bits().
BOOL save_huffman | ( | char * | key_dir, |
huffman_table * | table | ||
) |
Definition at line 321 of file huffman.cpp.
References huffman_table::code_bits, huffman_table::code_length, huffman_table::frequency, hDB, huffman_table::num_symbols, size, sprintf(), and SUCCESS.
Referenced by caen_optimize(), comp_optimize(), fadc_optimize(), hits_optimize(), stck_optimize(), and tdc400_optimize().
void start_input_buffer | ( | io_buffer * | buffer, |
unsigned char * | p | ||
) |
Definition at line 61 of file io_buffer.cpp.
References io_buffer::num_codes, io_buffer::p, io_buffer::start, io_buffer::w, and io_buffer::w_bits.
Referenced by caen_expand(), cmp_expand(), fadc_expand(), hits_expand(), n2fadc_ndet_expand(), n2fadc_tpc_expand(), nfadc_expand(), stck_expand(), and tdc400_expand().
void start_output_buffer | ( | io_buffer * | buffer, |
unsigned char * | p | ||
) |
Definition at line 14 of file io_buffer.cpp.
References io_buffer::num_codes, io_buffer::p, io_buffer::start, io_buffer::w, and io_buffer::w_bits.
Referenced by caen_compress(), cmp_compress(), fadc_compress(), hits_compress(), n2fadc_ndet_compress(), n2fadc_tpc_compress(), nfadc_compress(), stck_compress(), and tdc400_compress().
int stck_compress | ( | stack_elt * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 220 of file stck_compress.cpp.
References encode_bits(), encode_times(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event_skim().
int stck_expand | ( | unsigned char * | input, |
int | input_size, | ||
stack_elt * | output, | ||
int | userParam | ||
) |
Definition at line 269 of file stck_compress.cpp.
References decode_bits(), decode_times(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void stck_load | ( | ) |
Definition at line 32 of file stck_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_stck, size, and TRUE.
Referenced by compress_load_all().
void stck_optimize | ( | ) |
Definition at line 22 of file stck_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_skim().
int tdc400_compress | ( | tdc400_word * | input, |
int | input_size, | ||
unsigned char * | output, | ||
int | userParam | ||
) |
Definition at line 207 of file tdc400_compress.cpp.
References encode_bits(), encode_times(), rle_bits_setup(), and start_output_buffer().
Referenced by compress_event().
int tdc400_expand | ( | unsigned char * | input, |
int | input_size, | ||
tdc400_word * | output, | ||
int | userParam | ||
) |
Definition at line 255 of file tdc400_compress.cpp.
References decode_bits(), decode_times(), rle_bits_setup(), and start_input_buffer().
Referenced by expand_event().
void tdc400_load | ( | ) |
Definition at line 30 of file tdc400_compress.cpp.
References hDB, huffman_init_default(), load_huffman(), should_compress_tdc400, size, and TRUE.
Referenced by compress_load_all().
void tdc400_optimize | ( | ) |
Definition at line 19 of file tdc400_compress.cpp.
References huffman_optimize_tree(), and save_huffman().
Referenced by compress_optimize_all().
huffman_table bits_huffman[2] |
Definition at line 15 of file tdc400_compress.cpp.
huffman_table caen_channel_huffman |
Definition at line 14 of file caen_compress.cpp.
huffman_table cmp_bits_huffman[2] |
Definition at line 14 of file comp_compress.cpp.
huffman_table cmp_channel_huffman |
Definition at line 15 of file comp_compress.cpp.
huffman_table fadc_run_huffman |
Definition at line 14 of file fadc_compress.cpp.
huffman_table fadc_small_huffman |
Definition at line 15 of file fadc_compress.cpp.
HNDLE hDB |
Definition at line 11 of file mucap_compress.cpp.
BOOL should_compress_caen |
Definition at line 15 of file caen_compress.cpp.
Referenced by caen_load(), and compress_event().
BOOL should_compress_comp |
Definition at line 16 of file comp_compress.cpp.
Referenced by comp_load(), and compress_event().
BOOL should_compress_fadc |
Definition at line 16 of file fadc_compress.cpp.
Referenced by compress_event(), and fadc_load().
BOOL should_compress_n2fadc_ndet |
Definition at line 14 of file n2fadc_ndet_compress.cpp.
Referenced by compress_event(), compress_event_skim(), and n2fadc_ndet_load().
BOOL should_compress_n2fadc_tpc |
Definition at line 14 of file n2fadc_tpc_compress.cpp.
Referenced by compress_event(), compress_event_skim(), and n2fadc_tpc_load().
BOOL should_compress_nfadc |
Definition at line 14 of file nfadc_compress.cpp.
Referenced by compress_event(), compress_event_skim(), and nfadc_load().
BOOL should_compress_tdc400 |
Definition at line 17 of file tdc400_compress.cpp.
Referenced by compress_event(), and tdc400_load().
huffman_table time_huffman |
Definition at line 16 of file tdc400_compress.cpp.