Skip to content

Commit

Permalink
Add coordinate error fields to diaSrc
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsaunders committed Sep 15, 2023
1 parent 8a36b4b commit 9a80524
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/lsst/ip/diffim/detectAndMeasure.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ class DetectAndMeasureTask(lsst.pipe.base.PipelineTask):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.schema = afwTable.SourceTable.makeMinimalSchema()
# Add coordinate error fields:
afwTable.CoordKey.addErrorFields(self.schema)

self.algMetadata = dafBase.PropertyList()
self.makeSubtask("detection", schema=self.schema)
Expand Down

0 comments on commit 9a80524

Please sign in to comment.