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