Skip to content

Commit

Permalink
Use finalVisitSummary instead of visitSummary.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Jan 11, 2023
1 parent bbc96c0 commit d979dcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/lsst/analysis/drp/catalogMatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class CatalogMatchVisitConnections(pipeBase.PipelineTaskConnections, dimensions=
visitSummaryTable = pipeBase.connectionTypes.Input(
doc="A summary table of the ccds in the visit",
storageClass="ExposureCatalog",
name="visitSummary",
name="finalVisitSummary",
dimensions=("visit",)
)

Expand Down
2 changes: 1 addition & 1 deletion python/lsst/analysis/drp/scatterPlotVisit.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ScatterPlotVisitConnections(pipeBase.PipelineTaskConnections,

visitSummaryTable = pipeBase.connections.Input(doc="A summary table of the ccds in the visit",
storageClass="ExposureCatalog",
name="visitSummary",
name="finalVisitSummary",
dimensions=("visit",))

scatterPlot = pipeBase.connectionTypes.Output(doc="A scatter plot with histograms for both axes.",
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/analysis/drp/skyPlotVisit.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SkyPlotVisitTaskConnections(pipeBase.PipelineTaskConnections, dimensions=(

visitSummaryTable = pipeBase.connectionTypes.Input(doc="A summary table of the ccds in the visit",
storageClass="ExposureCatalog",
name="visitSummary",
name="finalVisitSummary",
dimensions=("visit",))

skyPlot = pipeBase.connectionTypes.Output(doc="A plot showing the on-sky distribution of a value.",
Expand Down

0 comments on commit d979dcd

Please sign in to comment.