-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWireScans.py
607 lines (515 loc) · 26.9 KB
/
WireScans.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
import lhc_log_db_query as lldb
import timber_manag3 as tm
import timestamp_helpers as th
from zip_mat import save_zip
from optics_and_betagamma import beta_opt_lib, retrieve_betagamma
import os
import time
import numpy as np
import scipy.io as sio
import scipy.optimize as op
import shutil
import gzip
import pickle
class WireScanCollection(object):
def __init__(self, list_WS_obj, acq_time_in_cycle_ref, gain_ref):
self._fitfunc = lambda p, x: p[0] + p[1]*np.exp(-((x-p[2])**2) / (2*p[3]**2)) + p[4]*x
self._errfunc = lambda p, x, y: self._fitfunc(p, x) - y
self.list_WS_obj = list_WS_obj
# Apply filters.
self.acq_time_in_cycle_ref = acq_time_in_cycle_ref
self.gain_ref = gain_ref
self.filter_ws_list()
def filter_ws_list(self):
list_WS_obj_new = []
for ws in self.list_WS_obj:
if abs(ws.acq_time_in_cycle_set_in - self.acq_time_in_cycle_ref) > 20: # [ms]
print 'acq time does not match, diff', abs(ws.acq_time_in_cycle_set_in - self.acq_time_in_cycle_ref)
continue
if abs(ws.gain - self.gain_ref) > 2: #[a.u.]
print 'gain does not match, diff', abs(ws.gain - self.gain_ref)
continue
list_WS_obj_new.append(ws)
self.list_WS_obj = list_WS_obj_new
def make_combined_fit(self):
nPoints = [ len(ws.proj_profile_set_in) for ws in self.list_WS_obj ]
array_prof = np.zeros((len(self.list_WS_obj), max(nPoints)))
array_pos = np.zeros((len(self.list_WS_obj), max(nPoints)))
for i, ws in enumerate(self.list_WS_obj):
temp_prof = ws.proj_profile_set_in.copy()
temp_pos = ws.proj_position_set_in.copy()
temp_prof -= ws.p1_in[0][0] # Correct for baseline.
temp_pos -= ws.p1_in[0][2] # Correct for mean value.
#temp_prof /= ws.p1_in[0][1] # Normalise amplitude.
array_prof[i,:nPoints[i]] = temp_prof
array_pos[i,:nPoints[i]] = temp_pos
self.array_prof = array_prof[:,:min(nPoints)].flatten()
self.array_pos = array_pos[:,:min(nPoints)].flatten()
self.p0, self.p1 = self._make_fit(self.array_pos, self.array_prof)
def get_fitted_profile(self):
eval_pos = np.linspace(min(self.array_pos), max(self.array_pos), 1000)
return eval_pos, self._fitfunc(self.p1, eval_pos)
def get_emittances(self):
beta_opt = self.list_WS_obj[0].beta_opt
betagamma_in = self.list_WS_obj[0].betagamma_in
phys_emit = (self.p1[3]*1e-6)**2 / beta_opt
norm_emit = betagamma_in * phys_emit
return norm_emit, phys_emit
def _make_fit(self, x, y, N_points_ma=50):
indx_max = np.argmax(y)
mu0 = x[indx_max]
window = 2*N_points_ma
x_tmp = x[indx_max-window:indx_max+window]
y_tmp = y[indx_max-window:indx_max+window]
offs0 = min(y_tmp)
ampl = max(y_tmp)-offs0
x1 = x_tmp[np.searchsorted(y_tmp[:window], offs0+ampl/2)]
x2 = x_tmp[np.searchsorted(-y_tmp[window:], -offs0+ampl/2)]
FWHM = x2-x1
sigma0 = FWHM/2.355
p0 = [offs0, ampl, mu0, sigma0, 0.]
p1, success = op.leastsq(self._errfunc, p0[:], args=(x,y))
return p0, p1
class WireScan(object):
def __init__(self, complete_path, init_with_fits=True, optics=None, cycle_csv_filepath=None,
scans_in=True, scans_out=False):
self._fitfunc = lambda p, x: p[0] + p[1]*np.exp(-((x-p[2])**2) / (2*p[3]**2)) + p[4]*x
self._errfunc = lambda p, x, y: self._fitfunc(p, x) - y
self.optics = optics
self.cycle_csv_filepath = cycle_csv_filepath
self.scans_in = scans_in
self.scans_out = scans_out
temp_filename = complete_path.split('.gz')[0] + 'uzipd'
with open(temp_filename, "wb") as tmp:
shutil.copyfileobj(gzip.open(complete_path), tmp)
self.dict_ws = sio.loadmat(temp_filename)
dict_ws = sio.loadmat(temp_filename)
os.remove(temp_filename)
self.bunch_selection = np.squeeze(dict_ws['bunchSelection'])
self.bunch_list = self._bunchSelection2bunchList()
#self.bunch_list_timber = np.squeeze(dict_ws['bunchListTimber'])
self.device_name = str(dict_ws['device_name'][0])
self.gain = np.float_(np.squeeze(dict_ws['gain']))
self.t_stamp_unix = np.float_(np.squeeze(dict_ws['t_stamp_unix']))
self.cycle_time = str(dict_ws['cycleTime'][0])
self.acq_time = str(dict_ws['acqTime'][0])
self.acq_delay = np.float_(np.squeeze(dict_ws['acqDelay']))
self.acq_type = np.int_(np.squeeze(dict_ws['acqType']))
#self.beta_fct = np.squeeze(dict_ws['beta'])
#self.energy_in = np.squeeze(dict_ws['energy1'])
#self.energy_out = np.squeeze(dict_ws['energy2'])
if self.acq_type == 1:
self.n_bunches = 1
#self.bunch_list_timber = np.array([0])
else:
self.n_bunches = np.int_(np.squeeze(dict_ws['nbBunches']))
# Scan 'in'
self.acq_time_in_cycle_set_in = np.float_(np.squeeze(dict_ws['acqTimeInCycleSet1']))
self.proj_position_set_in = np.float_(np.squeeze(dict_ws['projPositionSet1']))
if self.acq_type == 1:
self.proj_profile_set_in = np.float_(np.squeeze(dict_ws['projDataSet1']))
else:
self.proj_profile_set_in = np.reshape(np.float_(np.squeeze(dict_ws['projBunchDataSet1'])), (self.n_bunches, -1))
self._p0_in = [None for i in xrange(self.n_bunches)]
self.p1_in = [None for i in xrange(self.n_bunches)]
self.sigma_in = [None for i in xrange(self.n_bunches)]
self.phys_emit_in = [None for i in xrange(self.n_bunches)]
self.norm_emit_in = [None for i in xrange(self.n_bunches)]
self.area_in = [None for i in xrange(self.n_bunches)]
# Scan 'out'
self.acq_time_in_cycle_set_out = np.float_(np.squeeze(dict_ws['acqTimeInCycleSet2']))
self.proj_position_set_out = np.float_(np.squeeze(dict_ws['projPositionSet2']))
if self.acq_type == 1:
self.proj_profile_set_out = np.float_(np.squeeze(dict_ws['projDataSet2']))
else:
self.proj_profile_set_out = np.reshape(np.float_(np.squeeze(dict_ws['projBunchDataSet2'])), (self.n_bunches, -1))
self._p0_out = [None for i in xrange(self.n_bunches)]
self.p1_out = [None for i in xrange(self.n_bunches)]
self.sigma_out = [None for i in xrange(self.n_bunches)]
self.phys_emit_out = [None for i in xrange(self.n_bunches)]
self.norm_emit_out = [None for i in xrange(self.n_bunches)]
self.area_out = [None for i in xrange(self.n_bunches)]
if init_with_fits:
self.compute_fits(self.scans_in, self.scans_out)
if (self.optics is not None) and (self.cycle_csv_filepath is not None):
self.beta_opt = beta_opt_lib[self.device_name +':'+ self.optics]
self.betagamma_in = retrieve_betagamma(self.cycle_csv_filepath, self.acq_time_in_cycle_set_in)
self.betagamma_out = retrieve_betagamma(self.cycle_csv_filepath, self.acq_time_in_cycle_set_out)
self.compute_emittances()
def get_fitted_profile_in(self, bunch_index=0):
return self._fitfunc(self.p1_in[bunch_index], self.proj_position_set_in)
def get_fitted_profile_out(self, bunch_index=0):
return self._fitfunc(self.p1_out[bunch_index], self.proj_position_set_out)
def _bunchSelection2bunchList(self):
'''
The bunch_selection variable stores the selected bunch pattern
in binary form (two's complement). Each entry in the
bunch_selection list corresponds to 32 bunch slots (32 bit
pattern), i.e. entry 0 describes bunches 0-31, entry 1 bunches
32-63, etc. The binary patterns are read from the right and they
must be padded to 32 bits from the left. To generate the full
boolean mask, the 32 bit patterns (corresponding to one of the
entries in the bunch_selection list) are reversed and
concatenated. The mask tells us, which of the bunch slots were
selected for measurements assuming the following order [ 1, 2, 3,
... 32*len(bunch_selection) + 1 ].
'''
bin_list = ''
for selection in self.bunch_selection:
bin_list += ((bin(selection % (1<<32))[2:]).rjust(32, '0'))[::-1]
mask = np.bool_(np.array(list(bin_list)))
return np.array(range(1, 32*len(self.bunch_selection)+1))[mask]
def _compute_single_fit(self, x, y, N_points_ma):
try:
if x[-1]<x[0]:
x=x[::-1]
y=y[::-1]
indx_max = np.argmax(y)
mu0 = x[indx_max]
window = 2*N_points_ma
x_tmp = x[indx_max-window:indx_max+window]
y_tmp = y[indx_max-window:indx_max+window]
offs0 = min(y_tmp)
ampl = max(y_tmp)-offs0
x1 = x_tmp[np.searchsorted(y_tmp[:window], offs0+ampl/2)]
x2 = x_tmp[np.searchsorted(-y_tmp[window:], -offs0+ampl/2)]
FWHM = x2-x1
sigma0 = FWHM/2.355
p0 = [offs0, ampl, mu0, sigma0,0.]
p1, success = op.leastsq(self._errfunc, p0[:], args=(x,y))
if not success:
raise ValueError
except:
p0 = 4 * [0.]
p1 = 4 * [0.]
return p0, p1
def compute_fits(self, scans_in=True, scans_out=False, N_points_ma=50):
if scans_in:
for i in xrange(self.n_bunches):
if self.acq_type == 1:
proj_prof = self.proj_profile_set_in
else:
proj_prof = self.proj_profile_set_in[i]
self._p0_in[i], self.p1_in[i] = self._compute_single_fit(self.proj_position_set_in, proj_prof, N_points_ma)
self.sigma_in[i] = abs(self.p1_in[i][3]*1e-6)
self.area_in[i] = abs(self.p1_in[i][1]*self.p1_in[i][3])
if self.scans_out:
for i in xrange(self.n_bunches):
if self.acq_type == 1:
proj_prof = self.proj_profile_set_out
else:
proj_prof = self.proj_profile_set_out[i]
self._p0_out[i], self.p1_out[i] = self._compute_single_fit(self.proj_position_set_out, proj_prof, N_points_ma)
self.sigma_out[i] = abs(self.p1_out[i][3]*1e-6)
self.area_out[i] = abs(self.p1_out[i][1]*self.p1_out[i][3])
def compute_emittances(self):
if self.scans_in:
if self.p1_in == None:
self.compute_fits(self.scans_in, False)
self.phys_emit_in = np.array(self.sigma_in)**2/self.beta_opt
self.norm_emit_in = self.betagamma_in*self.phys_emit_in
self.phys_emit_in[np.array(self.sigma_in)==0] = 0.
self.norm_emit_in[np.array(self.sigma_in)==0] = 0.
if self.scans_out:
if self.p1_out == None:
self.compute_fits(False, self.scans_out)
self.phys_emit_out = np.array(self.sigma_out)**2/self.beta_opt
self.norm_emit_out = self.betagamma_out*self.phys_emit_out
self.phys_emit_out[np.array(self.sigma_out)==0] = 0.
self.norm_emit_out[np.array(self.sigma_out)==0] = 0.
def timber_to_csv(start_time, end_time='Now', filename_prefix='SPSmeas_', outp_folder=None,
list_device_names=None, t_query_interval=1800., t_query_interval_fine=60.,
filename_retrieved='ws_retrieved.txt'):
try:
with open(filename_retrieved, 'r') as fid:
list_retrieved = fid.read().split('\n')
except IOError:
list_retrieved = []
if type(start_time) is str:
start_tstamp_unix = th.localtime2unixstamp(start_time)
else:
start_tstamp_unix = start_time
if end_time == 'Now':
end_tstamp_unix = time.mktime(time.localtime())
elif type(end_time) is str:
end_tstamp_unix = th.localtime2unixstamp(end_time)
else:
end_tstamp_unix = end_time
if outp_folder == None:
outp_folder = 'WS_CSVfromTimberDB'
if not os.path.exists(outp_folder):
os.makedirs(outp_folder)
if list_device_names == None:
list_device_names = [ 'SPS.BWS.41677.H_ROT', 'SPS.BWS.41677.V_ROT',
'SPS.BWS.51995.H_ROT', 'SPS.BWS.51995.V_ROT' ]
varlist = []
for device_name in list_device_names:
varlist.extend(get_timber_varlist(device_name))
filename_prefix += device_name.split('.')[-2] + '.' + device_name.split('.')[-1] + '_'
print 'VARLIST', varlist
t_queries = np.arange(start_tstamp_unix, end_tstamp_unix, t_query_interval)
for t_query in t_queries:
outp_compl_path = outp_folder + '/' + filename_prefix + '%d_%d.csv'%(t_query, t_query_interval)
if outp_compl_path in list_retrieved:
continue
lldb.dbquery(varlist, t_query, t_query+t_query_interval, outp_compl_path)
now = th.time.mktime(th.time.localtime())
if now - t_query > 2*3600:
with open(filename_retrieved, 'a+') as fid:
fid.write(outp_compl_path + '\n')
# In case something goes wrong with the request -> use a shorter interval.
if not os.path.exists(outp_compl_path):
t_queries_fine = np.arange(t_query, t_query + t_query_interval, t_query_interval_fine)
for t_query_fine in t_queries_fine:
time_str = (th.unixstamp2localtime(t_query_fine)).replace(' ', '_')
outp_compl_path = outp_folder + '/' + filename_prefix + '%d_%d.csv'%(t_query_fine, t_query_interval_fine)
if outp_compl_path in list_retrieved:
continue
lldb.dbquery(varlist, t_query_fine, t_query_fine+t_query_interval_fine, outp_compl_path)
with open(filename_retrieved, 'a+') as fid:
fid.write(outp_compl_path + '\n')
if not os.path.exists(outp_compl_path):
print '!!! WARNING: Could not retrieve data in %s, %d s'%(time_str, t_query_interval_fine)
def csv_to_file(in_complete_path, mat_filename_prefix='SPSmeas_', outp_folder='wirescanner',
filename_converted='ws_converted.txt'):
try:
with open(filename_converted, 'r') as fid:
list_converted = fid.read().split('\n')
except IOError:
list_converted = []
if in_complete_path in list_converted:
return
variables = tm.parse_timber_file(in_complete_path, verbose=False)
list_device_names = []
for kvar in variables.keys():
device_name = kvar.split(':')[0]
if ('SPS.BWS.' in device_name) and (device_name not in list_device_names):
list_device_names.append(device_name)
for device_name in list_device_names:
print 'WS device ' + device_name
varlist = get_timber_varlist(device_name)
N_meas = len(variables[device_name + ':CYCLE_TIME'].t_stamps)
for i in xrange(N_meas):
cycleTime = variables[device_name + ':CYCLE_TIME'].values[i][0]
if cycleTime == 'null':
continue
try:
str_cycleTime = cycleTime.replace('"', '').replace('\n', '').split('.')[0]
t_stamp_unix = th.localtime2unixstamp(str_cycleTime, strformat='%Y/%m/%d %H:%M:%S')
acqClockDiv = np.int_(variables[device_name + ':ACQ_CLOCK_DIV'].values[i][0])
acqDelay = np.int_(variables[device_name + ':ACQ_DELAY'].values[i][0])
acqTime = variables[device_name + ':ACQ_TIME'].values[i][0]
acqTimeInCycleSet1 = np.int_(variables[device_name + ':ACQTIMEINCYCLE_IN'].values[i][0])
acqTimeInCycleSet2 = np.int_(variables[device_name + ':ACQTIMEINCYCLE_OUT'].values[i][0])
acqType = np.int_(variables[device_name + ':ACQ_TYPE'].values[i][0])
bunchSelection = np.int_(np.float_(variables[device_name + ':BUNCH_SELECTION'].values[i]))
#bunchListTimber = np.int_(np.float_(variables[device_name + ':BUNCH_LIST'].values[i]))
gain = np.float_(variables[device_name + ':GAIN'].values[i][0])
nbAcq = np.int_(variables[device_name + ':NB_ACQ'].values[i][0])
nbBunches = np.int_(variables[device_name + ':NB_BUNCHES'].values[i][0])
nbPtsPerProjInSet1 = np.int_(variables[device_name + ':NB_PTS_SCAN_IN'].values[i][0])
nbPtsPerProjInSet2 = np.int_(variables[device_name + ':NB_PTS_SCAN_OUT'].values[i][0])
potPosRawSet1 = np.float_(variables[device_name + ':RAW_POSITION_IN'].values[i])
potPosRawSet2 = np.float_(variables[device_name + ':RAW_POSITION_OUT'].values[i])
projBunchDataSet1 = np.float_(variables[device_name + ':PROJ_BUNCH_DATASET1'].values[i])
projBunchDataSet2 = np.float_(variables[device_name + ':PROJ_BUNCH_DATASET2'].values[i])
projDataSet1 = np.float_(variables[device_name + ':PROF_DATA_IN'].values[i])
projDataSet2 = np.float_(variables[device_name + ':PROF_DATA_OUT'].values[i])
projPositionSet1 = np.float_(variables[device_name + ':PROF_POSITION_IN'].values[i])
projPositionSet2 = np.float_(variables[device_name + ':PROF_POSITION_OUT'].values[i])
#beta = np.float_(variables[device_name + '.APP.IN:BETA'].values[i][0])
#energy1 = np.float_(variables[device_name + '.APP.IN:ENERGY'].values[i][0])
#try:
# energy2 = np.float_(variables[device_name + '.APP.OUT:ENERGY'].values[i][0])
#except IndexError:
# energy2 = 0.
except Exception as err:
print 'Skipped: %s' %cycleTime
print ' Got exception:'
print err
continue
dict_meas = {
'acqClockDiv': acqClockDiv,
'acqDelay': acqDelay,
'acqTime': acqTime,
'acqTimeInCycleSet1': acqTimeInCycleSet1,
'acqTimeInCycleSet2': acqTimeInCycleSet2,
'acqType': acqType,
'bunchSelection': bunchSelection,
#'bunchListTimber': bunchListTimber,
'cycleTime': cycleTime,
'gain': gain,
'nbAcq': nbAcq,
'nbBunches': nbBunches,
'nbPtsPerProjInSet1': nbPtsPerProjInSet1,
'nbPtsPerProjInSet2': nbPtsPerProjInSet2,
'potPosRawSet1': potPosRawSet1,
'potPosRawSet2': potPosRawSet2,
'projBunchDataSet1': projBunchDataSet1,
'projBunchDataSet2': projBunchDataSet2,
'projDataSet1': projDataSet1,
'projDataSet2': projDataSet2,
'projPositionSet1': projPositionSet1,
'projPositionSet2': projPositionSet2,
#'energy1': energy1,
#'energy2': energy2,
#'beta': beta,
't_stamp_unix': t_stamp_unix,
'device_name': device_name }
out_filename = mat_filename_prefix + device_name + ('_%d'%t_stamp_unix)
out_complete_folder = '%s/%s'%(outp_folder,device_name)
out_complete_path = '%s/%s'%(out_complete_folder,out_filename)
print out_complete_path
if not os.path.isdir(out_complete_folder):
print 'I create folder: '+ out_complete_folder
os.makedirs(out_complete_folder)
sio.savemat(out_complete_path, dict_meas, oned_as='row')
save_zip(out_complete_path)
now = th.time.mktime(th.time.localtime())
t = int(in_complete_path.split('_')[-2])
if now - t > 2*3600:
with open(filename_converted, 'a+') as fid:
fid.write(in_complete_path + '\n')
def make_mat_files(start_time, end_time='Now', list_device_names=None, csv_data_folder='WS_CSVfromTimberDB',
filename_converted='ws_converted.txt', filename_retrieved='ws_retrieved.txt'):
if type(start_time) is str:
start_tstamp_unix = th.localtime2unixstamp(start_time)
else:
start_tstamp_unix = start_time
if end_time == 'Now':
end_tstamp_unix = time.mktime(time.localtime())
elif type(end_time) is str:
end_tstamp_unix = th.localtime2unixstamp(end_time)
else:
end_tstamp_unix = end_time
# 1. Retrieve from timber and save as .csv.
timber_to_csv(start_tstamp_unix, end_tstamp_unix, outp_folder=csv_data_folder,
list_device_names=list_device_names, filename_retrieved=filename_retrieved)
# 2. Convert from csv to mat in given range.
file_list = os.listdir(csv_data_folder)
for filename in file_list:
tstart_filename = int(filename.split('.csv')[0].split('_')[-2])
tend_filename = tstart_filename + int(filename.split('.csv')[0].split('_')[-1])
if (tend_filename < start_tstamp_unix) or (tstart_filename > end_tstamp_unix):
continue
in_complete_path = csv_data_folder + '/' + filename
csv_to_file(in_complete_path, filename_converted=filename_converted)
def make_pickle(start_from_last=True, pickle_name_ws='ws_overview.pkl', pickle_name_bct='bct_overview.pkl',
mat_folder='wirescanner', mat_file_prefix='SPSmeas_', inj_delay_to_cycle_start=1015e-3,
cycle_csv_filepath='SPSMeasurementTools/cycle_momenta/MD_SCRUB_26_L26400_Q20_2014_V1.csv'):
if not os.path.isfile(pickle_name_bct):
raise RuntimeError('Must have BCT pickle.')
with open(pickle_name_bct, 'rb') as fid:
beams = pickle.load(fid)
if os.path.isfile(pickle_name_ws) or start_from_last:
with open(pickle_name_ws) as fid:
ws_dict = pickle.load(fid)
else:
ws_dict = {}
for SPSuser in beams.keys():
if not(SPSuser in ws_dict.keys()):
ws_dict[SPSuser] = {}
ws_dict[SPSuser]['timestamp_bct'] = []
ws_dict[SPSuser]['timestamp_ws'] = []
ws_dict[SPSuser]['device_name'] = []
ws_dict[SPSuser]['bunch_list'] = []
ws_dict[SPSuser]['norm_emit_in'] = []
ws_dict[SPSuser]['norm_emit_out'] = []
ws_dict[SPSuser]['area_in'] = []
ws_dict[SPSuser]['area_out'] = []
ws_dict[SPSuser]['acq_time_in_cycle_set_in'] = []
ws_dict[SPSuser]['acq_time_in_cycle_set_out'] = []
ws_dict[SPSuser]['acq_type'] = []
list_files = os.listdir(mat_folder)
n_files = len(list_files)
n_files_no_bct = 0
if n_files == 0:
print('No ws mat files found.')
for ctr, filename in enumerate(list_files):
print('Processing file %d/%d'%(ctr, n_files))
wsobj = WireScan(mat_folder +'/'+ filename, optics='Q20', cycle_csv_filepath=cycle_csv_filepath,
scans_in=True, scans_out=True)
t_stamp = th.localtime2unixstamp(wsobj.acq_time.split('.')[0], strformat='%Y/%m/%d %H:%M:%S')
t_stamp_bct = None
SPSuser = None
guess_t_stamp_bct = int(t_stamp - inj_delay_to_cycle_start - wsobj.acq_time_in_cycle_set_in/1000.)
for SPSuser_loop in beams.keys():
t_stamps_bct = np.int_(beams[SPSuser_loop]['timestamp_float'])
for jj in xrange(4, -1, -1):
idx_tstamp = np.where(t_stamps_bct == (guess_t_stamp_bct+jj))[0]
if len(idx_tstamp) == 1:
t_stamp_bct = t_stamps_bct[idx_tstamp]
SPSuser = SPSuser_loop
break
if not(t_stamp_bct == None):
break
# mask_past = np.array(t_stamps_bct) <= t_stamp
# if any(mask_past):
# t_stamp_bct_curr = np.max(np.array(t_stamps_bct)[mask_past])
# if t_stamp_bct is None:
# t_stamp_bct = t_stamp_bct_curr
# SPSuser = SPSuser_loop
# elif t_stamp_bct_curr > t_stamp_bct:
# t_stamp_bct = t_stamp_bct_curr
# SPSuser = SPSuser_loop
if t_stamp_bct == None:
print('No corresponding BCT time stamp found')
n_files_no_bct += 1
continue
#if start_from_last and len(ws_dict[SPSuser]['timestamp_ws']) > 0:
# if t_stamp <= ws_dict[SPSuser]['timestamp_ws'][-1]:
# continue
#elif t_stamp in ws_dict[SPSuser]['timestamp_ws']:
# continue
# if np.abs(t_stamp - t_stamp_bct) > 30:
# print('WARNING: WS time stamp differs from BCT time stamp by more ' +
# 'than 30s! Difference is %ds. Saving anyway.'%np.abs(t_stamp-t_stamp_bct))
ws_dict[SPSuser]['timestamp_bct'].append(t_stamp_bct)
ws_dict[SPSuser]['timestamp_ws'].append(t_stamp)
ws_dict[SPSuser]['device_name'].append(wsobj.device_name)
ws_dict[SPSuser]['bunch_list'].append(wsobj.bunch_list)
# ws_dict[SPSuser]['bunch_list'].append(wsobj.bunch_list_timber)
ws_dict[SPSuser]['norm_emit_in'].append(wsobj.norm_emit_in)
ws_dict[SPSuser]['norm_emit_out'].append(wsobj.norm_emit_out)
ws_dict[SPSuser]['area_in'].append(wsobj.area_in)
ws_dict[SPSuser]['area_out'].append(wsobj.area_out)
ws_dict[SPSuser]['acq_time_in_cycle_set_in'].append(wsobj.acq_time_in_cycle_set_in/1000.-inj_delay_to_cycle_start)
ws_dict[SPSuser]['acq_time_in_cycle_set_out'].append(wsobj.acq_time_in_cycle_set_out/1000.-inj_delay_to_cycle_start)
ws_dict[SPSuser]['acq_type'].append(wsobj.acq_type)
# Sort for ws timestamps.
for SPSuser in beams.keys():
ind_sorted = np.argsort(ws_dict[SPSuser]['timestamp_ws'])
for kk in ws_dict[SPSuser].keys():
ws_dict[SPSuser][kk] = list(np.take(ws_dict[SPSuser][kk], ind_sorted))
with open(pickle_name_ws, 'wb') as fid:
pickle.dump(ws_dict, fid)
print('Done! %d files could not be matched to a BCT timestamp.'%n_files_no_bct)
def get_timber_varlist(device_name):
varlist = [
device_name + ':ACQ_CLOCK_DIV',
device_name + ':ACQ_DELAY',
device_name + ':ACQ_TIME',
device_name + ':ACQTIMEINCYCLE_IN',
device_name + ':ACQTIMEINCYCLE_OUT',
device_name + ':ACQ_TYPE',
device_name + ':BUNCH_SELECTION',
# device_name + ':BUNCH_LIST',
device_name + ':CYCLE_TIME',
device_name + ':GAIN',
device_name + ':NB_ACQ',
device_name + ':NB_BUNCHES',
device_name + ':NB_PTS_SCAN_IN',
device_name + ':NB_PTS_SCAN_OUT',
device_name + ':RAW_POSITION_IN',
device_name + ':RAW_POSITION_OUT',
device_name + ':PROJ_BUNCH_DATASET1',
device_name + ':PROJ_BUNCH_DATASET2',
device_name + ':PROF_DATA_IN',
device_name + ':PROF_DATA_OUT',
device_name + ':PROF_POSITION_IN',
device_name + ':PROF_POSITION_OUT'
#device_name + '.APP.IN:ENERGY',
#device_name + '.APP.OUT:ENERGY',
#device_name + '.APP.IN:BETA'
]
return varlist