Class Reference for E1039 Core & Analysis Software
DecoStatusDb.h
Go to the documentation of this file.
1 #ifndef _DECO_STATUS_DB__H_
2 #define _DECO_STATUS_DB__H_
3 class DbSvc;
4 
5 class DecoStatusDb {
6  typedef enum {
7  UNKNOWN = 0,
8  STARTED = 1,
9  FINISHED = 2,
10  UPDATED = 3
11  } Status_t;
12 
13  std::string m_name_table;
14  DbSvc* m_db;
15 
16  //typedef std::map<std::string, int> StatusMap_t;
17  //StatusMap_t m_stat_map;
18 
19  public:
20  DecoStatusDb();
21  virtual ~DecoStatusDb();
22 
23  void InitTable(const bool refresh=false);
24  void RunStarted (const int run, int utime=0);
25  void RunUpdated (const int run, int utime=0);
26  void RunFinished(const int run, const int result, int utime=0);
27 };
28 
29 #endif /* _DECO_STATUS_DB__H_ */
Standard interface with SQL database.
Definition: DbSvc.h:15
void RunFinished(const int run, const int result, int utime=0)
Definition: DecoStatusDb.cc:80
virtual ~DecoStatusDb()
Definition: DecoStatusDb.cc:20
void InitTable(const bool refresh=false)
Definition: DecoStatusDb.cc:25
void RunUpdated(const int run, int utime=0)
Definition: DecoStatusDb.cc:68
void RunStarted(const int run, int utime=0)
Definition: DecoStatusDb.cc:49