Class Reference for E1039 Core & Analysis Software
ChanMapV1495.h
Go to the documentation of this file.
1 #ifndef __CHAN_MAP_V1495_H__
2 #define __CHAN_MAP_V1495_H__
3 #include <unordered_map>
4 #include "RunParamBase.h"
5 
6 class ChanMapV1495 : public ChanMapBase {
7  struct MapItem {
8  short roc;
9  int board;
10  short chan;
11  std::string det_name;
12  short det;
13  short ele;
14  short lvl;
15  };
16  typedef std::vector<MapItem> List_t;
17  List_t m_list;
18 
19  typedef std::tuple<short, short, short> DetEleLvl_t;
20  typedef std::unordered_map<RocBoardChan_t, DetEleLvl_t, RocBoardChanHash> Map_t;
21  Map_t m_map;
22 
23  public:
24  ChanMapV1495();
25  virtual ~ChanMapV1495() {;}
26 
27  void Add (const short roc, const int board, const short chan, const std::string det, const short ele, const short lvl);
28  void Add (const short roc, const int board, const short chan, const std::string det_name, const short det_id, const short ele, const short lvl);
29 
30  //bool Find(const short roc, const int board, const short chan, std::string& det, short& ele, short& lvl);
31  bool Find(const short roc, const int board, const short chan, short& det, short& ele, short& lvl);
32  void Print(std::ostream& os);
33 
34  protected:
35  int ReadFileCont(LineList& lines);
36  int WriteFileCont(std::ostream& os);
37 
38  void ReadDbTable(DbSvc& db);
39  void WriteDbTable(DbSvc& db);
40 };
41 
42 #endif // __CHAN_MAP_V1495_H__
void ReadDbTable(DbSvc &db)
Definition: ChanMapV1495.cc:47
int ReadFileCont(LineList &lines)
Definition: ChanMapV1495.cc:19
void WriteDbTable(DbSvc &db)
Definition: ChanMapV1495.cc:65
void Print(std::ostream &os)
int WriteFileCont(std::ostream &os)
Definition: ChanMapV1495.cc:36
virtual ~ChanMapV1495()
Definition: ChanMapV1495.h:25
bool Find(const short roc, const int board, const short chan, short &det, short &ele, short &lvl)
void Add(const short roc, const int board, const short chan, const std::string det, const short ele, const short lvl)
Definition: ChanMapV1495.cc:91
Standard interface with SQL database.
Definition: DbSvc.h:15
std::vector< std::string > LineList
Definition: RunParamBase.h:51