-
Notifications
You must be signed in to change notification settings - Fork 0
/
scan_list_other.py
227 lines (195 loc) · 5.18 KB
/
scan_list_other.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
def fxi_load_scan_list_other():
scan_list = {}
txm_beam_profile_scan = {
'dir': None,
'start': None,
'end': None,
'steps': None,
'delay_time': 0.1,
'mv_back': False,
'introduction': ''' Description:
'''
}
txm_cond_scan = {
'detectors': 'detA1',
'introduction': ''' Description:
'''
}
txm_knife_edge_scan_for_condensor = {
'det': 'detA1',
'mot1': 'zps_sz',
'mot1_start': -1000,
'mot1_end': 1000,
'mot1_points': 11,
'mot2': 'zps_sy',
'mot2_start': -50,
'mot2_end': 50,
'mot2_points': 11,
'mot2_snake': False,
'introduction': ''' Description:
'''
}
txm_load_cell_scan = {
'pzt_cm_bender_pos_list': None,
'pbsl_y_pos_list': None,
'num': None,
'eng_start': None,
'eng_end': None,
'steps': None,
'delay_time': 0.5,
'introduction': ''' Description:
'''
}
txm_load_cell_scan_original = {
'pzt_cm_bender_pos_list': None,
'pbsl_y_pos_list': None,
'num': None,
'eng_start': None,
'eng_end': None,
'steps': None,
'delay_time': 0.5,
'introduction': ''' Description:
'''
}
txm_repeat_scan = {
'detectors': [],
'motor': None,
'start': None,
'stop': None,
'steps': None,
'num': 1,
'sleep_time': 1.2,
'introduction': ''' Description:
'''
}
txm_ssa_scan_pbsl_x_gap = {
'pbsl_x_gap_list': None,
'ssa_motor': None,
'ssa_start': None,
'ssa_end': None,
'ssa_steps': None,
'introduction': ''' Description:
'''
}
txm_ssa_scan_pbsl_y_gap = {
'pbsl_y_gap_list': None,
'ssa_motor': None,
'ssa_start': None,
'ssa_end': None,
'ssa_steps': None,
'introduction': ''' Description:
'''
}
txm_ssa_scan_tm_bender = {
'bender_pos_list': None,
'ssa_motor': None,
'ssa_start': None,
'ssa_end': None,
'ssa_steps': None,
'mv_back': False,
'introduction': ''' Description:
'''
}
txm_ssa_scan_tm_yaw = {
'tm_yaw_pos_list': None,
'ssa_motor': None,
'ssa_start': None,
'ssa_end': None,
'ssa_steps': None,
'introduction': ''' Description:
'''
}
txm_test_scan = {
'exposure_time': 0.1,
'out_x': -100,
'out_y': -100,
'out_z': 0,
'out_r': 0,
'period': 0.1,
'num_img': 10,
'relative_move_flag': False,
'sleep_time': 0,
'rot_first_flag': 1,
'close_shutter_in_scan': False,
'simu': False,
'introduction': ''' Description:
'''
}
txm_test_scan2 = {
'exposure_time': 0.1,
'period_time': 0.1,
'out_x': -100,
'out_y': -100,
'out_z': 0,
'out_r': 0,
'num_img': 10,
'take_dark_img': True,
'relative_move_flag': 1,
'rot_first_flag': 1,
'simu': False,
'introduction': ''' Description:
'''
}
txm_tm_pitch_scan = {
'tm_pitch_list': None,
'ssa_h_start': None,
'ssa_h_end': None,
'steps': None,
'delay_time': 0.5,
'introduction': ''' Description:
'''
}
txm_z_scan = {
'scan_motor': 'zp_z',
'start': -0.03,
'stop': 0.03,
'steps': 5,
'out_x': -100,
'out_y': -100,
'out_z': 0,
'chunk_size': 10,
'exposure_time': 0.1,
'relative_move_flag': 1,
'introduction': ''' Description:
'''
}
txm_z_scan2 = {
'start': -0.03,
'stop': 0.03,
'steps': 5,
'out_x': -100,
'out_y': -100,
'out_z': 0,
'chunk_size': 10,
'exposure_time': 0.1,
'introduction': ''' Description:
'''
}
txm_z_scan3 = {
'start': -0.03,
'stop': 0.03,
'steps': 5,
'out_x': -100,
'out_y': -100,
'chunk_size': 10,
'exposure_time': 0.1,
'introduction': ''' Description:
'''
}
scan_list["txm_beam_profile_scan"] = txm_beam_profile_scan
scan_list["txm_cond_scan"] = txm_cond_scan
scan_list["txm_knife_edge_scan_for_condensor"] = txm_knife_edge_scan_for_condensor
scan_list["txm_load_cell_scan"] = txm_load_cell_scan
scan_list["txm_load_cell_scan_original"] = txm_load_cell_scan_original
scan_list["txm_repeat_scan"] = txm_repeat_scan
scan_list["txm_ssa_scan_pbsl_x_gap"] = txm_ssa_scan_pbsl_x_gap
scan_list["txm_ssa_scan_pbsl_y_gap"] = txm_ssa_scan_pbsl_y_gap
scan_list["txm_ssa_scan_tm_bender"] = txm_ssa_scan_tm_bender
scan_list["txm_ssa_scan_tm_yaw"] = txm_ssa_scan_tm_yaw
scan_list["txm_test_scan"] = txm_test_scan
scan_list["txm_test_scan2"] = txm_test_scan2
scan_list["txm_tm_pitch_scan"] = txm_tm_pitch_scan
scan_list["txm_z_scan"] = txm_z_scan
scan_list["txm_z_scan2"] = txm_z_scan2
scan_list["txm_z_scan3"] = txm_z_scan3
return scan_list