diff --git a/script/local.py b/script/local.py index b3df35c..176c135 100644 --- a/script/local.py +++ b/script/local.py @@ -67,10 +67,7 @@ def lup(): def kickstart(): - alpha.kickstart() - delta.kickstart() - gamma.kickstart() - omegaV.kickstart() + parallelize(alpha.kickstart, delta.kickstart, gamma.kickstart, omegaV.kickstart) ################################################################################################### # Pseudo-devices @@ -626,4 +623,9 @@ load_user_env() load_exp_context() +################################################################################################### +# Device initialization +################################################################################################### + +kickstart() diff --git a/script/test/TimeTest.py b/script/test/TimeTest.py index 8ebe04a..73d5e08 100644 --- a/script/test/TimeTest.py +++ b/script/test/TimeTest.py @@ -9,8 +9,9 @@ for i in frange(0.9, 0.0, -0.1): alpha.waitReady(-1) """ -v=frange(0.0, 1.0, 0.1) + frange(0.9, 0.0, -0.1) +#v=frange(0.0, 1.0, 0.1) + frange(0.9, 0.0, -0.1) +v=frange(0.0, 1.0, 0.1) vscan (alpha, current, v) print time.time() - start \ No newline at end of file