Class Reference for E1039 Core & Analysis Software
MainDaqParser.h
Go to the documentation of this file.
1 #ifndef _MAIN_DAQ_PARSER_H_
2 #define _MAIN_DAQ_PARSER_H_
3 #include "DecoData.h"
4 #include "DecoParam.h"
5 #include "DecoError.h"
6 class CodaInputManager;
7 class PHTimer2;
8 
9 class MainDaqParser {
10  static const std::vector<std::string> LIST_TIMERS;
11 
12  typedef enum {
13  IDX_NONE = 0,
14  IDX_SKIP_EVENT = -1,
15  IDX_SKIP_ROC = -2,
16  IDX_SKIP_BOARD = -3
17  } SpecialWordIndex_t;
18 
19  long m_file_size_min;
20  int m_sec_wait;
21  int m_n_wait;
22  CodaInputManager* coda;
23 
25  RunData run_data;
26  SpillDataMap* list_sd;
27  EventDataMap* list_ed;
28 
29  SpillData * sd_now; //< Contain the spill info of the current spill
30  EventDataMap* list_ed_now; //< Contain the event info only in the current spill
31 
32  std::map<std::string, PHTimer2*> m_timers; // [timer name]
33  PHTimer2* m_timer_sp_input;
34  PHTimer2* m_timer_sp_decode;
35  PHTimer2* m_timer_sp_map;
36 
37  bool m_use_local_spill_id;
38  bool m_force_local_spill_id;
39 
40  // Handlers of CODA Event
41  int ProcessCodaPrestart (int* words);
42  int ProcessCodaEnd (int* words);
43  int ProcessCodaFee (int* words);
44  int ProcessCodaFeeBoard (int* words);
45  int ProcessCodaFeePrescale(int* words);
46  int ProcessCodaFeeV1495 (int* words);
47  int ProcessCodaPhysics (int* words);
48 
49  // Handlers of CODA PHYSICS Event
50  int ProcessPhysRunDesc (int* words);
51  int ProcessPhysPrestart (int* words);
52  int ProcessPhysSlow (int* words);
53  int ProcessPhysSpillCounter(int* words);
54  int ProcessPhysBOSEOS (int* words, const int event_type);
55  int ProcessPhysStdAndFlush (int* words, const int event_type);
56 
57  // Handlers of Board data in flush event
58  int ProcessBoardData (int* words, int idx, int idx_roc_end, int e906flag, const int event_type);
59  int ProcessBoardScaler (int* words, int j);
60  int ProcessBoardTriggerBit (int* words, int j, int idx_roc_end);
61  int ProcessBoardTriggerCount(int* words, int j);
62  int ProcessBoardFeeQIE (int* words, int j);
63  int ProcessBoardV1495TDC (int* words, int idx);
64  int ProcessBoardJyTDC2 (int* words, int idx_begin, int idx_roc_end);
65 
66  int ProcessBoardStdTriggerBit (int* words, int idx);
67  int ProcessBoardStdTriggerCount(int* words, int idx);
68  int ProcessBoardStdFeeQIE (int* words, int idx);
69  int ProcessBoardStdV1495TDC (int* words, int idx);
70  int ProcessBoardStdJyTDC2 (int* words, int idx_begin, int idx_roc_end);
71 
72  int PackOneSpillData();
73  int ParseOneSpill();
74  void SetEventInfo(EventInfo* evt, const int eventID);
75 
76 public:
77  typedef enum {
78  TYPE_BOS = 1,
79  TYPE_EOS = 2
81 
82  MainDaqParser();
84 
85  CodaInputManager* GetCoda() { return coda; }
86  int OpenCodaFile(const std::string fname, const long file_size_min=32768, const int sec_wait=15, const int n_wait=40);
87  bool NextPhysicsEvent(EventData*& ed, SpillData*& sd, RunData*& rd);
88  RunData* GetRunData() { return &run_data; }
89  int End();
90 
91  void UseLocalSpillID(const bool use) { m_use_local_spill_id = use; }
92  bool UseLocalSpillID() const { return m_use_local_spill_id; }
93  void ForceLocalSpillID(const bool force) { m_force_local_spill_id = force; }
94  bool ForceLocalSpillID() const { return m_force_local_spill_id; }
95 
98 };
99 
100 #endif // _MAIN_DAQ_PARSER_H_
std::map< unsigned int, EventData > EventDataMap
Definition: DecoData.h:224
std::map< unsigned int, SpillData > SpillDataMap
Definition: DecoData.h:166
RunData * GetRunData()
Definition: MainDaqParser.h:88
void ForceLocalSpillID(const bool force)
Definition: MainDaqParser.h:93
void UseLocalSpillID(const bool use)
Definition: MainDaqParser.h:91
CodaInputManager * GetCoda()
Definition: MainDaqParser.h:85
bool UseLocalSpillID() const
Definition: MainDaqParser.h:92
bool NextPhysicsEvent(EventData *&ed, SpillData *&sd, RunData *&rd)
bool ForceLocalSpillID() const
Definition: MainDaqParser.h:94
DecoError dec_err
Definition: MainDaqParser.h:97
DecoParam dec_par
Definition: MainDaqParser.h:96
int OpenCodaFile(const std::string fname, const long file_size_min=32768, const int sec_wait=15, const int n_wait=40)
Class to measure the time spent by a code block.
Definition: PHTimer2.h:17