From 3637fa94926712ed05ee55923c4c168e35d3bec8 Mon Sep 17 00:00:00 2001 From: LukasK13 Date: Mon, 11 May 2020 10:37:38 +0200 Subject: [PATCH] Check PSF oversampling parameter --- esbo_etc/classes/Config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esbo_etc/classes/Config.py b/esbo_etc/classes/Config.py index 8a58f23..677a246 100644 --- a/esbo_etc/classes/Config.py +++ b/esbo_etc/classes/Config.py @@ -132,6 +132,8 @@ class Configuration(object): if self.conf.common.psf().lower() != "airy": mes = self.conf.common.psf.check_file("val") mes is not None and error("Configuration check: common -> psf: " + mes) + mes = self.conf.common.psf.check_float("osf") + mes is not None and error("Configuration check: common -> psf: " + mes) if hasattr(self.conf.common, "jitter_sigma"): mes = self.conf.common.jitter_sigma.check_quantity("val", u.arcsec) mes is not None and error("Configuration check: common -> jitter_sigma: " + mes)