Skip to content

Commit

Permalink
Match dimension/storage classes to ci_hsc expectation.
Browse files Browse the repository at this point in the history
These seem to differ from those made by stand-alone repos.
  • Loading branch information
czwa committed Dec 9, 2019
1 parent 836bd51 commit c9cfb45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/ip/isr/isrTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ class IsrTaskConnections(pipeBase.PipelineTaskConnections,
dark = cT.PrerequisiteInput(
name='dark',
doc="Input dark calibration.",
storageClass="ExposureF",
storageClass="ImageF",
dimensions=["instrument", "calibration_label", "detector"],
)
flat = cT.PrerequisiteInput(
name="flat",
doc="Input flat calibration.",
storageClass="ExposureF",
storageClass="MaskedImageF",
dimensions=["instrument", "physical_filter", "calibration_label", "detector"],
)
fringes = cT.PrerequisiteInput(
Expand Down Expand Up @@ -149,7 +149,7 @@ class IsrTaskConnections(pipeBase.PipelineTaskConnections,
name='postISRCCD',
doc="Output ISR processed exposure.",
storageClass="ExposureF",
dimensions=["instrument", "visit", "detector", "exposure"],
dimensions=["instrument", "visit", "detector"],
)
preInterpExposure = cT.Output(
name='preInterpISRCCD',
Expand Down

0 comments on commit c9cfb45

Please sign in to comment.