1 #ifndef __CODA_INPUT_MANAGER_H__
2 #define __CODA_INPUT_MANAGER_H__
10 static const int buflen = 500000;
19 int m_event_words[buflen];
31 int OpenFile(
const std::string fname,
const long file_size_min=0,
const int sec_wait=10,
const int n_wait=0);
33 bool JumpCodaEvent(
unsigned int& event_count,
int*& event_words,
const unsigned int n_evt);
34 bool NextCodaEvent(
unsigned int& event_count,
int*& event_words);
37 bool file_exists(
const std::string fname);
63 int get_hex_bits (
unsigned int hexNum,
int numBitFromRight,
int numBits);
64 int get_hex_bit (
unsigned int hexNum,
int numBitFromRight);
65 int get_bin_bits (
unsigned int binNum,
int numBitFromRight,
int numBits);
66 int get_bin_bit (
unsigned int binNum,
int numBitFromRight);
68 void Abort(
const char* message);
69 void PrintWords(
int* words,
int idx_begin,
int idx_end,
int idx_atte=-1);