Skip to content

Commit

Permalink
Merge pull request #208 from lsst/tickets/DM-38687
Browse files Browse the repository at this point in the history
DM-38687: Remove deprecated ExposureIdInfo interfaces.
  • Loading branch information
TallJimbo committed Jan 4, 2024
2 parents b346346 + 7d23d9e commit 5bc294f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions python/lsst/ap/verify/testPipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,16 +165,13 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
outputs = self.run(**inputs)
butlerQC.put(outputs, outputRefs)

def run(self, exposure, exposureIdInfo=None, background=None, idGenerator=None):
def run(self, exposure, background=None, idGenerator=None):
"""Produce characterization outputs with no processing.
Parameters
----------
exposure : `lsst.afw.image.Exposure`
Exposure to characterize.
exposureIdInfo : `lsst.obs.base.ExposureIdInfo`, optional
ID info for exposure. Deprecated in favor of ``idGenerator``, and
ignored if that is provided.
background : `lsst.afw.math.BackgroundList`, optional
Initial model of background already subtracted from exposure.
idGenerator : `lsst.meas.base.IdGenerator`, optional
Expand Down Expand Up @@ -236,17 +233,14 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
outputs.matches = normalizedMatches
butlerQC.put(outputs, outputRefs)

def run(self, exposure, exposureIdInfo=None, background=None,
def run(self, exposure, background=None,
icSourceCat=None, idGenerator=None):
"""Produce calibration outputs with no processing.
Parameters
----------
exposure : `lsst.afw.image.Exposure`
Exposure to calibrate.
exposureIdInfo : `lsst.obs.base.ExposureIdInfo`, optional
ID info for exposure. Deprecated in favor of ``idGenerator``, and
ignored if that is provided.
background : `lsst.afw.math.BackgroundList`, optional
Background model already subtracted from exposure.
icSourceCat : `lsst.afw.table.SourceCatalog`, optional
Expand Down

0 comments on commit 5bc294f

Please sign in to comment.