Class Reference for E1039 Core & Analysis Software
ParamRunRange.h
Go to the documentation of this file.
1 #ifndef __PARAM_RUN_RANGE_H__
2 #define __PARAM_RUN_RANGE_H__
3 #include <iostream>
4 #include <vector>
5 #include <string>
6 
7 class ParamRunRange {
8  struct RangeItem {
9  int run_b;
10  int run_e;
11  std::string map_id;
12  };
13  typedef std::vector<RangeItem> RangeList;
14  RangeList m_list;
15 
16  public:
19  void Add(const int run_b, const int run_e, const std::string map_id);
20  bool Find(const std::string map_id);
21  std::string Find(const int run, const bool exit_on_error=true);
22 
23  void ReadFromFile(const std::string fn_tsv);
24  void ReadFromDB (const std::string schema);
25  void WriteToDB (const std::string schema);
26 };
27 
28 #endif // __PARAM_RUN_RANGE_H__
void ReadFromDB(const std::string schema)
void WriteToDB(const std::string schema)
void Add(const int run_b, const int run_e, const std::string map_id)
bool Find(const std::string map_id)
void ReadFromFile(const std::string fn_tsv)