From 9f51421169ea527640a23a08c3da461ce2a70cbb Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Fri, 1 Nov 2024 09:12:19 -0400 Subject: [PATCH] Use finalVisitSummary as the default for match visit connections. --- python/lsst/analysis/tools/tasks/astrometricCatalogMatch.py | 2 +- python/lsst/analysis/tools/tasks/photometricCatalogMatch.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/analysis/tools/tasks/astrometricCatalogMatch.py b/python/lsst/analysis/tools/tasks/astrometricCatalogMatch.py index 526e261be..f59a17b34 100644 --- a/python/lsst/analysis/tools/tasks/astrometricCatalogMatch.py +++ b/python/lsst/analysis/tools/tasks/astrometricCatalogMatch.py @@ -123,7 +123,7 @@ class AstrometricCatalogMatchVisitConnections( visitSummaryTable = pipeBase.connectionTypes.Input( doc="A summary table of the ccds in the visit", storageClass="ExposureCatalog", - name="visitSummary", + name="finalVisitSummary", dimensions=("visit",), ) diff --git a/python/lsst/analysis/tools/tasks/photometricCatalogMatch.py b/python/lsst/analysis/tools/tasks/photometricCatalogMatch.py index e8b1001c9..24657f3af 100644 --- a/python/lsst/analysis/tools/tasks/photometricCatalogMatch.py +++ b/python/lsst/analysis/tools/tasks/photometricCatalogMatch.py @@ -140,7 +140,7 @@ class PhotometricCatalogMatchVisitConnections( visitSummaryTable = pipeBase.connectionTypes.Input( doc="A summary table of the ccds in the visit", storageClass="ExposureCatalog", - name="visitSummary", + name="finalVisitSummary", dimensions=("visit",), )