Class Reference for E1039 Core & Analysis Software
CalibParamInTimeTaiwan.h
Go to the documentation of this file.
1 #ifndef __CALIB_PARAM_IN_TIME_TAIWAN_H__
2 #define __CALIB_PARAM_IN_TIME_TAIWAN_H__
3 #include "RunParamBase.h"
4 
6  struct ParamItem {
7  std::string det_name;
8  short det;
9  short ele;
10  double center;
11  double width;
12  };
13  typedef std::vector<ParamItem> List_t;
14  List_t m_list;
15 
16  typedef std::pair<short, short> DetEle_t;
17  typedef std::pair<double, double> CenterWidth_t;
18  typedef std::map<DetEle_t, CenterWidth_t> Map_t;
19  Map_t m_map;
20 
21  public:
24 
25  void Add(const std::string det , const short ele, const double center, const double width);
26  void Add(const std::string det_name, const short det_id, const short ele, const double center, const double width);
27 
28  bool Find(const short det, const short ele, double& center, double& width);
29  void Print(std::ostream& os);
30 
31  protected:
32  int ReadFileCont(LineList& lines);
33  int WriteFileCont(std::ostream& os);
34 
35  void ReadDbTable(DbSvc& db);
36  void WriteDbTable(DbSvc& db);
37 };
38 
39 #endif // __CALIB_PARAM_IN_TIME_TAIWAN_H__
void Add(const std::string det, const short ele, const double center, const double width)
void Print(std::ostream &os)
int WriteFileCont(std::ostream &os)
int ReadFileCont(LineList &lines)
bool Find(const short det, const short ele, double &center, double &width)
Standard interface with SQL database.
Definition: DbSvc.h:15
std::vector< std::string > LineList
Definition: RunParamBase.h:51