Skip to content

Commit

Permalink
Merge pull request #224 from lsst/tickets/DM-40150
Browse files Browse the repository at this point in the history
DM-40150: Update docs to reflect new name of QuantumContext
  • Loading branch information
timj authored Jan 5, 2024
2 parents 0b17872 + 888d589 commit 6992d12
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.sconsign.dblite
config.log
.coverage*
_build.*
.cache
.sconf_temp
*.o
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/linearity.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
ouptutRefs : `lsst.pipe.base.connections.OutputQuantizedConnection`
ouptutRefs : `lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/makeBrighterFatterKernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
ouptutRefs : `lsst.pipe.base.connections.OutputQuantizedConnection`
ouptutRefs : `lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/measureCrosstalk.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,11 +423,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
ouptutRefs : `lsst.pipe.base.connections.OutputQuantizedConnection`
ouptutRefs : `lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/pdCorrection.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
outputRefs : `lsst.pipe.base.connections.OutputQuantizedConnection`
outputRefs : `lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down
8 changes: 4 additions & 4 deletions python/lsst/cp/pipe/ptc/cpExtractPtcTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `~lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `~lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `~lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `~lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
ouptutRefs : `~lsst.pipe.base.connections.OutputQuantizedConnection`
ouptutRefs : `~lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down Expand Up @@ -340,7 +340,7 @@ def _guaranteeOutputs(self, inputDims, outputs, outputRefs):
``outputCovariances``
Output PTC datasets (`list` [`lsst.ip.isr.IsrCalib`])
outputRefs : `~lsst.pipe.base.connections.OutputQuantizedConnection`
outputRefs : `~lsst.pipe.base.OutputQuantizedConnection`
Container with all of the outputs expected to be generated.
Returns
Expand Down
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/ptc/cpSolvePtcTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
Parameters
----------
butlerQC : `~lsst.daf.butler.butlerQuantumContext.ButlerQuantumContext`
butlerQC : `~lsst.daf.butler.QuantumContext`
Butler to operate on.
inputRefs : `~lsst.pipe.base.connections.InputQuantizedConnection`
inputRefs : `~lsst.pipe.base.InputQuantizedConnection`
Input data refs to load.
ouptutRefs : `~lsst.pipe.base.connections.OutputQuantizedConnection`
ouptutRefs : `~lsst.pipe.base.OutputQuantizedConnection`
Output data refs to persist.
"""
inputs = butlerQC.get(inputRefs)
Expand Down

0 comments on commit 6992d12

Please sign in to comment.