From 49cb85b0e09b5d1e5ae530cb3ff8e28c895721b8 Mon Sep 17 00:00:00 2001 From: LukasK13 Date: Wed, 20 May 2020 11:31:29 +0200 Subject: [PATCH] Bugfix: default PSF with OSF --- esbo_etc/classes/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esbo_etc/classes/Config.py b/esbo_etc/classes/Config.py index 3f24ef5..efea093 100644 --- a/esbo_etc/classes/Config.py +++ b/esbo_etc/classes/Config.py @@ -127,7 +127,7 @@ class Configuration(object): mes = self.conf.common.d_aperture.check_quantity("val", u.m) mes is not None and error("Configuration check: common -> d_aperture: " + mes) if not hasattr(self.conf.common, "psf"): - setattr(self.conf.common, "psf", Entry(val="Airy")) + setattr(self.conf.common, "psf", Entry(val="Airy", osf=10)) else: if self.conf.common.psf().lower() != "airy": mes = self.conf.common.psf.check_file("val")