Class Reference for E1039 Core & Analysis Software
NMREvent.h
Go to the documentation of this file.
1 #ifndef _NMR_EVENT__H_
2 #define _NMR_EVENT__H_
3 
4 class NMREvent {
5  static std::vector<std::string> m_list_key;
6  static std::map<std::string, int> m_map_key;
7 
8  std::string m_line;
9  std::vector<std::string> m_list_val;
10 public:
11  NMREvent() : m_line("") {;}
12  virtual ~NMREvent() {;}
13 
14  static int GetNumKey() { return m_list_key.size(); }
15  static std::string GetKey(const int idx) { return m_list_key[idx]; }
16  static void AddKey(const std::string key);
17  static int FindKey(const std::string key);
18 
19  std::string GetLine() { return m_line; }
20  void SetLine(const std::string line) { m_line = line; }
21 
22  std::string GetString(const int idx) { return m_list_val[idx]; }
23  int GetInt (const int idx) { return atoi(m_list_val[idx].c_str()); }
24  double GetDouble(const int idx) { return atof(m_list_val[idx].c_str()); }
25 
26  std::string GetString(const std::string key) { return GetString(FindKey(key)); }
27  int GetInt (const std::string key) { return GetInt (FindKey(key)); }
28  double GetDouble(const std::string key) { return GetDouble(FindKey(key)); }
29 
30  void AddValue(const std::string value) { m_list_val.push_back(value); }
31  void ClearValue() { m_list_val.clear(); }
32 };
33 
34 std::vector<std::string> NMREvent::m_list_key;
35 std::map<std::string, int> NMREvent::m_map_key;
36 
37 void NMREvent::AddKey(const std::string key)
38 {
39  m_list_key.push_back(key);
40  m_map_key[key] = m_list_key.size() - 1;
41 }
42 
43 int NMREvent::FindKey(const std::string key)
44 {
45  if (m_map_key.find(key) == m_map_key.end()) {
46  cerr << "!!ERROR!! Cannot find '" << key << "' in the key list. Abort." << endl;
47  exit(1);
48  }
49  return m_map_key[key];
50 }
51 
52 #endif // _NMR_EVENT__H_
static std::string GetKey(const int idx)
Definition: NMREvent.h:15
std::string GetLine()
Definition: NMREvent.h:19
std::string GetString(const int idx)
Definition: NMREvent.h:22
virtual ~NMREvent()
Definition: NMREvent.h:12
double GetDouble(const int idx)
Definition: NMREvent.h:24
int GetInt(const std::string key)
Definition: NMREvent.h:27
double GetDouble(const std::string key)
Definition: NMREvent.h:28
int GetInt(const int idx)
Definition: NMREvent.h:23
void ClearValue()
Definition: NMREvent.h:31
NMREvent()
Definition: NMREvent.h:11
static int GetNumKey()
Definition: NMREvent.h:14
void SetLine(const std::string line)
Definition: NMREvent.h:20
std::string GetString(const std::string key)
Definition: NMREvent.h:26
static void AddKey(const std::string key)
Definition: NMREvent.h:37
static int FindKey(const std::string key)
Definition: NMREvent.h:43
void AddValue(const std::string value)
Definition: NMREvent.h:30