Skip to content

Commit

Permalink
try to untangle source catalog vs source detection
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Nov 19, 2024
1 parent 9d8e8aa commit e0e22db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions romancal/pipeline/exposure_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit e0e22db

Please sign in to comment.