-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnaInput.cc
executable file
·421 lines (332 loc) · 12.3 KB
/
AnaInput.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#include "AnaInput.h"
AnaInput* AnaInput::m_Instance = NULL ;
//AnaInput::AnaInput( string datacardInput ) {
AnaInput::AnaInput() {
datacardfile = "DataCard.txt" ;
}
AnaInput::~AnaInput(){
cout<<" close input "<<endl ;
}
AnaInput* AnaInput::Instance() {
if (! m_Instance ) {
m_Instance = new AnaInput( ) ;
}
return m_Instance ;
}
void AnaInput::SetDatacard( string datacardInput ) {
datacardfile = datacardInput ;
}
// Methods to read DataCard.txt
void AnaInput::GetParameters(string paraName, int* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
string getValue;
size_t pos ;
size_t vpos ;
bool gotIt = false ;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() + 2;
if ( pos < line.npos ) {
string str_end = line.substr(vpos-1, 1) ;
if ( str_end == ' ' || str_end == '=') {
getName = line.substr( pos, paraName.size() );
getValue = line.substr( vpos );
*thePara = atoi( getValue.c_str() );
//cout<< paraName <<" = "<< *thePara << endl;
gotIt = true;
}
}
if ( gotIt ) break ;
}
paraFile.close();
}
void AnaInput::GetParameters(string paraName, double* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
string getValue;
size_t pos ;
size_t vpos ;
bool gotIt = false ;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() + 2;
// exclude the case when this paraName is the sub-string of other paraName
if ( pos > 0 && pos < 999 && line[pos-1] != ' ' ) continue ;
if ( pos < line.npos ) {
string str_end = line.substr(vpos-1, 1) ;
if ( str_end == ' ' || str_end == '=') {
getName = line.substr( pos, paraName.size() );
getValue = line.substr( vpos );
*thePara = atof( getValue.c_str() );
//cout<< paraName <<" = "<< *thePara << endl;
gotIt = true ;
}
}
if ( gotIt ) break ;
}
paraFile.close();
}
void AnaInput::GetParameters(string paraName, string* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
size_t pos ;
size_t vpos ;
bool gotIt = false ;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() + 2;
// exclude the case when this paraName is the sub-string of other paraName
if ( pos > 0 && pos < 999 && line[pos-1] != ' ' ) continue ;
if ( pos < line.npos ) {
string str_end = line.substr(vpos-1, 1) ;
if ( str_end == ' ' || str_end == '=') {
//cout<<" pos = "<< pos <<endl;
getName = line.substr( pos, paraName.size() );
//*thePara = line.substr( vpos );
//cout<< paraName <<" = "<< *thePara << endl;
string strTmp = line.substr( vpos );
for (string::iterator it = strTmp.begin(); it< strTmp.end(); it++) {
if ( (*it) != ',' && (*it) != ' ' && (*it) != '(' && (*it) != ')' && (*it) != '=') thePara->push_back( *it );
}
gotIt = true ;
}
}
if ( gotIt ) break;
}
paraFile.close();
}
void AnaInput::GetParameters(string paraName, vector<double>* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
string getValue;
size_t pos(0) ;
size_t vpos(0) ;
vector<double> vvec;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() + 1;
// exclude the case when this paraName is the sub-string of other paraName
if ( pos > 0 && pos < 999 && line[pos-1] != ' ' ) continue ;
if ( pos < line.npos ) {
getName = line.substr( pos, paraName.size() );
string arrVal = line.substr( vpos );
if ( arrVal[0] != '=' && arrVal[0] != ' ' ) continue;
int vidx = 0;
string vtemp ;
//cout<< paraName <<" = ( " ;
for (string::iterator it = arrVal.begin(); it< arrVal.end(); it++) {
if ( (*it) != ',' && (*it) != ' ' && (*it) != '(' && (*it) != ')' && (*it) != '=') vtemp.push_back( *it );
if ( (*it) == ',' || (*it) == ')' ) {
if ( vtemp.size() > 0 ) vvec.push_back( atof( vtemp.c_str() ) ) ;
//cout<< vtemp << *it;
vidx++ ;
vtemp.clear() ;
}
}
*thePara = vvec ;
}
}
//cout<<""<<endl ;
paraFile.close();
}
void AnaInput::GetParameters(string paraName, vector<string>* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
string getValue;
size_t pos ;
size_t vpos ;
vector<string> vvec;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() ;
if ( pos < line.npos ) {
getName = line.substr( pos, paraName.size() );
string arrVal = line.substr( vpos );
if ( arrVal[0] != '=' && arrVal[0] != ' ' ) continue;
int vidx = 0;
string vtemp ;
//cout<< paraName <<" = ( " ;
for (string::iterator it = arrVal.begin(); it< arrVal.end(); it++) {
if ( (*it) != ',' && (*it) != ' ' && (*it) != '(' && (*it) != ')' && (*it) != '=') vtemp.push_back( *it );
if ( (*it) == ',' || (*it) == ')' ) {
if ( vtemp.size() > 0 ) vvec.push_back( vtemp ) ;
//cout<< vtemp << *it;
vidx++ ;
vtemp.clear() ;
}
}
*thePara = vvec ;
}
}
paraFile.close();
}
void AnaInput::GetParameters(string paraName, vector<int>* thePara, string cfgFile ){
if ( cfgFile == "" ) cfgFile = datacardfile ;
fstream paraFile( cfgFile.c_str() );
if ( !paraFile.is_open() ) cout<<" file opened error => check file path and the folder "<<endl;
string line;
string getName;
string getValue;
size_t pos ;
size_t vpos ;
vector<int> vvec;
while ( getline(paraFile, line) ) {
if ( line[0] == '#' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() ;
if ( pos < line.npos ) {
getName = line.substr( pos, paraName.size() );
string arrVal = line.substr( vpos );
if ( arrVal[0] != '=' && arrVal[0] != ' ' ) continue;
//int vidx = 0;
string vtemp ;
//cout<< paraName <<" = ( " ;
for (string::iterator it = arrVal.begin(); it< arrVal.end(); it++) {
if ( (*it) != ',' && (*it) != ' ' && (*it) != '(' && (*it) != ')' && (*it) != '=') vtemp.push_back( *it );
if ( (*it) == ',' || (*it) == ')' ) {
if ( vtemp.size() > 0 ) vvec.push_back( atoi( vtemp.c_str() ) ) ;
//cout<< vtemp << *it;
//vidx++ ;
vtemp.clear() ;
}
}
*thePara = vvec ;
}
}
paraFile.close();
}
// Read MES file
int AnaInput::ReadMES( string fileName, vector<mes>& data ) {
// Open data file
//printf(" File:%s \n", fileName.c_str() ) ;
fstream logfile( fileName.c_str() );
// Open MES file to read
if ( logfile == NULL ) {
printf(" file open error \n") ;
return 1 ;
}
// Variables to hold data
float time(0), p1(0), p2(0), p3(0), c1(0) ;
int fo = -1 ;
// data collection
mes entry ;
string line;
double tCut = -999. ;
int id = 0 ;
while ( getline( logfile, line) ) {
if ( line[0] == '/' ) continue ;
fo = sscanf( line.c_str() , "%f %f %f %f %f" , &time, &p1, &p2, &p3, &c1 );
//printf(" read : t[%f] , [%f] , [%f] , [%f] , c[%f] \n", time, p1, p2, p3, c1 ) ;
//printf(" (%d) %f %f %f \n", id , time, p1, p2 ) ;
if ( time < tCut ) id++ ;
tCut = time ;
entry.time = time ;
entry.p1 = p1 ;
entry.p2 = p2 ;
entry.p3 = p3 ;
entry.c = c1 ;
entry.idx = id ;
data.push_back( entry ) ;
if ( fo != 5 ) {
printf(" !!! fscan fail %d \n", fo ) ;
break;
}
}
//printf(" data size == %d , %d measurement \n", (int)data.size(), id+1 ) ;
if ( fo !=5 ) {
return 2 ; // read error
} else if ( data.size() < 1 ) {
return 3 ;
} else if ( data.size()%(id+1) != 0 ) {
return 4 ;
} else {
return 0 ;
}
}
// Read Calibration and Measurement setup
void AnaInput::ReadMESInfo( string fileName, string paraName, vector<double>& paraV ) {
// Open data file
//printf(" File:%s \n", fileName.c_str() ) ;
fstream logfile( fileName.c_str() );
// Open MES file to read
if ( logfile == NULL ) {
printf(" file open error \n") ;
}
// data collection
string line;
string getName;
string getValue;
size_t pos(0) ;
size_t vpos(0) ;
double thePara ;
int id = 0 ;
while ( getline( logfile, line) ) {
if ( line[0] != '/' ) continue ;
pos = line.find( paraName );
vpos = pos + paraName.size() + 1 ;
// exclude the case when this paraName is the sub-string of other paraName
if ( pos > 0 && pos < 999 && line[pos-1] != ' ' ) continue ;
if ( pos < line.npos ) {
string str_end = line.substr(vpos-1, 1) ;
if ( str_end == ' ' || str_end == ':') {
getName = line.substr( pos, paraName.size() );
getValue = line.substr( vpos );
thePara = atof( getValue.c_str() );
paraV.push_back( thePara ) ;
//cout<< paraName <<" = "<< thePara <<" -> "<< id << endl;
}
id++ ;
}
}
//printf(" data size == %d , %d measurement \n", (int)data.size(), id+1 ) ;
}
// Read MES file - method 1 , using fscanf
// Example method only - obsolete
void AnaInput::ReadMES1( string fileName ) {
// Open MES file to read
FILE* logfile = fopen( fileName.c_str() , "r");
if ( logfile == NULL ) printf(" file open error \n") ;
bool eof = false ;
char cbuf[108] ; // has to be 108, otherwise 1st entry will be ignored
float time(0), p1(0), p2(0), p3(0), c1(0) ;
int fo = -1 ;
vector<double> tV ;
vector<double> rV ;
tV.clear() ;
rV.clear() ;
while ( !eof ) {
fgets(cbuf, sizeof(cbuf), logfile) ;
if ( cbuf[0] == '/') continue;
fo = fscanf( logfile, "%f %f %f %f %f" , &time, &p1, &p2, &p3, &c1 );
printf(" read : t[%f] , [%f] , [%f] , [%f] , c[%f] \n", time, p1, p2, p3, c1 ) ;
tV.push_back( time ) ;
rV.push_back( p1 ) ;
if ( fo != 5 ) {
printf(" !!! fscan fail %d \n", fo ) ;
break;
}
eof = (feof( logfile) != 0) ? true : false ;
}
printf(" size of data = %d , t0 = %f\n", (int)tV.size(), tV[0] ) ;
}