Skip to content

Commit

Permalink
Merge pull request #30 from lsst/tickets/DM-40500
Browse files Browse the repository at this point in the history
DM-40500: Remove all usage of lookupStaticCalibrations.
  • Loading branch information
TallJimbo committed Aug 30, 2023
2 parents 6911c81 + 3469043 commit e14ceff
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions python/lsst/cp/verify/verifyCalib.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
import lsst.pipe.base as pipeBase
import lsst.pipe.base.connectionTypes as cT

from lsst.cp.pipe._lookupStaticCalibration import lookupStaticCalibration

__all__ = ['CpVerifyCalibConfig', 'CpVerifyCalibTask']


Expand Down Expand Up @@ -53,7 +51,6 @@ class CpVerifyCalibConnections(pipeBase.PipelineTaskConnections,
doc="Input camera to use for gain lookup.",
storageClass="Camera",
dimensions=("instrument",),
lookupFunction=lookupStaticCalibration,
isCalibration=True,
)

Expand Down
2 changes: 0 additions & 2 deletions python/lsst/cp/verify/verifyLinearity.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ class CpvLinearitySolveConnections(pipeBase.PipelineTaskConnections,
storageClass="Camera",
dimensions=("instrument", ),
isCalibration=True,
lookupFunction=cpPipe._lookupStaticCalibration.lookupStaticCalibration,
)
inputPtc = cT.Input(
name="ptc",
Expand Down Expand Up @@ -297,7 +296,6 @@ class CpvPhotodiodeCorrectionConnections(pipeBase.PipelineTaskConnections,
storageClass="Camera",
dimensions=("instrument", ),
isCalibration=True,
lookupFunction=cpPipe._lookupStaticCalibration.lookupStaticCalibration,
)

inputPtc = cT.Input(
Expand Down

0 comments on commit e14ceff

Please sign in to comment.