Class Reference for E1039 Core & Analysis Software
DecoError.h
Go to the documentation of this file.
1 #ifndef __DECO_ERROR_H__
2 #define __DECO_ERROR_H__
3 #include <vector>
4 //#include "assert.h"
5 class DbSvc;
6 
14 class DecoError {
15  public:
16  typedef enum {
25  V1495_0BAD = 8
27 
28  private:
29  static const int N_ROC = 33;
30 
31  int m_run_id;
32  int m_spill_id;
33  bool m_flush_has_error;
34 
35  int m_n_evt_all;
36  int m_n_evt_ng;
37  std::vector<int> m_n_err_tdc[N_ROC][N_TDC_ERROR];
38 
39  public:
40  DecoError();
41  ~DecoError() {;}
42 
43  void SetID(const int run_id, const int spill_id);
44  void SetFlushError(const bool val) { m_flush_has_error = val; }
45  bool GetFlushError() { return m_flush_has_error; }
46 
47  void InitData();
48  void CountFlush();
49  void AddTdcError(const int event, const int roc, const TdcError_t type);
50  void AggregateData();
51  void PrintData(std::ostream& os=std::cout);
52 
53  private:
54  void UpdateDbInfo(DbSvc* db);
55  void UpdateDbTdc (DbSvc* db);
56 };
57 
58 #endif // __DECO_ERROR_H__
Standard interface with SQL database.
Definition: DbSvc.h:15
void AggregateData()
Definition: DecoError.cc:48
~DecoError()
Definition: DecoError.h:41
void PrintData(std::ostream &os=std::cout)
Definition: DecoError.cc:56
void CountFlush()
Definition: DecoError.cc:35
void InitData()
Definition: DecoError.cc:24
void AddTdcError(const int event, const int roc, const TdcError_t type)
Definition: DecoError.cc:41
void SetFlushError(const bool val)
Definition: DecoError.h:44
bool GetFlushError()
Definition: DecoError.h:45
@ V1495_0BAD
Definition: DecoError.h:25
@ N_TDC_ERROR
Definition: DecoError.h:24
@ WORD_ONLY89
Definition: DecoError.h:17
@ EVT_ID_ONLY
Definition: DecoError.h:20
@ START_NOT_RISE
Definition: DecoError.h:22
@ DIRTY_FINISH
Definition: DecoError.h:23
@ START_WO_STOP
Definition: DecoError.h:21
@ WORD_OVERFLOW
Definition: DecoError.h:18
@ MULTIPLE_HEADER
Definition: DecoError.h:19
void SetID(const int run_id, const int spill_id)
Definition: DecoError.cc:18