This repository has been archived by the owner on Aug 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
scripting_2Dxybatch.ipy
237 lines (197 loc) · 7.13 KB
/
scripting_2Dxybatch.ipy
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
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 8 18:28:13 2015
@author: xf05id1
"""
import time
from epics import PV
bshopen=PV('XF:05IDB-PPS:1{PSh:4}Cmd:Opn-Cmd')
bshclose=PV('XF:05IDB-PPS:1{PSh:4}Cmd:Cls-Cmd')
bshsta=PV('XF:05IDB-PPS:1{PSh:4}Sts:Cls-Sts')
#for Npoint
fxVAL=PV('NPOINT:CH1:SET_POSITION.A')
fxRBV=PV('NPOINT:CH1:GET_POSITION')
fyVAL=PV('NPOINT:CH2:SET_POSITION.A')
fyRBV=PV('NPOINT:CH2:GET_POSITION')
def currenttimestr():
D0=str(time.localtime()[0])
D1=str(time.localtime()[1])
D2=str(time.localtime()[2])
D3=str(time.localtime()[3])
D4=str(time.localtime()[4])
currentTime=D0+'_'+D1+'_'+D2+'_'+D3+'_'+D4
return currentTime
def writecurrenttime(writingfile):
writingfile = open(recordfile, 'a')
writingfile.write('#'+currenttimestr()+'\n')
writingfile.close()
def writecscannum(writingfile, num):
writingfile = open(recordfile, 'a')
writingfile.write(str(num)+'\n')
writingfile.close()
def shutterclose():
print 'Done with this XRF 2D map. Closing shutter for position change.'
bshclose.put(1)
time.sleep(2)
while bshsta.get() == 0:
print 'shutter did not close, executing closing command again.'
bshclose.put(1)
time.sleep(2)
time.sleep(2)
print 'Shutter closed.'
def shutteropen():
print 'Open shutter for collecting XRF 2D map.'
bshopen.put(1)
time.sleep(2)
while bshsta.get() == 1:
print 'shutter did not open, executing opening command again.'
bshopen.put(1)
time.sleep(2)
time.sleep(2)
print 'Shutter opend.'
def recordxy(writingfile):
fxcur = fxRBV.get()
fycur = fyRBV.get()
writingfile = open(recordfile, 'a')
writingfile.write('endx = '+str(fxcur)+'\n')
writingfile.write('endy = '+str(fycur)+'\n')
writingfile.close()
################script starts here##################
#write text file:
batchscantitle='300226_Myneni_T0Puff'
#batchscantitle='test'
batchscandir='/nfs/xf05id1/data/batchscans/2015-cycle3/'
recordfile=batchscandir+currenttimestr()+'_XRF2D_xbatch_'+batchscantitle+'.py'
f = open(recordfile, 'w')
f.write('#'+batchscantitle+'\n')
f.write('# batch scan started time:'+currenttimestr()+'\n\n')
f.close()
waittime = 180 #waittime between scans in sec.
#1
writecurrenttime(f)
writecscannum(f, 1)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-80 --xnumstep=39 --xstepsize=1.0 --ystart=-80 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#2
writecurrenttime(f)
writecscannum(f, 2)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-40 --xnumstep=39 --xstepsize=1.0 --ystart=-80 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#3
writecurrenttime(f)
writecscannum(f, 3)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=0 --xnumstep=39 --xstepsize=1.0 --ystart=-80 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#4
writecurrenttime(f)
writecscannum(f, 4)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=40 --xnumstep=39 --xstepsize=1.0 --ystart=-80 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#5
writecurrenttime(f)
writecscannum(f, 5)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-80 --xnumstep=39 --xstepsize=1.0 --ystart=-40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#6
writecurrenttime(f)
writecscannum(f, 6)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-40 --xnumstep=39 --xstepsize=1.0 --ystart=-40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#7
writecurrenttime(f)
writecscannum(f, 7)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=0 --xnumstep=39 --xstepsize=1.0 --ystart=-40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#8
writecurrenttime(f)
writecscannum(f, 8)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=40 --xnumstep=39 --xstepsize=1.0 --ystart=-40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#9
writecurrenttime(f)
writecscannum(f, 9)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-80 --xnumstep=39 --xstepsize=1.0 --ystart=0 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#10
writecurrenttime(f)
writecscannum(f, 10)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-40 --xnumstep=39 --xstepsize=1.0 --ystart=0 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#11
writecurrenttime(f)
writecscannum(f, 11)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=0 --xnumstep=39 --xstepsize=1.0 --ystart=0 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#12
writecurrenttime(f)
writecscannum(f, 12)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=40 --xnumstep=39 --xstepsize=1.0 --ystart=0 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#13
writecurrenttime(f)
writecscannum(f, 13)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-80 --xnumstep=39 --xstepsize=1.0 --ystart=40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#14
writecurrenttime(f)
writecscannum(f, 14)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=-40 --xnumstep=39 --xstepsize=1.0 --ystart=40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#15
writecurrenttime(f)
writecscannum(f, 15)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=0 --xnumstep=39 --xstepsize=1.0 --ystart=40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)
#16
writecurrenttime(f)
writecscannum(f, 16)
shutteropen()
%run ./srx-2dscan-sdd-timeout.py --detname=XF:05IDA{IM:1} --xstart=40 --xnumstep=39 --xstepsize=1.0 --ystart=40 --ynumstep=39 --ystepsize=1.0 --wait=0.1 --acqtime=1.4 --acqnum=1 --checkbeam --checkcryo
recordxy(f)
shutterclose()
time.sleep(waittime)