Closedown
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#Mon Aug 08 11:59:34 CEST 2022
|
||||
#Mon Aug 08 12:00:10 CEST 2022
|
||||
autoSaveScanData=true
|
||||
simulation=false
|
||||
commandExecutionEvents=false
|
||||
@@ -12,7 +12,7 @@ dataScanSaveScript=false
|
||||
dataScanSaveSetpoints=false
|
||||
notifiedTasks=null
|
||||
parallelInitialization=false
|
||||
fdaSerialization=false
|
||||
fdaSerialization=true
|
||||
dataTransferPath=null
|
||||
saveConsoleSessionFiles=false
|
||||
versionTrackingManual=false
|
||||
|
||||
@@ -34,7 +34,11 @@
|
||||
"style" : 1,
|
||||
"size" : 13
|
||||
},
|
||||
"fontTerminal" : null,
|
||||
"fontTerminal" : {
|
||||
"name" : "Monospaced",
|
||||
"style" : 0,
|
||||
"size" : 14
|
||||
},
|
||||
"tabSize" : 4,
|
||||
"contentWidth" : 0,
|
||||
"editorBackground" : null,
|
||||
@@ -46,34 +50,34 @@
|
||||
"dataPanelLocation" : null,
|
||||
"openDataFilesInDocTab" : false,
|
||||
"noVariableEvaluationPropagation" : false,
|
||||
"processingScripts" : null,
|
||||
"processingScripts" : [ ],
|
||||
"asyncViewersUpdate" : false,
|
||||
"scanPlotDisabled" : false,
|
||||
"scanTableDisabled" : false,
|
||||
"cachedDataPanel" : false,
|
||||
"dataExtensions" : null,
|
||||
"dataSubFiles" : null,
|
||||
"dataExtensions" : "",
|
||||
"dataSubFiles" : "",
|
||||
"hideFileName" : false,
|
||||
"showEmergencyStop" : false,
|
||||
"showHomingButtons" : false,
|
||||
"showJogButtons" : false,
|
||||
"hideScanPanel" : false,
|
||||
"hideOutputPanel" : false,
|
||||
"showXScanFileBrowser" : false,
|
||||
"showXScanFileBrowser" : true,
|
||||
"showQueueBrowser" : false,
|
||||
"backgroundRendering" : false,
|
||||
"showImageStatusBar" : false,
|
||||
"showImageStatusBar" : true,
|
||||
"persistRendererWindows" : false,
|
||||
"defaultRendererColormap" : "Grayscale",
|
||||
"linePlot" : "ch.psi.pshell.plot.LinePlotJFree",
|
||||
"matrixPlot" : "ch.psi.pshell.plot.MatrixPlotJFree",
|
||||
"surfacePlot" : null,
|
||||
"surfacePlot" : "null",
|
||||
"timePlot" : "ch.psi.pshell.plot.TimePlotJFree",
|
||||
"plotsDetached" : false,
|
||||
"plotLayout" : "Vertical",
|
||||
"quality" : "High",
|
||||
"defaultPlotColormap" : "Temperature",
|
||||
"markerSize" : 0,
|
||||
"markerSize" : 2,
|
||||
"plotBackground" : null,
|
||||
"gridColor" : null,
|
||||
"outlineColor" : null,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
sessionsPath={outp}/sessions
|
||||
scriptPath={home}/script
|
||||
configFileDevices={config}/devices.properties
|
||||
xscanPath={script}
|
||||
xscanPath=~/operation/fda/scans
|
||||
queuePath={script}
|
||||
extensionsPath={home}/extensions
|
||||
configPath={home}/config
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#Fri Mar 25 18:15:42 CET 2022
|
||||
#Mon Aug 08 12:00:10 CEST 2022
|
||||
LastRunDate=220325
|
||||
FileSequentialNumber=17
|
||||
DaySequentialNumber=3
|
||||
DaySequentialNumber=0
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
##################################################################################################
|
||||
|
||||
|
||||
import ch.psi.fda.ProcessorFDA as ProcessorFDA
|
||||
import ch.psi.pshell.crlogic.CrlogicPositioner as CrlogicPositioner
|
||||
import ch.psi.pshell.crlogic.CrlogicSensor as CrlogicSensor
|
||||
|
||||
@@ -40,13 +39,4 @@ def setup_brag_plot(auto=True):
|
||||
setup_plotting(range = [scan_start - offset, scan_stop - offset])
|
||||
|
||||
|
||||
#add_device(bragg.getExtEncoder(), True)
|
||||
|
||||
|
||||
|
||||
|
||||
def run_fda(file_name, arguments={}):
|
||||
"""
|
||||
Run FDA loop
|
||||
"""
|
||||
ProcessorFDA().execute(file_name,arguments)
|
||||
#add_device(bragg.getExtEncoder(), True)
|
||||
@@ -8,5 +8,5 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2] )
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20170314_Andrey/Ni_EXAFS_fluo.xml")
|
||||
xscan("users/20170314_Andrey/Ni_EXAFS_fluo.xml")
|
||||
|
||||
|
||||
@@ -15,5 +15,5 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2] )
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20170314_Andrey/Fe_EXAFS_fluo.xml")
|
||||
xscan("users/20170314_Andrey/Fe_EXAFS_fluo.xml")
|
||||
|
||||
|
||||
@@ -7,6 +7,6 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2] )
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20170314_Andrey/Fe_EXAFS_fluo.xml")
|
||||
xscan("users/20170314_Andrey/Fe_EXAFS_fluo.xml")
|
||||
|
||||
|
||||
|
||||
@@ -13,4 +13,4 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2])
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20201127_Vogelin/Fe_test.xml")
|
||||
xscan("users/20201127_Vogelin/Fe_test.xml")
|
||||
|
||||
@@ -7,4 +7,4 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2])
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20201127_Vogelin/Fe_EXAFS_fluo.xml")
|
||||
xscan("users/20201127_Vogelin/Fe_EXAFS_fluo.xml")
|
||||
|
||||
@@ -21,4 +21,4 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2])
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20201127_Vogelin/Fe_EXAFS_transmission.xml")
|
||||
xscan("users/20201127_Vogelin/Fe_EXAFS_transmission.xml")
|
||||
|
||||
@@ -6,4 +6,4 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[1])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[2])
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20201127_Vogelin/SDD_EXAFS_fluo.xml")
|
||||
xscan("users/20201127_Vogelin/SDD_EXAFS_fluo.xml")
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
caput("X10DA-ES1-MA1:TRX", 5)
|
||||
caput("X10DA-ES1-MA1:TRY", 11)
|
||||
run_fda("users/20190827_Craig/RXES_sampleTest2.xml")
|
||||
run_fda("users/20190827_Craig/XES_test.xml")
|
||||
xscan("users/20190827_Craig/RXES_sampleTest2.xml")
|
||||
xscan("users/20190827_Craig/XES_test.xml")
|
||||
|
||||
|
||||
|
||||
@@ -21,10 +21,10 @@ for pos in positions:
|
||||
caput("X10DA-ES1-MA1:TRX", pos[3])
|
||||
caput("X10DA-ES1-MA1:TRY", pos[4] )
|
||||
set_exec_pars(name = pos[0], reset = True)
|
||||
run_fda("users/20190827_Craig/RXES_Nb_calib.xml")
|
||||
xscan("users/20190827_Craig/RXES_Nb_calib.xml")
|
||||
set_exec_pars(name = pos[1], reset = True)
|
||||
run_fda("users/20190827_Craig/RXES_Nb_XAS.xml")
|
||||
xscan("users/20190827_Craig/RXES_Nb_XAS.xml")
|
||||
set_exec_pars(name = pos[2], reset = True)
|
||||
run_fda("users/20190827_Craig/XES_Nb.xml")
|
||||
xscan("users/20190827_Craig/XES_Nb.xml")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user