Bugfix: default PSF with OSF

This commit is contained in:
Lukas Klass 2020-05-20 11:31:29 +02:00
parent 2dc6f22af4
commit 49cb85b0e0
1 changed files with 1 additions and 1 deletions

View File

@ -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")