diff --git a/script/QueuedHoloScan.py b/script/QueuedHoloScan.py index 93a0491d..862fa68d 100644 --- a/script/QueuedHoloScan.py +++ b/script/QueuedHoloScan.py @@ -34,7 +34,6 @@ PHI_RANGE = (-170.0, 170.0) # (tuple (min, max)) THETA_RANGE = (-9.5, 80.5) # (tuple (min, max)) STEPS = (40.0, 1.0) # (tuple (phi, theta)) ZIGZAG = True -positions = [(PHI_RANGE[0], THETA_RANGE[0]), (PHI_RANGE[1], THETA_RANGE[1]), STEPS] LATENCY=0.0 # close beam shutter and turn off analyser at the end of the scan @@ -43,6 +42,16 @@ CLOSE_SHUTTER_AT_END = False # --- DO NOT EDIT BELOW THIS LINE! --- +motors = MOTORS +sensors = SENSORS +phi_range = PHI_RANGE +theta_range = THETA_RANGE +steps = STEPS +zigzag = ZIGZAG +latency = LATENCY + +positions = [(phi_range[0], theta_range[0]), (phi_range[1], theta_range[1]), steps] + set_exec_pars(keep=False) set_exec_pars(compression=True)