Skip to content

Commit

Permalink
Remove deprecated ExposureIdInfo interfaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Dec 27, 2023
1 parent b346346 commit 7d23d9e
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 7d23d9e

Please sign in to comment.