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