Script execution

This commit is contained in:
gac-x10da
2019-03-19 10:58:20 +01:00
parent f2b6796ad5
commit 886bce8d24

View File

@@ -114,13 +114,13 @@ for setpoint1 in range(0, 30):
detector9Diff=detector9On-detector9Off
detector10Diff=detector10On;
detector11Diff=detector11On;
for i in range (0,ROI1size):
detector10Diff[i]=detector10On[i]-detector10Off[i]
for i in range (0,ROI2size):
detector11Diff[i]=detector11On[i]-detector11Off[i]
detector10Diff=arrsub(detector10On, detector10Off)
detector11Diff=arrsub(detector11On, detector11Off)
scan.append ([setpoint1], [readback1], [detector1On, detector1Off, detector2On, detector2Off, detector3On, detector3Off, detector4On, detector4Off, detector5On, detector5Off, detector6On,detector6Off, detector7On, detector7Off, detector8On, detector8Off, detector9On, detector9Off, detector10On, detector10Off, detector11On, detector11Off,detector9Diff,detector10Diff,detector11Diff])
#Closing channels
SAI01.close()
SAI02.close()