From b12c77482678547ac70bb6b0a01c1f701f6e1cb7 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 19 Nov 2024 16:37:52 -0500 Subject: [PATCH] try to untangle source catalog vs source detection --- romancal/pipeline/exposure_pipeline.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/romancal/pipeline/exposure_pipeline.py b/romancal/pipeline/exposure_pipeline.py index a52eb2dad..dc671c2ec 100644 --- a/romancal/pipeline/exposure_pipeline.py +++ b/romancal/pipeline/exposure_pipeline.py @@ -112,7 +112,8 @@ def process(self, input): log.info("Tweakreg step is being SKIPPED") result.meta.cal_step.flat_field = "SKIPPED" result.meta.cal_step.photom = "SKIPPED" - result.meta.cal_step.source_catalog = "SKIPPED" + # FIXME source_catalog ain't in the schema + # result.meta.cal_step.source_catalog = "SKIPPED" lib.shelve(result, model_index) @@ -149,7 +150,8 @@ def create_fully_saturated_zeroed_image(self, input_model): "assign_wcs", "flat_field", "photom", - "source_catalog", + # FIXME source_catalog ain't in the schema + # "source_catalog", ]: fully_saturated_model.meta.cal_step[step_str] = "SKIPPED"