-
Notifications
You must be signed in to change notification settings - Fork 0
/
scan_list_pzt.py
60 lines (52 loc) · 1.67 KB
/
scan_list_pzt.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
def fxi_load_scan_list_pzt():
scan_list = {}
txm_pzt_energy_scan = {
'moving_pzt': None,
'start': None,
'stop': None,
'steps': None,
'eng_list': [],
'detectors': 'dcm_th2',
'repeat_num': 1,
'sleep_time': 1,
'fn': "/home/xf18id/Documents/FXI_commision/DCM_scan/",
'introduction': ''' provide introductory description here '''
}
txm_pzt_overnight_scan = {
'moving_pzt': None,
'start': None,
'stop': None,
'steps': None,
'detectors': 'dcm_th2',
'repeat_num': 10,
'sleep_time': 1,
'night_sleep_time': 3600,
'scan_num': 12,
'fn': "/home/xf18id/Documents/FXI_commision/DCM_scan/",
'introduction': ''' provide introductory description here '''
}
txm_pzt_scan = {
'pzt_motor': None,
'start': None,
'stop': None,
'steps': None,
'detectors': 'Vout2',
'sleep_time': 1,
'introduction': ''' provide introductory description here '''
}
txm_pzt_scan_multiple = {
'moving_pzt': None,
'start': None,
'stop': None,
'steps': None,
'detectors': 'Vout2',
'repeat_num': 2,
'sleep_time': 1,
'fn': "/home/xf18id/Documents/FXI_commision/DCM_scan/",
'introduction': ''' provide introductory description here '''
}
scan_list["txm_pzt_energy_scan"] = txm_pzt_energy_scan
scan_list["txm_pzt_overnight_scan"] = txm_pzt_overnight_scan
scan_list["txm_pzt_scan"] = txm_pzt_scan
scan_list["txm_pzt_scan_multiple"] = txm_pzt_scan_multiple
return scan_list