StartUp

Bases: KPFTranslatorFunction

Start KPF software for afternoon setup.

ARGS:

None

Source code in kpf/scripts/StartUp.py
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class StartUp(KPFTranslatorFunction):
    '''Start KPF software for afternoon setup.

    ARGS:
    =====
    None
    '''
    @classmethod
    def pre_condition(cls, args, logger, cfg):
        pass

    @classmethod
    def perform(cls, args, logger, cfg):
        # Start GUIs
        StartGUIs.execute({})

    @classmethod
    def post_condition(cls, args, logger, cfg):
        pass