Class Reference for E1039 Core & Analysis Software
NMRDataManager.h
Go to the documentation of this file.
1 #ifndef _NMR_DATA_MANAGER__H_
2 #define _NMR_DATA_MANAGER__H_
3 #include "NMRUtil.h"
4 #include "NMREvent.h"
5 #include "NMRSignal.h"
6 
8  int m_verb;
9  std::string m_dir_base;
10  std::vector<std::string> m_list_label;
11  std::vector<NMREvent> m_list_evt;
12  std::map<int, NMRSignal> m_list_raw_sig;
13  std::map<int, NMRSignal> m_list_poly_sig;
14  double m_raw_sig_min;
15  double m_raw_sig_max;
16  double m_poly_sig_min;
17  double m_poly_sig_max;
18 
19 public:
21  virtual ~NMRDataManager() {;}
22 
23  void Verb(const int verb) { m_verb = verb; }
24  int Verb() const { return m_verb; }
25  void SetDirBase(const std::string dir_base) { m_dir_base = dir_base; }
26  void PrintKeyList(std::ostream& os=std::cout);
27 
28  int GetNumEvent() { return m_list_evt.size(); }
29  NMREvent* GetEvent(const int index) { return &m_list_evt[index]; }
30  NMREvent* FindEvent(const int evt_num);
31  void ClearEvent() { m_list_evt.clear(); }
32  void ReadEventFile(const std::string label);
33  void ReadRawSignalFile (const std::string label);
34  void ReadPolySignalFile(const std::string label);
37 
38  NMRSignal* GetRawSignal (const int evt_num);
39  NMRSignal* GetPolySignal(const int evt_num);
40  void GetRawSignalRange (double& min, double& max);
41  void GetPolySignalRange(double& min, double& max);
42 
43  void GetScanParam(int& ScanSweeps, int& ScanSteps, double& RFFreq, double& RFMod);
44 };
45 
47  : m_verb(0)
48  , m_dir_base("/data2/e1039_data/target_data/NMR")
49  , m_raw_sig_min (+1e10)
50  , m_raw_sig_max (-1e10)
51  , m_poly_sig_min(+1e10)
52  , m_poly_sig_max(-1e10)
53 {
54  ;
55 }
56 
57 void NMRDataManager::PrintKeyList(std::ostream& os=std::cout)
58 {
59  int n_key = NMREvent::GetNumKey();
60  for (int i_key = 0; i_key < n_key; i_key++) {
61  os << " " << i_key << "=" << NMREvent::GetKey(i_key);
62  }
63  os << endl;
64 }
65 
67 {
68  int idx = NMREvent::FindKey("EventNum");
69  for (int i_evt = 0; i_evt < m_list_evt.size(); i_evt++) {
70  NMREvent* ne = GetEvent(i_evt);
71  if (ne->GetInt(idx) == evt_num) return ne;
72  }
73  return 0;
74 }
75 
76 void NMRDataManager::ReadEventFile(const std::string label)
77 {
78  std::string fname = m_dir_base + "/" + label + ".csv";
79  ifstream ifs(fname.c_str());
80  if (! ifs.is_open()) {
81  cerr << "!!ERROR!! Cannot find the event file for '" << label << "': " << fname << ". Abort." << endl;
82  exit(1);
83  }
84  m_list_label.push_back(label);
85 
86  bool has_key = (NMREvent::GetNumKey() > 0);
87  int i_key = 0; // Used only when has_key is true.
88 
89  if (Verb() > 0 && ! has_key) cout << "Keys:";
90  std::string line;
91  std::getline(ifs, line);
92  istringstream iss(line);
93  std::string key;
94  while (std::getline(iss, key, ',')) {
95  if (has_key) {
96  if (NMREvent::GetKey(i_key) != key) {
97  cerr << "!!ERROR!! Key mismatch: " << NMREvent::GetKey(i_key) << " != " << key << ". Abort." << endl;
98  }
99  i_key++;
100  } else {
101  NMREvent::AddKey(key);
102  }
103  if (Verb() > 0 && ! has_key) cout << " " << key;
104  }
105  if (Verb() > 0 && ! has_key) cout << endl;
106 
107  while (std::getline(ifs, line)) {
108  if (Verb() > 1) cout << "Event:";
109  NMREvent ne;
110  istringstream iss(line);
111  ne.SetLine(line);
112  for (int ii = 0; ii < NMREvent::GetNumKey(); ii++) {
113  std::string value;
114  std::getline(iss, value, ',');
115  ne.AddValue(value);
116  if (Verb() > 1) cout << " " << value;
117  }
118  m_list_evt.push_back(ne);
119  if (Verb() > 1) cout << endl;
120  }
121  ifs.close();
122 }
123 
124 void NMRDataManager::ReadRawSignalFile(const std::string label)
125 {
126  std::string fname = m_dir_base + "/" + label + "-RawSignal.csv";
127  ifstream ifs(fname.c_str());
128  if (! ifs.is_open()) {
129  cerr << "!!ERROR!! Cannot find the RawSignal file for '" << label << "': " << fname << ". Abort." << endl;
130  exit(1);
131  }
132 
133  std::string line;
134  while (std::getline(ifs, line)) {
135  if (Verb() > 1) cout << "RawSignal:";
136  istringstream iss(line);
137  std::string value;
138  std::getline(iss, value, ',');
139  int evt_num = atoi(value.c_str());
140  NMRSignal* ne = &m_list_raw_sig[evt_num];
141  ne->SetEventNum(evt_num);
142 
143  while (std::getline(iss, value, ',')) {
144  double val = atof(value.c_str());
145  ne->AddPoint(val);
146  if (val < m_raw_sig_min) m_raw_sig_min = val;
147  if (val > m_raw_sig_max) m_raw_sig_max = val;
148  if (Verb() > 1) cout << " " << value;
149  }
150  if (Verb() > 1) cout << endl;
151  }
152  ifs.close();
153 }
154 
155 void NMRDataManager::ReadPolySignalFile(const std::string label)
156 {
157  std::string fname = m_dir_base + "/" + label + "-PolySignal.csv";
158  ifstream ifs(fname.c_str());
159  if (! ifs.is_open()) {
160  cerr << "!!ERROR!! Cannot find the PolySignal file for '" << label << "': " << fname << ". Abort." << endl;
161  exit(1);
162  }
163 
164  std::string line;
165  while (std::getline(ifs, line)) {
166  if (Verb() > 1) cout << "PolySignal:";
167  istringstream iss(line);
168  std::string value;
169  std::getline(iss, value, ',');
170  int evt_num = atoi(value.c_str());
171  NMRSignal* ne = &m_list_poly_sig[evt_num];
172  ne->SetEventNum(evt_num);
173 
174  while (std::getline(iss, value, ',')) {
175  double val = atof(value.c_str());
176  ne->AddPoint(val);
177  if (val < m_poly_sig_min) m_poly_sig_min = val;
178  if (val > m_poly_sig_max) m_poly_sig_max = val;
179  if (Verb() > 1) cout << " " << value;
180  }
181  if (Verb() > 1) cout << endl;
182  }
183  ifs.close();
184 }
185 
187 {
188  if (Verb() > 0) cout << "Reading RawSignal file(s)..." << endl;
189  for (auto it = m_list_label.begin(); it != m_list_label.end(); it++) {
190  ReadRawSignalFile(*it);
191  }
192  if (m_list_raw_sig.size() == 0) {
193  cerr << "!!ERROR!! No RawSignal record was found. Abort." << endl;
194  exit(1);
195  }
196 }
197 
199 {
200  if (Verb() > 0) cout << "Reading PolySignal file(s)..." << endl;
201  for (auto it = m_list_label.begin(); it != m_list_label.end(); it++) {
202  ReadPolySignalFile(*it);
203  }
204  if (m_list_poly_sig.size() == 0) {
205  cerr << "!!ERROR!! No PolySignal record was found. Abort." << endl;
206  exit(1);
207  }
208 }
209 
211 {
212  if (m_list_raw_sig.size() == 0) ReadRawSignalFileListed();
213  if (m_list_raw_sig.find(evt_num) == m_list_raw_sig.end()) return 0;
214  return &m_list_raw_sig[evt_num];
215 }
216 
218 {
219  if (m_list_poly_sig.size() == 0) ReadPolySignalFileListed();
220  if (m_list_poly_sig.find(evt_num) == m_list_poly_sig.end()) return 0;
221  return &m_list_poly_sig[evt_num];
222 }
223 
224 void NMRDataManager::GetRawSignalRange(double& min, double& max)
225 {
226  if (m_list_raw_sig.size() == 0) ReadRawSignalFileListed();
227  min = m_raw_sig_min;
228  max = m_raw_sig_max;
229 }
230 
231 void NMRDataManager::GetPolySignalRange(double& min, double& max)
232 {
233  if (m_list_poly_sig.size() == 0) ReadPolySignalFileListed();
234  min = m_poly_sig_min;
235  max = m_poly_sig_max;
236 }
237 
238 void NMRDataManager::GetScanParam(int& ScanSweeps, int& ScanSteps, double& RFFreq, double& RFMod)
239 {
240  if (GetNumEvent() == 0) {
241  cerr << "!!ERROR!! GetScanParam(): No event is available. Abort." << endl;
242  exit(1);
243  }
244  NMREvent* ne = GetEvent(0);
245  ScanSweeps = ne->GetInt ("ScanSweeps");
246  ScanSteps = ne->GetInt ("ScanSteps");
247  RFFreq = ne->GetDouble("RFFreq");
248  RFMod = ne->GetDouble("RFMod");
249  if (Verb() > 0) cout << "ScanSweeps = " << ScanSweeps << ", ScanSteps = " << ScanSteps << ", RFFreq = " << RFFreq << ", RFMod = " << RFMod << endl;
250 }
251 
252 #endif // _NMR_DATA_MANAGER__H_
NMRSignal * GetPolySignal(const int evt_num)
void GetRawSignalRange(double &min, double &max)
void ReadEventFile(const std::string label)
void GetScanParam(int &ScanSweeps, int &ScanSteps, double &RFFreq, double &RFMod)
void Verb(const int verb)
void ReadRawSignalFileListed()
virtual ~NMRDataManager()
NMREvent * GetEvent(const int index)
NMRSignal * GetRawSignal(const int evt_num)
int Verb() const
void SetDirBase(const std::string dir_base)
void PrintKeyList(std::ostream &os=std::cout)
void ReadRawSignalFile(const std::string label)
NMREvent * FindEvent(const int evt_num)
void ReadPolySignalFile(const std::string label)
void ReadPolySignalFileListed()
void GetPolySignalRange(double &min, double &max)
static std::string GetKey(const int idx)
Definition: NMREvent.h:15
double GetDouble(const int idx)
Definition: NMREvent.h:24
int GetInt(const int idx)
Definition: NMREvent.h:23
static int GetNumKey()
Definition: NMREvent.h:14
void SetLine(const std::string line)
Definition: NMREvent.h:20
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
void SetEventNum(const int evt_num)
Definition: NMRSignal.h:11
void AddPoint(const double val)
Definition: NMRSignal.h:17