Beispiel #1
0
def main():
    args = get_options("fep1_mong", model_path)
    fep1_mong_check = FEP1MongCheck()
    try:
        fep1_mong_check.run(args)
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #2
0
def main():
    args = get_options("dpa", model_path)
    dpa_check = DPACheck()
    try:
        dpa_check.run(args)
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #3
0
def main():
    args = get_options("bep_pcb", model_path)
    bep_pcb_check = BEPPCBCheck()
    try:
        bep_pcb_check.run(args)
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #4
0
def main():
    args = get_options("acisfp", model_path)
    acisfp_check = ACISFPCheck()
    try:
        acisfp_check.run(args)
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #5
0
def main():
    args = get_options("dea", model_path)
    dea_check = ACISThermalCheck("1deamzt", "dea", VALIDATION_LIMITS, 
                                 HIST_LIMIT, calc_model, args)
    try:
        dea_check.run()
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #6
0
def main():
    args = get_options("psmc", model_path)
    psmc_check = ACISThermalCheck("1pdeaat", "psmc", VALIDATION_LIMITS, HIST_LIMIT,
                                  calc_model, args, other_telem=['1dahtbon'],
                                  other_map={'1dahtbon': 'dh_heater'})
    try:
        psmc_check.run()
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)
Beispiel #7
0
def main():
    opts = [("fps_nopref", {"default": default_nopref_list,
             "help": "Full path to the FP sensitive nopref file"})]
    args = get_options("acisfp", model_path, opts=opts)
    acisfp_check = ACISFPCheck("fptemp", "acisfp", VALIDATION_LIMITS, 
                               HIST_LIMIT, calc_model, args,
                               other_telem=['1dahtbon'],
                               other_map={'1dahtbon': 'dh_heater',
                                          "fptemp_11": "fptemp"})
    try:
        acisfp_check.run()
    except Exception as msg:
        if args.traceback:
            raise
        else:
            print("ERROR:", msg)
            sys.exit(1)