This repository has been archived by the owner on Jan 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_procedures.py
472 lines (380 loc) · 14.8 KB
/
new_procedures.py
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
from __future__ import print_function
import numpy as np
from lmfit import Parameters, minimize
import matplotlib.pyplot as plt
from optimization import *
from export import *
import time
import sys
def boolean_translate(dct, key):
try:
answ = str(dct[key])
except KeyError:
return True
if answ.lower() == 'false':
answ = False
elif answ.lower() == 'true':
answ = True
else:
raise ValueError('Incorrect %s value for str_param' % key)
return answ
def propertime():
def longer(elem):
if len(str(elem)) == 1:
return '0' + str(elem)
else:
return str(elem)
year = longer(time.localtime().tm_year)
mon = longer(time.localtime().tm_mon)
day = longer(time.localtime().tm_mday)
hour = longer(time.localtime().tm_hour)
minute = longer(time.localtime().tm_min)
sec = longer(time.localtime().tm_sec)
answ = '%s_%s_%s_%s_%s_%s'%(year, mon, day, hour, minute, sec)
return answ
def logprint(stream1, stream2, string):
original = sys.stdout
sys.stdout = stream1
print(string)
sys.stdout = stream2
print(string)
sys.stdout = original
return 0
# for future procedures
def simple_fit(num_param, str_param, function, project_name='simple_fit'):
try:
project_name = str_param['project_name']
except KeyError:
pass
# will look like onegauss_2016-8-31-12-58-48
prefix = project_name + '_' + propertime()
os.mkdir(prefix)
os.chdir(prefix)
log = open('%s.log' % prefix, mode='w')
screen = sys.stdout
graph_print = boolean_translate(str_param, 'graph_print')
table_print = boolean_translate(str_param, 'table_print')
normalize = boolean_translate(str_param, 'normalize')
table = str_param['table']
xserver = str_param['xserver']
table = get_grd(table, xserver=xserver)
bragg = num_param['bragg'].value
template = str_param['template']
real_data = str_param['data']
if template == 'xy':
theta, yelid = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
yelid_errors = None
elif template == 'xyy' or template == 'xyyerror':
theta, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
elif template == 'xxerroryyerror':
theta, theta_error, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize,
template=template)
logprint(log, screen, """
Data succesfully read from:
prefix = %s
table = %s
data = %s
bragg = %f
normalize = %s
graph_print = %s
table_print = %s
""" % (prefix, str_param['table'], str_param['data'], bragg, normalize, graph_print, table_print))
# now we have yelid with correct angles (not relative to bragg),
# errors and standing wave table as np.array() with correct order
logprint(log, screen, "\n\n")
logprint(log, screen, """
************************
* MINIMIZATION STARTED *
************************""")
logprint(log, screen, """
Initial parameters are:\n""")
sys.stdout = log
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
sys.stdout = screen
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
start = time.time()
out = minimize(function, num_param, args=(table, theta, yelid, yelid_errors))
stop = time.time()
logprint(log, screen, """
MINIMIZATION FINISHED
Time consumed is: %.2f s
""" % (stop - start))
logprint(log, screen, """
Fitted parameters are:
""")
sys.stdout = log
out.params.pretty_print()
sys.stdout = screen
out.params.pretty_print()
return out.params, theta, yelid, yelid_errors
def onegaussian_fit(num_param, str_param, project_name='onegauss'):
try:
project_name = str_param['project_name']
except KeyError:
pass
# will look like onegauss_2016-8-31-12-58-48
prefix = project_name + '_' + propertime()
os.mkdir(prefix)
os.chdir(prefix)
log = open('%s.log'%prefix, mode='w')
screen = sys.stdout
graph_print = boolean_translate(str_param, 'graph_print')
table_print = boolean_translate(str_param, 'table_print')
normalize = boolean_translate(str_param, 'normalize')
table = str_param['table']
xserver = str_param['xserver']
table = get_grd(table, xserver=xserver)
bragg = num_param['bragg'].value
template = str_param['template']
real_data = str_param['data']
if template == 'xy':
theta, yelid = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
yelid_errors = None
elif template == 'xyy' or template == 'xyyerror':
theta, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
elif template == 'xxerroryyerror':
theta, theta_error, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize,
template=template)
logprint(log, screen, """
Data succesfully read from:
prefix = %s
table = %s
data = %s
bragg = %f
normalize = %s
graph_print = %s
table_print = %s
""" % (prefix, str_param['table'], str_param['data'], bragg, normalize, graph_print, table_print))
# now we have yelid with correct angles (not relative to bragg),
# errors and standing wave table as np.array() with correct order
logprint(log, screen, "\n")
logprint(log, screen, """
************************
* MINIMIZATION STARTED *
************************""")
logprint(log, screen, """
Initial parameters are:\n""")
sys.stdout = log
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
sys.stdout = screen
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
start = time.time()
out = minimize(residual_onegaussian, num_param, args=(table, theta, yelid, yelid_errors))
stop = time.time()
logprint(log, screen, """
MINIMIZATION FINISHED
Time consumed is: %.2f s
""" % (stop - start))
logprint(log, screen, """
Fitted parameters are:
""")
sys.stdout = log
out.params.pretty_print()
sys.stdout = screen
out.params.pretty_print()
model, ibar = intensity_onegaussian(table,
theta,
out.params['amp'],
out.params['sigma'],
out.params['x0'],
out.params['zmax'],
out.params['angle_slope'],
out.params['zmin'],
get_ibar=True
)
if yelid_errors is not None: # if we have errors
chisquared = np.sum((yelid-model)**2 / yelid_errors**2) # that must be chi-squared criteria with errors
else:
return None # optimizing r-factor if there are no errors
rfactor = sum(abs(model - yelid) / sum(yelid))
logprint(log, screen, """
Rfactor:\t\t %f
Chisquared:\t\t %f
""" % (rfactor, chisquared))
if graph_print:
plt.plot(theta, model, 'b')
plt.plot(theta, yelid, 'ko')
plt.title('x0=%.1f, sigma=%.1f'%(out.params['x0'], out.params['sigma']))
plt.savefig('yelid_%s.png'%prefix)
plt.clf()
if table_print:
zmin = out.params['zmin']
zmax = out.params['zmax']
sigma = out.params['sigma']
x0 = out.params['x0']
amp = out.params['amp']
angle_slope = out.params['angle_slope']
gauss = lambda coord: (amp + angle_slope*0)*np.exp(-(coord-x0)**2 / 2.0 / sigma**2)
plt.subplot(3, 1, 1)
plt.plot(theta, model, 'b')
plt.plot(theta, yelid, 'ko')
plt.title('x0=%.1f, sigma=%.1f'%(out.params['x0'], out.params['sigma']))
plt.subplot(3, 1, 2)
plt.imshow(ibar,
aspect='auto',
extent=(zmin, zmax, np.min(theta), np.max(theta)))
plt.title('x0=%.1f, sigma=%.1f'%(out.params['x0'], out.params['sigma']))
plt.savefig('tables_%s.png'%prefix)
plt.colorbar()
plt.subplot(3, 1, 3)
x = np.linspace(zmin, zmax, int(abs(zmax-zmin)*2))
y = gauss(x)
plt.plot(x, y)
log.close()
return out.params, theta, model, yelid, chisquared, rfactor
def twogaussian_fit(num_param, str_param, project_name='twogauss'):
try:
project_name = str_param['project_name']
except KeyError:
pass
# will look like onegauss_2016-8-31-12-58-48
prefix = project_name + '_' + propertime()
os.mkdir(prefix)
os.chdir(prefix)
log = open('%s.log'%prefix, mode='w')
screen = sys.stdout
graph_print = boolean_translate(str_param, 'graph_print')
table_print = boolean_translate(str_param, 'table_print')
normalize = boolean_translate(str_param, 'normalize')
table = str_param['table']
try:
xserver = str_param['xserver']
except KeyError:
xserver = True
table = get_grd(table, xserver=xserver)
bragg = num_param['bragg'].value
template = str_param['template']
real_data = str_param['data']
if template == 'xy':
theta, yelid = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
yelid_errors = None
elif template == 'xyy' or template == 'xyyerror':
theta, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize, template=template)
elif template == 'xxerroryyerror':
theta, theta_error, yelid, yelid_errors = get_dat(real_data, bragg=bragg, normalize=normalize,
template=template)
logprint(log, screen, """
Data succesfully read from:
prefix = %s
table = %s
data = %s
bragg = %f
normalize = %s
graph_print = %s
table_print = %s
""" % (prefix, str_param['table'], str_param['data'], bragg, normalize, graph_print, table_print))
# now we have yelid with correct angles (not relative to bragg),
# errors and standing wave table as np.array() with correct order
logprint(log, screen, "\n")
logprint(log, screen, """
************************
* MINIMIZATION STARTED *
************************""")
logprint(log, screen, """
Initial parameters are:\n""")
sys.stdout = log
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
sys.stdout = screen
num_param.pretty_print()
print('\n')
for key in str_param.keys():
print(key, str_param[key], sep=':\t')
start = time.time()
out = minimize(residual_twogaussians, num_param, args=(table, theta, yelid, yelid_errors))
stop = time.time()
logprint(log, screen, """
MINIMIZATION FINISHED
Time consumed is: %.2f s
""" % (stop - start))
logprint(log, screen, """
Fitted parameters are:
""")
sys.stdout = log
out.params.pretty_print()
sys.stdout = screen
out.params.pretty_print()
model, ibar = intensity_twogaussians(table,
theta,
out.params['amp1'],
out.params['ratio'],
out.params['sigma1'],
out.params['sigma2'],
out.params['x01'],
out.params['x02'],
out.params['zmax'],
out.params['angle_slope'],
out.params['zmin'],
get_ibar=True
)
if yelid_errors is not None: # if we have errors
chisquared = np.sum((yelid-model)**2 / yelid_errors**2) # that must be chi-squared criteria with errors
else:
return None # optimizing r-factor if there are no errors
rfactor = sum(abs(model - yelid) / sum(yelid))
logprint(log, screen, """
Rfactor:\t\t %f
Chisquared:\t\t %f
""" % (rfactor, chisquared))
amp1 = out.params['amp1']
ratio = out.params['ratio']
sigma1 = out.params['sigma1']
sigma2 = out.params['sigma2']
x01 = out.params['x01']
x02 = out.params['x02']
zmax = out.params['zmax']
angle_slope = out.params['angle_slope']
zmin = out.params['zmin']
if graph_print:
plt.plot(theta, model, 'b')
plt.plot(theta, yelid, 'ko')
plt.title('x01=%.1f, x02=%.1f, sigma1=%.1f, sigma2=%.1f, ratio=%.1f'%(x01, x02,
sigma1, sigma2,
ratio))
plt.savefig('yelid_%s.png'%prefix)
plt.clf()
if table_print:
gauss_first = lambda coord: (amp1) * \
np.exp(-(coord - x01) ** 2 / 2.0 / sigma1 ** 2)
gauss_second = lambda coord: (amp1 * sigma1 / sigma2 / ratio) * \
np.exp(-(coord - x02) ** 2 / 2.0 / sigma2 ** 2)
gauss = lambda coord: gauss_first(coord) + gauss_second(coord)
plt.subplot(3, 1, 1)
plt.plot(theta, model, 'b')
plt.plot(theta, yelid, 'ko')
plt.title('x01=%.1f, x02=%.1f, sigma1=%.1f, sigma2=%.1f, ratio=%.1f' % (x01, x02,
sigma1, sigma2,
ratio))
plt.subplot(3, 1, 2)
plt.imshow(ibar,
aspect='auto',
extent=(zmin, zmax, np.min(theta), np.max(theta)))
plt.title('x01=%.1f, x02=%.1f, sigma1=%.1f, sigma2=%.1f, ratio=%.1f' % (x01, x02,
sigma1, sigma2,
ratio))
plt.colorbar()
plt.subplot(3, 1, 3)
x = np.linspace(zmin, zmax, int(abs(zmax-zmin)*2))
y = gauss(x)
plt.plot(x, y)
plt.savefig('tables_%s.png' % prefix)
log.close()
return out.params, theta, model, yelid, chisquared, rfactor
os.chdir('/home/errorochka/Dropbox/DESY/pyXSW/tests/two_gaussians')
num_param, str_param = get_initials('/home/errorochka/Dropbox/DESY/pyXSW/tests/datasets/two_gaussians.prm')
params, theta, model, yelid, chisquared, rfactor = twogaussian_fit(num_param, str_param, project_name='test')
plt.show()