Skip to content

Commit

Permalink
Merge pull request #310 from lsst/tickets/DM-43736
Browse files Browse the repository at this point in the history
DM-43736: Persist the PSF-matching kernel
  • Loading branch information
isullivan authored Apr 17, 2024
2 parents 6594611 + 94bd986 commit 1470d8b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/lsst/ip/diffim/subtractImages.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ class SubtractImageOutputConnections(lsst.pipe.base.PipelineTaskConnections,
storageClass="ExposureF",
name="{fakesType}{coaddName}Diff_matchedExp",
)
psfMatchingKernel = connectionTypes.Output(
doc="Kernel used to PSF match the science and template images.",
dimensions=("instrument", "visit", "detector"),
storageClass="MatchingKernel",
name="{fakesType}{coaddName}Diff_psfMatchKernel",
)


class SubtractScoreOutputConnections(lsst.pipe.base.PipelineTaskConnections,
Expand All @@ -106,6 +112,12 @@ class SubtractScoreOutputConnections(lsst.pipe.base.PipelineTaskConnections,
storageClass="ExposureF",
name="{fakesType}{coaddName}Diff_scoreExp",
)
psfMatchingKernel = connectionTypes.Output(
doc="Kernel used to PSF match the science and template images.",
dimensions=("instrument", "visit", "detector"),
storageClass="MatchingKernel",
name="{fakesType}{coaddName}Diff_psfScoreMatchKernel",
)


class AlardLuptonSubtractConnections(SubtractInputConnections, SubtractImageOutputConnections):
Expand Down

0 comments on commit 1470d8b

Please sign in to comment.