1 #ifndef _NMR_DATA_MANAGER__H_
2 #define _NMR_DATA_MANAGER__H_
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;
16 double m_poly_sig_min;
17 double m_poly_sig_max;
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; }
43 void GetScanParam(
int& ScanSweeps,
int& ScanSteps,
double& RFFreq,
double& RFMod);
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)
60 for (
int i_key = 0; i_key < n_key; i_key++) {
69 for (
int i_evt = 0; i_evt < m_list_evt.size(); i_evt++) {
71 if (ne->
GetInt(idx) == evt_num)
return ne;
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;
84 m_list_label.push_back(label);
89 if (
Verb() > 0 && ! has_key) cout <<
"Keys:";
91 std::getline(ifs, line);
92 istringstream iss(line);
94 while (std::getline(iss, key,
',')) {
97 cerr <<
"!!ERROR!! Key mismatch: " <<
NMREvent::GetKey(i_key) <<
" != " << key <<
". Abort." << endl;
103 if (
Verb() > 0 && ! has_key) cout <<
" " << key;
105 if (
Verb() > 0 && ! has_key) cout << endl;
107 while (std::getline(ifs, line)) {
108 if (
Verb() > 1) cout <<
"Event:";
110 istringstream iss(line);
114 std::getline(iss, value,
',');
116 if (
Verb() > 1) cout <<
" " << value;
118 m_list_evt.push_back(ne);
119 if (
Verb() > 1) cout << endl;
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;
134 while (std::getline(ifs, line)) {
135 if (
Verb() > 1) cout <<
"RawSignal:";
136 istringstream iss(line);
138 std::getline(iss, value,
',');
139 int evt_num = atoi(value.c_str());
140 NMRSignal* ne = &m_list_raw_sig[evt_num];
143 while (std::getline(iss, value,
',')) {
144 double val = atof(value.c_str());
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;
150 if (
Verb() > 1) cout << endl;
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;
165 while (std::getline(ifs, line)) {
166 if (
Verb() > 1) cout <<
"PolySignal:";
167 istringstream iss(line);
169 std::getline(iss, value,
',');
170 int evt_num = atoi(value.c_str());
171 NMRSignal* ne = &m_list_poly_sig[evt_num];
174 while (std::getline(iss, value,
',')) {
175 double val = atof(value.c_str());
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;
181 if (
Verb() > 1) cout << endl;
188 if (
Verb() > 0) cout <<
"Reading RawSignal file(s)..." << endl;
189 for (
auto it = m_list_label.begin(); it != m_list_label.end(); it++) {
192 if (m_list_raw_sig.size() == 0) {
193 cerr <<
"!!ERROR!! No RawSignal record was found. Abort." << endl;
200 if (
Verb() > 0) cout <<
"Reading PolySignal file(s)..." << endl;
201 for (
auto it = m_list_label.begin(); it != m_list_label.end(); it++) {
204 if (m_list_poly_sig.size() == 0) {
205 cerr <<
"!!ERROR!! No PolySignal record was found. Abort." << endl;
213 if (m_list_raw_sig.find(evt_num) == m_list_raw_sig.end())
return 0;
214 return &m_list_raw_sig[evt_num];
220 if (m_list_poly_sig.find(evt_num) == m_list_poly_sig.end())
return 0;
221 return &m_list_poly_sig[evt_num];
234 min = m_poly_sig_min;
235 max = m_poly_sig_max;
241 cerr <<
"!!ERROR!! GetScanParam(): No event is available. Abort." << endl;
245 ScanSweeps = ne->
GetInt (
"ScanSweeps");
246 ScanSteps = ne->
GetInt (
"ScanSteps");
249 if (
Verb() > 0) cout <<
"ScanSweeps = " << ScanSweeps <<
", ScanSteps = " << ScanSteps <<
", RFFreq = " << RFFreq <<
", RFMod = " << RFMod << endl;
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)
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)
double GetDouble(const int idx)
int GetInt(const int idx)
void SetLine(const std::string line)
static void AddKey(const std::string key)
static int FindKey(const std::string key)
void AddValue(const std::string value)
void SetEventNum(const int evt_num)
void AddPoint(const double val)