Class Reference for E1039 Core & Analysis Software
CodaInputManager.h
Go to the documentation of this file.
1 #ifndef __CODA_INPUT_MANAGER_H__
2 #define __CODA_INPUT_MANAGER_H__
3 #include <cstdlib>
4 #include <iostream>
5 #include <vector>
6 #include <map>
7 #include <string>
8 
10  static const int buflen = 500000;
11  int m_verb;
12  bool m_online; //< True if the decoder runs in the online mode.
13  bool m_go_end;
14  int m_handle; //< Handler for evio
15  int m_run;
16  std::string m_fname;
17  long int m_file_size;
18  int m_event_count;
19  int m_event_words[buflen];
20 
21  public:
23  virtual ~CodaInputManager() {;}
24 
25  void SetVerbosity(const int verb) { m_verb = verb; }
26  void SetRunNumber(const int run ) { m_run = run ; }
27  void SetOnline (const bool val) { m_online = val; }
28  void ForceEnd () { m_go_end = true; }
29  bool IsEnded () { return m_go_end; }
30 
31  int OpenFile(const std::string fname, const long file_size_min=0, const int sec_wait=10, const int n_wait=0);
32  int CloseFile();
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);
35 
36  private:
37  bool file_exists(const std::string fname);
38 };
39 
40 //
41 // Event Type Codes
42 //
43 enum { PHYSICS_EVENT = 0x10cc };
44 enum { CODA_EVENT = 0x01cc };
45 enum { FEE_PREFIX = 0x0100 };
46 enum { PRESTART_EVENT = 0x001101cc };
47 enum { GO_EVENT = 0x001201cc };
48 enum { END_EVENT = 0x001401cc };
49 enum { FEE_EVENT = 0x00840100 };
50 
51 enum { STANDARD_PHYSICS = 14 }; //
52 enum { FLUSH_EVENTS = 10 }; // previous IGNORE_ME type
53 enum { SLOW_CONTROL = 130 };
54 enum { RUN_DESCRIPTOR = 140 };
55 enum { PRESTART_INFO = 150 }; // 132 = 0x84. Was 150 in E906?
56 enum { BEGIN_SPILL = 11 };
57 enum { END_SPILL = 12 };
58 enum { SPILL_COUNTER = 129 };
59 
60 //
61 // Helper function
62 // These are not in CodaInputManager for easier call.
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);
67 
68 void Abort(const char* message);
69 void PrintWords(int* words, int idx_begin, int idx_end, int idx_atte=-1);
70 void PrintCodaEventSummary(int* words);
71 
72 #endif // __CODA_INPUT_MANAGER_H__
@ FEE_PREFIX
@ FLUSH_EVENTS
int get_hex_bit(unsigned int hexNum, int numBitFromRight)
int get_bin_bit(unsigned int binNum, int numBitFromRight)
void PrintCodaEventSummary(int *words)
@ SLOW_CONTROL
@ END_EVENT
@ PHYSICS_EVENT
int get_hex_bits(unsigned int hexNum, int numBitFromRight, int numBits)
@ END_SPILL
@ CODA_EVENT
void Abort(const char *message)
@ BEGIN_SPILL
@ PRESTART_INFO
@ GO_EVENT
@ RUN_DESCRIPTOR
@ FEE_EVENT
@ PRESTART_EVENT
@ STANDARD_PHYSICS
int get_bin_bits(unsigned int binNum, int numBitFromRight, int numBits)
void PrintWords(int *words, int idx_begin, int idx_end, int idx_atte=-1)
@ SPILL_COUNTER
int OpenFile(const std::string fname, const long file_size_min=0, const int sec_wait=10, const int n_wait=0)
bool JumpCodaEvent(unsigned int &event_count, int *&event_words, const unsigned int n_evt)
void SetVerbosity(const int verb)
virtual ~CodaInputManager()
void SetOnline(const bool val)
bool NextCodaEvent(unsigned int &event_count, int *&event_words)
void SetRunNumber(const int run)