From dd986e284c8cc86b497054f453a024133b6867b6 Mon Sep 17 00:00:00 2001 From: gac-x03da Date: Fri, 2 Feb 2018 14:25:00 +0100 Subject: [PATCH] Script execution --- script/optics/PhotonFluxSpectrum.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/optics/PhotonFluxSpectrum.py b/script/optics/PhotonFluxSpectrum.py index aab6f5ff..dec0f1bb 100644 --- a/script/optics/PhotonFluxSpectrum.py +++ b/script/optics/PhotonFluxSpectrum.py @@ -78,18 +78,18 @@ else: def trig(): wait_beam() - print "init" + print time.asctime() + "init" caput(KEI_DIODE + "DOINIT", 1) caput(KEI_RMU + "DOINIT", 1) - print "trigger" + print time.asctime() + "trigger" caput(KEI_DIODE + "DOTRIGGER", 1) caput(KEI_RMU + "DOTRIGGER", 1) caput("X03DA-OP-10ADC:TRG.PROC", 1) #time.sleep(DWELL * 1.1) - print "fetch" + print time.asctime() + "fetch" caput(KEI_DIODE + "DOFETCH", 1) caput(KEI_RMU + "DOFETCH", 1) - print "done" + print time.asctime() + "done" value = DWELL * 10.0 SampleCurrentAveraging.write(value)