From 884d22fb854d96ea8d0b548d1fbcf1611e60667c Mon Sep 17 00:00:00 2001 From: John Parejko Date: Tue, 30 Jul 2024 16:32:50 -0700 Subject: [PATCH 1/3] Switch to calibrateImage outputs --- python/lsst/drp/tasks/update_visit_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/drp/tasks/update_visit_summary.py b/python/lsst/drp/tasks/update_visit_summary.py index 786b7bfc..3b1f8699 100644 --- a/python/lsst/drp/tasks/update_visit_summary.py +++ b/python/lsst/drp/tasks/update_visit_summary.py @@ -257,7 +257,7 @@ class UpdateVisitSummaryConnections( "Per-detector images to obtain image, mask, and variance from " "(embedded summary stats and other components are ignored)." ), - name="calexp", + name="initial_pvi", dimensions=("instrument", "detector", "visit"), storageClass="ExposureF", multiple=True, @@ -317,7 +317,7 @@ class UpdateVisitSummaryConnections( ) background_originals = cT.Input( doc="Per-detector original background that has already been subtracted from 'input_exposures'.", - name="calexpBackground", + name="initial_pvi_background", dimensions=("instrument", "visit", "detector"), storageClass="Background", multiple=True, From f6ec4cdb3808a86109fec407a0123c5e50b1dd30 Mon Sep 17 00:00:00 2001 From: John Parejko Date: Tue, 17 Sep 2024 10:58:01 -0700 Subject: [PATCH 2/3] Remove STREAK from forcedPhotCoadd --- python/lsst/drp/tasks/forcedPhotCoadd.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/lsst/drp/tasks/forcedPhotCoadd.py b/python/lsst/drp/tasks/forcedPhotCoadd.py index bef9d993..af56c035 100644 --- a/python/lsst/drp/tasks/forcedPhotCoadd.py +++ b/python/lsst/drp/tasks/forcedPhotCoadd.py @@ -159,14 +159,15 @@ def setDefaults(self): "SENSOR_EDGE", "REJECTED", "INEXACT_PSF", - "STREAK", + # TODO DM-44658 and DM-45980: don't have STREAK propagated yet. + # "STREAK", ] self.measurement.plugins["base_PixelFlags"].masksFpCenter = [ "CLIPPED", "SENSOR_EDGE", "REJECTED", "INEXACT_PSF", - "STREAK", + # "STREAK", ] From 6b90a6ed7d513a85c9b57335ea4799939001252f Mon Sep 17 00:00:00 2001 From: Yusra AlSayyad Date: Tue, 15 Oct 2024 20:05:44 -0700 Subject: [PATCH 3/3] Set reprocessVisitImage default to not use skyCorr --- python/lsst/drp/tasks/reprocess_visit_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/drp/tasks/reprocess_visit_image.py b/python/lsst/drp/tasks/reprocess_visit_image.py index 82ab614e..980edb57 100644 --- a/python/lsst/drp/tasks/reprocess_visit_image.py +++ b/python/lsst/drp/tasks/reprocess_visit_image.py @@ -126,7 +126,7 @@ class ReprocessVisitImageConfig( do_use_sky_corr = pexConfig.Field( dtype=bool, - default=True, + default=False, doc="Include the skyCorr input for background subtraction?", ) snap_combine = pexConfig.ConfigurableField(