Bases: KPFTranslatorFunction
AO rotator needs to be in the Manual mode before observing.
KTL Keywords Used:
Source code in kpf/ao/SetAORotatorManual.py
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 | class SetAORotatorManual(KPFTranslatorFunction):
'''AO rotator needs to be in the Manual mode before observing.
KTL Keywords Used:
- `ao.OBRTDSRC`
- `ao.OBRTMOVE`
'''
@classmethod
def pre_condition(cls, args, logger, cfg):
pass
@classmethod
def perform(cls, args, logger, cfg):
ao = ktl.cache('ao')
log.debug("Setting AO rotator to manual mode")
ao['OBRTDSRC'].write('0')
ao['OBRTMOVE'].write('1')
@classmethod
def post_condition(cls, args, logger, cfg):
success = ktl.waitfor('($ao.OBRTDSRC == manual)', timeout=3)
if success is not True:
ao = ktl.cache('ao')
raise FailedToReachDestination(ao['OBRTDSRC'].read(), 'manual')
|