From 323e90aff328fdc3ab881e537d913df051bb203a Mon Sep 17 00:00:00 2001 From: beckermr Date: Sat, 7 Oct 2023 06:56:18 -0400 Subject: [PATCH] ENH support eval for gsobject --- eastlake/steps/pizza_cutter.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/eastlake/steps/pizza_cutter.py b/eastlake/steps/pizza_cutter.py index 8094317..fbda06c 100644 --- a/eastlake/steps/pizza_cutter.py +++ b/eastlake/steps/pizza_cutter.py @@ -139,19 +139,6 @@ def _prep_input_config_and_info_file(self, tilename, band, stash, odir, allbands else: pzyml["single_epoch"]["psf_type"] = "galsim" - # do this check to ensure things are ~constant - # not perfect but ok - for size_key in ["half_light_radius", "sigma", "fwhm"]: - if size_key in stash["psf_config"]: - try: - float(stash["psf_config"][size_key]) - except ValueError as e: - self.logger.error( - "couldn't interpret psf %s " - "as float" % (size_key)) - raise e - break - # write the config info for later with stash.update_output_pizza_cutter_yaml(tilename, band) as pyml: for i in range(len(pyml["src_info"])):