-
Notifications
You must be signed in to change notification settings - Fork 14
/
gov_lib.py
59 lines (52 loc) · 2.19 KB
/
gov_lib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from config_params import GOVERNOR_TIMEOUT, LOW_MAG_GAIN, LOW_MAG_EXP_TIME, LOW_MAG_GAIN_DA, LOW_MAG_EXP_TIME_DA
from ophyd.utils.errors import StatusTimeoutError, WaitTimeoutError
import ophyd
from ophyd import StatusBase
from beamline_support import setPvValFromDescriptor as setPvDesc
import daq_utils
from daq_utils import getBlConfig
import logging
logger = logging.getLogger(__name__)
def set_detz_in(gov_robot, distance):
gov_robot.dev.dz.target_In.set(distance)
def set_detz_out(gov_robot, distance):
gov_robot.dev.dz.target_Out.set(distance)
def setGovRobot(gov_robot, state, wait=True):
try:
logger.info(f"setGovRobot{state}")
if gov_robot.state.get() == state:
logger.warning(f'governor already in state: {state}')
if gov_robot.state.get() == "M" and state != "SE":
raise Exception(f'Governor can not transition from M to {state}')
govStatus = gov_robot.set(state)
# TODO ophyd object should check that the request is a valid state transition
if wait:
waitGov(govStatus)
if wait and govStatus.success and gov_robot.state.get() != state:
raise Exception(f'Did not reach expected state "{state}". actual state is "{gov_robot.state.get()}"')
if ((wait and govStatus.success) or not wait) and state in ["SA", "DA", "DI", "SE"]:
toggleLowMagCameraSettings(state)
return govStatus
except Exception as e:
logger.error(f"Governor did not reach {state}: exception {e}")
govStatus = StatusBase()
govStatus.set_exception(e)
return govStatus
def waitGov(status, timeout=GOVERNOR_TIMEOUT):
try:
# TODO add callback for periodic updates
ophyd.status.wait(status, timeout)
except (StatusTimeoutError, WaitTimeoutError) as e:
message = 'Governor Timeout!'
logger.error(message)
#gui_message(message)
def waitGovNoSleep(timeout=GOVERNOR_TIMEOUT):
pass
def toggleLowMagCameraSettings(stateCode):
if daq_utils.beamline != "nyx":
if (stateCode == "DA"):
setPvDesc("lowMagGain", getBlConfig(LOW_MAG_GAIN_DA))
setPvDesc("lowMagAcquireTime",getBlConfig(LOW_MAG_EXP_TIME_DA))
else:
setPvDesc("lowMagGain", getBlConfig(LOW_MAG_GAIN))
setPvDesc("lowMagAcquireTime",getBlConfig(LOW_MAG_EXP_TIME))