Skip to content

Commit

Permalink
Correct deferGraphConstraint call.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkalmbach committed Nov 7, 2024
1 parent ffd3aaf commit 0cff829
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions python/lsst/donut/viz/aggregate_visit.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class AggregateZernikeTablesTaskConnections(
storageClass="AstropyQTable",
name="zernikes",
multiple=True,
deferQueryConstraint=True,
deferGraphConstraint=True,
)
camera = ct.PrerequisiteInput(
name="camera",
Expand Down Expand Up @@ -164,7 +164,7 @@ class AggregateDonutTablesTaskConnections(
storageClass="AstropyQTable",
name="donutQualityTable",
multiple=True,
deferQueryConstraint=True,
deferGraphConstraint=True,
)
camera = ct.PrerequisiteInput(
name="camera",
Expand Down Expand Up @@ -398,21 +398,21 @@ class AggregateAOSVisitTableTaskConnections(
dimensions=("visit", "instrument"),
storageClass="AstropyQTable",
name="aggregateDonutTable",
deferQueryConstraint=True,
deferGraphConstraint=True,
)
aggregateZernikesRaw = ct.Input(
doc="Visit-level table of donuts and Zernikes",
dimensions=("visit", "instrument"),
storageClass="AstropyTable",
name="aggregateZernikesRaw",
deferQueryConstraint=True,
deferGraphConstraint=True,
)
aggregateZernikesAvg = ct.Input(
doc="Visit-level table of donuts and Zernikes",
dimensions=("visit", "instrument"),
storageClass="AstropyTable",
name="aggregateZernikesAvg",
deferQueryConstraint=True,
deferGraphConstraint=True,
)
aggregateAOSRaw = ct.Output(
doc="Visit-level table of donuts and Zernikes",
Expand Down Expand Up @@ -521,23 +521,23 @@ class AggregateDonutStampsTaskConnections(
storageClass="StampsBase",
name="donutStampsIntra",
multiple=True,
deferQueryConstraint=True,
deferGraphConstraint=True,
)
donutStampsExtra = ct.Input(
doc="Extrafocal Donut Stamps",
dimensions=("visit", "detector", "instrument"),
storageClass="StampsBase",
name="donutStampsExtra",
multiple=True,
deferQueryConstraint=True,
deferGraphConstraint=True,
)
qualityTables = ct.Input(
doc="Donut quality tables",
dimensions=("visit", "detector", "instrument"),
storageClass="AstropyQTable",
name="donutQualityTable",
multiple=True,
deferQueryConstraint=True,
deferGraphConstraint=True,
)
donutStampsIntraVisit = ct.Output(
doc="Intrafocal Donut Stamps",
Expand Down

0 comments on commit 0cff829

Please sign in to comment.