-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmastertoproject.py
427 lines (398 loc) · 21.4 KB
/
mastertoproject.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
'''
Master to Project Parser
Author: Craig Biwer ([email protected])
7/12/2012
'''
import h5py
import numpy
import re
import sys
import traceback
INTEGRATION_PARAMETERS = {'bgrflag': 1,
'cnbgr': 5,
'colormap': 'None',
'compress': 1,
'cpow': 2,
'ctan': False,
'cwidth': 15,
'filter': False,
'geom': 'psic',
'integrated': False,
'nline': 1,
'rnbgr': 5,
'roi': [],
'rpow': 0,
'rtan': False,
'rwidth': 15}
CORRECTION_PARAMETERS = {'bad_pixel_map': [],
'bad_point': False,
'image_changed': True,
'image_max': -1,
'pixel_map_changed': True,
'real_image_max': -1,
'rotangle': 0,
'sample_angles': [],
'sample_diameter': 10,
'sample_polygon': [],
'scale': 1.e6}
DETECTOR_PARAMETERS = {'beam_slits': {},
'det_slits': {},
'name': 'pilatus'
}
def read_pixel_map(fname):
"""
read pixel map file
assume the file format is
(bad pixel) (good pixel)
"""
bad_pixels = []
good_pixels = []
try:
bad = []
good = []
f = open(fname)
for line in f.readlines():
tmp = line.strip().split()
bad.append(tmp[0])
if len(tmp)>1:
good.append(tmp[1])
f.close()
for p in bad:
pp = p.split(',')
bad_pixels.append(map(int,pp))
for p in good:
pp = p.split(',')
good_pixels.append(map(int,pp))
return bad_pixels, good_pixels
except:
print "Error reading file: %s" % fname
return []
def master_to_project(master_file, desired_scans, project_file, append=True,
gui=False, instConfig=None):
'''Convert a list of scans from a master file
(potentially with some listed attributes)
to a project file.
Inputs:
-master_file: the full directory path to the master file
-desired_scans: a nested dictionary describing what scans
to pull from the master file and write to
the project file. Format is:
{spec_file: {scan: {attribute: value}}}
-project_file: the full directory path of the desired
output file
'''
read_this = h5py.File(master_file, 'r')
# Define a data type for an array of variable-length strings
var_len_strs = h5py.new_vlen(str)
if append:
# Open the project in append mode, get the last point
# number written, and gather all the unique names already
# in the project file. This allows new points to be
# added without overwriting anything (items() gives
# the list in alphabetical order, so the largest number
# comes last). This breaks for projects with more than
# 999999 points, labeled sequentially (no point 0).
# Once a project has a point with a 7-digit name, appending
# may cause overwrites.
write_this = h5py.File(project_file, 'a')
this_items = write_this.items()
point_counter = int(this_items[-1][0]) + 1
all_names = {}
for item in this_items:
all_names[item[1].attrs.get('name')] = item[1]
else:
# Open the project in write mode (overwriting any
# existing data), set the naming counter to 1,
# and clear the existing names.
write_this = h5py.File(project_file, 'w')
point_counter = 1
all_names = {}
# The starting point number (this only works if
# the file consists of sequentially numbered
# points, starting at 1 with no gaps).
#point_counter = len(write_this) + 1
progress_continue = True
if gui:
key_count = 0
project_progress = 0
for spec_name in desired_scans.keys():
for scan_number in desired_scans[spec_name].keys():
key_count += \
len(read_this[spec_name][scan_number]['point_data'])
import wx
progress_box = wx.ProgressDialog('Building file...', 'Progress:',
key_count,
style=wx.PD_CAN_ABORT |
wx.PD_APP_MODAL |
wx.PD_AUTO_HIDE |
wx.PD_ELAPSED_TIME |
wx.PD_REMAINING_TIME)
try:
for spec_name in desired_scans.keys():
if not progress_continue:
break
for scan_number in desired_scans[spec_name].keys():
if not progress_continue:
break
read_head = read_this[spec_name][scan_number]
num_points = len(read_head['point_data'])
specified_attrs = desired_scans[spec_name][scan_number]
file_epoch = read_head.attrs.get('init_epoch', 0)
epoch_loc = list(read_head['point_labs']).index('Epoch')
#add_time = 0
for i in range(num_points):
# The epoch offset of the point
point_epoch = read_head['point_data'][i][epoch_loc]
uniq_name = str(spec_name + ':S' + scan_number +':P' + \
str(i+1) + '/' + str(num_points) + \
':' + str(point_epoch + file_epoch))
uniq_pattern = str(spec_name + ':S' + scan_number +':P' + \
str(i+1) + '/[0-9]+:' + \
str(point_epoch + file_epoch))
matches = [word for word in all_names.keys() if \
re.match(uniq_pattern, word)]
if matches:
all_names[matches[0]].attrs['name'] = uniq_name
if gui:
print matches[0], ' already in ', project_file
if matches[0] != uniq_name:
print 'Renamed to ' + uniq_name
project_progress += 1
progress_continue, holding = \
progress_box.Update(project_progress)
# while wx.GetApp().Pending():
# wx.GetApp().Dispatch()
# wx.GetApp().Yield(True)
continue
point_name = '%6.6i' % point_counter
point_group = write_this.create_group(point_name)
point_counter += 1
# The unique identifier
point_group.attrs['name'] = uniq_name
all_names[uniq_name] = point_group
# The scan type
point_group.attrs['type'] = read_head.attrs.get('s_type',
'NA')
# Info about the point; initialized to the spec command
point_group.attrs['info'] = read_head.attrs.get('cmd',
'NA')
# The geometry of the point
point_group.attrs['geom'] = \
specified_attrs.get('geom',
INTEGRATION_PARAMETERS['geom'])
# A comment field; initialized to 'Initialized'
point_group.attrs['hist.1'] = 'Initialized'
# The time the point was taken (saved as an epoch)
# NOTE: This is determined by adding the Epoch offset of the
# point to the epoch at the beginning of the file
point_group.attrs['date_stamp'] = point_epoch + file_epoch
#The energy
point_group.attrs['energy'] = read_head.attrs.get('energy',
'NA')
# The angles
ang_labels = ['chi', 'del', 'eta', 'mu', 'nu', 'phi']
mapped_ang_labels = instConfig.readAngleLabels()
point_group.create_dataset('angle_labels', data=ang_labels)
pang_labels = ['chi', 'TwoTheta', 'theta',
'Psi', 'Nu', 'phi']
mapped_pang_labels = instConfig.readPseudoAngleLabels()
ang_values = []
for j in range(6):
try:
ang_lbl = ang_labels[j]
pang_lbl = pang_labels[j]
m_ang_lbl = mapped_ang_labels[j]
m_pang_lbl = mapped_pang_labels[j]
if m_ang_lbl in read_head['point_labs']:
ang_pos = list(\
read_head['point_labs']).index(m_ang_lbl)
ang_val = read_head['point_data'][i][ang_pos]
elif m_ang_lbl in read_head['param_labs']:
ang_pos = list(\
read_head['param_labs']).index(m_ang_lbl)
ang_val = read_head['param_data'][ang_pos]
elif m_pang_lbl in read_head['point_labs']:
ang_pos = list(\
read_head['point_labs']).index(m_pang_lbl)
ang_val = read_head['point_data'][i][ang_pos]
else:
ang_pos = list(\
read_head['param_labs']).index(m_pang_lbl)
ang_val = read_head['param_data'][ang_pos]
ang_values.append(ang_val)
except Exception as ex:
traceback.print_exc()
print ex
raise ex
point_group.create_dataset('angle_values', data=ang_values)
# The real-space lattice followed by the recip-space lattice
lattice_start = list(read_head['param_labs']).index('g_aa')
#lattice_stop = list(\
# read_head['param_labs']).index('g_ga_s')
ltc_lbls = ['real_a', 'real_b', 'real_c', 'real_alpha',
'real_beta', 'real_gamma', 'recip_a', 'recip_b',
'recip_c', 'recip_alpha', 'recip_beta',
'recip_gamma', 'lambda']
point_group.create_dataset('lattice_labels', data=ltc_lbls)
lattice_data = list(read_head['param_data']\
[lattice_start:lattice_start+12])
lattice_start = list(\
read_head['param_labs']).index('g_LAMBDA')
lattice_data.append(read_head['param_data'][lattice_start])
point_group.create_dataset('lattice_values',
data=lattice_data)
# Q
h_loc = list(read_head['point_labs']).index('H')
k_loc = list(read_head['point_labs']).index('K')
L_loc = list(read_head['point_labs']).index('L')
h_val = read_head['point_data'][i][h_loc]
k_val = read_head['point_data'][i][k_loc]
L_val = read_head['point_data'][i][L_loc]
point_group.create_dataset('Q', data=[h_val, k_val, L_val])
# The or's (all of or0 followed by all of or1)
# HKLs
or_start = list(read_head['param_labs']).index('g_h0')
or_zero = list(read_head['param_data'][or_start:or_start+3])
or_one = list(\
read_head['param_data'][or_start+3:or_start+6])
# Angles
or_start += 6
or_zero.extend(read_head['param_data'][or_start:or_start+6])
or_one.extend(\
read_head['param_data'][or_start+6:or_start+12])
# Lambdas
or_start += 12
or_zero.extend(read_head['param_data'][or_start:or_start+1])
or_one.extend(\
read_head['param_data'][or_start+1:or_start+2])
or_zero.extend(or_one)
or_labs = ['or0_h', 'or0_k', 'or0_L', 'or0_del', 'or0_eta',
'or0_chi', 'or0_phi', 'or0_nu', 'or0_mu',
'or0_lambda', 'or1_h', 'or1_k', 'or1_L',
'or1_del', 'or1_eta', 'or1_chi', 'or1_phi',
'or1_nu', 'or1_mu', 'or1_lambda']
point_group.create_dataset('or_labels', data=or_labs)
point_group.create_dataset('or_values', data=or_zero)
# Azimuth vector
haz_start = list(read_head['param_labs']).index('g_haz')
haz_data = read_head['param_data'][haz_start:haz_start+3]
point_group.create_dataset('haz', data=haz_data)
# The position values
split_index = list(read_head['point_labs']).index('Epoch')
pos_lbls = read_head['point_labs'][:split_index]
point_group.create_dataset('position_labels', data=pos_lbls)
pos_values = read_head['point_data'][i][:split_index]
point_group.create_dataset('position_values',
data=pos_values)
# The scaler values
sclr_lbls = read_head['point_labs'][split_index:]
mapped_scaler_lbls = instConfig.readScalerLabels()
unmapped_scaler_lbls = instConfig.readDefScalerLabels()
numScalers = len(sclr_lbls)
for j in range(numScalers):
if sclr_lbls[j] in mapped_scaler_lbls:
indx = mapped_scaler_lbls.index(sclr_lbls[j])
sclr_lbls[j] = unmapped_scaler_lbls[indx]
point_group.create_dataset('scaler_labels', data=sclr_lbls)
sclr_values = read_head['point_data'][i][split_index:]
point_group.create_dataset('scaler_values',
data=sclr_values)
# The detector
det_group = point_group.create_group('det_0')
# Name
no_show = DETECTOR_PARAMETERS.get('name', 'NA')
det_group.attrs['name'] = specified_attrs.get('name',
no_show)
# Data
det_group.attrs['data'] = read_head['point_data'][i]
# Image, if it exists
try:
det_group.create_dataset('image_data',
data=read_head['image_data'][i],
compression='gzip')
except Exception as ex:
print str(type(ex).__name__) + ": " + str(ex)
pass
# Integration parameters
int_labels = ['bgrflag', 'cnbgr', 'compress', 'cpow',
'ctan', 'cwidth', 'filter', 'integrated',
'nline', 'rnbgr', 'roi', 'rpow', 'rtan',
'rwidth']
det_group.create_dataset('int_labels', data=int_labels)
int_values = []
for label in int_labels:
no_show = INTEGRATION_PARAMETERS.get(label, 'NA')
int_values.append(\
str(specified_attrs.get(label, no_show)))
det_group.create_dataset('int_values.1', data=int_values,
dtype=var_len_strs)
# Correction parameters
corr_labels = ['bad_pixel_map', 'bad_point',
'image_changed', 'image_max',
'pixel_map_changed', 'real_image_max',
'rotangle', 'sample_angles',
'sample_diameter', 'sample_polygon', 'scale']
det_group.create_dataset('corr_labels', data=corr_labels)
corr_values = []
for label in corr_labels:
no_show = CORRECTION_PARAMETERS.get(label, 'NA')
if label.startswith('bad_pixel_map'):
this_map = str(specified_attrs.get(label, no_show))
if not this_map.startswith('(') and \
not this_map.startswith('['):
this_map = str(read_pixel_map(this_map))
corr_values.append(this_map)
else:
corr_values.append(\
str(specified_attrs.get(label, no_show)))
det_group.create_dataset('corr_values.1', data=corr_values,
dtype=var_len_strs)
# Detector parameters
det_labels = ['beam_slits', 'det_slits']
det_group.create_dataset('det_labels', data=det_labels)
det_values = []
for label in det_labels:
no_show = DETECTOR_PARAMETERS.get(label, 'NA')
det_values.append(\
str(specified_attrs.get(label, no_show)))
det_group.create_dataset('det_values.1', data=det_values,
dtype=var_len_strs)
# Results
res_labels = ['alpha', 'beta', 'ctot', 'F', 'F_changed',
'Ferr', 'I', 'I_c', 'I_r', 'Ibgr', 'Ibgr_c',
'Ibgr_r', 'Ierr', 'Ierr_c', 'Ierr_r']
res_values = [0, 0, 0, 0, True, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0]
det_group.create_dataset('result_labels', data=res_labels)
det_group.create_dataset('result_values.1',
data=res_values, dtype=numpy.float)
if gui:
project_progress += 1
progress_continue, holding = \
progress_box.Update(project_progress)
# while wx.GetApp().Pending():
# wx.GetApp().Dispatch()
# wx.GetApp().Yield(True)
except Exception as ex:
print 'Error generating file'
if gui:
progress_continue = False
progress_box.Destroy()
print traceback.print_stack()
raise ex
if gui:
progress_continue = False
progress_box.Destroy()
'''
for attr in DEFAULT_ATTRIBUTES.keys():
if attr not in desired_scans[spec_name][scan_number].keys():
point_group.attrs[attr] = DEFAULT_ATTRIBUTES[attr]
else:
point_group.attrs[attr] = str(desired_scans[spec_name][scan_number][attr])
point_group.create_dataset('raw_data', data=read_head['point_data'][i])
try:
point_group.create_dataset('image_data', data=read_head['image_data'][i], compression='szip')
except:
pass'''
read_this.close()
write_this.close()