From 9f55d52ea6735b8db971f0501d406dfaaec4ae79 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Thu, 4 Jan 2024 14:52:08 -0700 Subject: [PATCH 1/2] Update docs to reflect new name of QuantumContext --- python/lsst/cp/pipe/linearity.py | 6 +++--- python/lsst/cp/pipe/makeBrighterFatterKernel.py | 6 +++--- python/lsst/cp/pipe/measureCrosstalk.py | 6 +++--- python/lsst/cp/pipe/pdCorrection.py | 6 +++--- python/lsst/cp/pipe/ptc/cpExtractPtcTask.py | 8 ++++---- python/lsst/cp/pipe/ptc/cpSolvePtcTask.py | 6 +++--- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/python/lsst/cp/pipe/linearity.py b/python/lsst/cp/pipe/linearity.py index ca081a33..dec57033 100644 --- a/python/lsst/cp/pipe/linearity.py +++ b/python/lsst/cp/pipe/linearity.py @@ -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) diff --git a/python/lsst/cp/pipe/makeBrighterFatterKernel.py b/python/lsst/cp/pipe/makeBrighterFatterKernel.py index f0e55627..927307df 100644 --- a/python/lsst/cp/pipe/makeBrighterFatterKernel.py +++ b/python/lsst/cp/pipe/makeBrighterFatterKernel.py @@ -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) diff --git a/python/lsst/cp/pipe/measureCrosstalk.py b/python/lsst/cp/pipe/measureCrosstalk.py index a95b2479..ab36ebe4 100644 --- a/python/lsst/cp/pipe/measureCrosstalk.py +++ b/python/lsst/cp/pipe/measureCrosstalk.py @@ -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) diff --git a/python/lsst/cp/pipe/pdCorrection.py b/python/lsst/cp/pipe/pdCorrection.py index 8906da45..cdaf1fd4 100644 --- a/python/lsst/cp/pipe/pdCorrection.py +++ b/python/lsst/cp/pipe/pdCorrection.py @@ -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) diff --git a/python/lsst/cp/pipe/ptc/cpExtractPtcTask.py b/python/lsst/cp/pipe/ptc/cpExtractPtcTask.py index 794eb723..d55a1b05 100644 --- a/python/lsst/cp/pipe/ptc/cpExtractPtcTask.py +++ b/python/lsst/cp/pipe/ptc/cpExtractPtcTask.py @@ -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) @@ -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 diff --git a/python/lsst/cp/pipe/ptc/cpSolvePtcTask.py b/python/lsst/cp/pipe/ptc/cpSolvePtcTask.py index e2ec0476..9793b065 100644 --- a/python/lsst/cp/pipe/ptc/cpSolvePtcTask.py +++ b/python/lsst/cp/pipe/ptc/cpSolvePtcTask.py @@ -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) From 888d5895d6f7dfd4b1c230b7ffc0b4b07135dafb Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Thu, 4 Jan 2024 14:57:04 -0700 Subject: [PATCH 2/2] Ignore more files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c57f4a11..c5aa8b43 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ .sconsign.dblite config.log +.coverage* +_build.* .cache .sconf_temp *.o