From 7b33ff5d8d50570df874b27d814c3221972be0b1 Mon Sep 17 00:00:00 2001 From: Merlin Fisher-Levine Date: Mon, 5 Aug 2024 15:10:13 -0700 Subject: [PATCH 1/3] Turn off normalized calibration for spectra --- pipelines/processStar.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/processStar.yaml b/pipelines/processStar.yaml index 63804d2..bf4fc16 100644 --- a/pipelines/processStar.yaml +++ b/pipelines/processStar.yaml @@ -22,6 +22,7 @@ tasks: doApCorr: False doMeasurePsf: False detection.includeThresholdMultiplier: 3 + doNormalizedCalibration: false python : | # if we turn PSF measurement on re-enable this plugin config.measurement.plugins.names = set(config.measurement.plugins.names) - set(('base_ClassificationSizeExtendedness',)) From c6e9cdeb536407999d5abef99d618486865b95e4 Mon Sep 17 00:00:00 2001 From: Merlin Fisher-Levine Date: Mon, 5 Aug 2024 15:10:19 -0700 Subject: [PATCH 2/3] Fix bitrotted code for new interface --- python/lsst/atmospec/processStar.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/lsst/atmospec/processStar.py b/python/lsst/atmospec/processStar.py index a2736ba..52a04b9 100644 --- a/python/lsst/atmospec/processStar.py +++ b/python/lsst/atmospec/processStar.py @@ -747,8 +747,7 @@ def updateMetadata(self, exp, **kwargs): def runQuantum(self, butlerQC, inputRefs, outputRefs): inputs = butlerQC.get(inputRefs) - - inputs['dataIdDict'] = inputRefs.inputExp.dataId.byName() + inputs['dataIdDict'] = inputRefs.inputExp.dataId outputs = self.run(**inputs) butlerQC.put(outputs, outputRefs) From 6529d8c36efea0cb1becfe9034e11802d3ce47c3 Mon Sep 17 00:00:00 2001 From: Merlin Fisher-Levine Date: Thu, 9 May 2024 13:25:52 -0700 Subject: [PATCH 3/3] Remove optional from non-optional arg in doc --- python/lsst/atmospec/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/atmospec/utils.py b/python/lsst/atmospec/utils.py index 18aa743..2f6894c 100644 --- a/python/lsst/atmospec/utils.py +++ b/python/lsst/atmospec/utils.py @@ -594,7 +594,7 @@ def runNotebook(dataId, ---------- dataId : `dict` The dataId to run. - outputCollection : `str`, optional + outputCollection : `str` Output collection name. extraInputCollections : `list` of `str` Any extra input collections to use when processing.