Skip to content

Commit

Permalink
Clarify pipeline definition documentation for ISR.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Mar 6, 2021
1 parent 5ce2587 commit f07e53f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pipelines/RunIsr.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: ip_isr handling of DECam-specific inter-chip crosstalk. See DM-25348.
description: Run IsrTask for DECam with only intra-chip crosstalk. Inter-chip crosstalk needs pre-prepared crosstalkSources.
instrument: lsst.obs.decam.DarkEnergyCamera
tasks:
isrOscan:
Expand All @@ -7,4 +7,4 @@ tasks:
connections.ccdExposure: 'raw'
connections.outputExposure: 'postISRCCD'
doLinearize: False
doCrosstalk: True
doCrosstalk: True
4 changes: 2 additions & 2 deletions pipelines/RunIsrForCrosstalkSources.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
description: Prepare overscanSources (for ISR/interchip crosstalk).
description: Prepare crosstalkSources for ISR/interchip crosstalk by running overscan correction on raw frames.
instrument: lsst.obs.decam.DarkEnergyCamera
tasks:
overscan:
class: lsst.ip.isr.isrTask.IsrTask
config:
connections.ccdExposure: 'raw'
connections.outputExposure: 'oscanRaw'
connections.outputExposure: 'overscanRaw'
doBias: False
doOverscan: True
doAssembleCcd: False
Expand Down
4 changes: 2 additions & 2 deletions pipelines/RunIsrWithCrosstalk.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
description: Run ISR using crosstalkSources for interchip crosstalk.
description: Run ISR using pregenerated crosstalkSources for interchip crosstalk.
instrument: lsst.obs.decam.DarkEnergyCamera
tasks:
isr:
class: lsst.ip.isr.isrTask.IsrTask
config:
connections.ccdExposure: 'raw'
connections.outputExposure: 'postISRCCD'
connections.crosstalkSources: 'oscanRaw'
connections.crosstalkSources: 'overscanRaw'
doOverscan: True
doCrosstalk: True

0 comments on commit f07e53f

Please sign in to comment.