-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move DECam precursor step to its own pipeline
- Loading branch information
1 parent
c662ba5
commit af9b1eb
Showing
2 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
description: | | ||
The DRP pipeline specialized for the DECam instrument, developed against the | ||
Merian dataset. | ||
Prior to running subsets or tasks in this pipeline, the DECam prerequisite | ||
task isrForCrosstalkSources must be run. More information on that task can be | ||
found in the isrForCrosstalkSources.yaml pipeline file. | ||
imports: | ||
- $DRP_PIPE_DIR/pipelines/_ingredients/DECam/DRP.yaml | ||
- $ANALYSIS_DRP_DIR/pipelines/analysis_drp_plots.yaml | ||
- location: $DRP_PIPE_DIR/pipelines/_ingredients/DECam/DRP.yaml | ||
exclude: | ||
- isrForCrosstalkSources | ||
- location: $ANALYSIS_DRP_DIR/pipelines/analysis_drp_plots.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
description: | | ||
The DECam prerequisite task isrForCrosstalkSources. | ||
The isrForCrosstalkSources task generates crosstalk sources for | ||
ISR/inter-chip crosstalk by applying overscan correction on raw frames. A new | ||
dataset is written, which should be used as an input for further DECam data | ||
processing. | ||
This task is intended to be run once, prior to initial data processing. | ||
instrument: lsst.obs.decam.DarkEnergyCamera | ||
tasks: | ||
isrForCrosstalkSources: | ||
class: lsst.ip.isr.IsrTask | ||
config: | ||
connections.outputExposure: overscanRaw | ||
doOverscan: true | ||
doAssembleCcd: false | ||
doBias: false | ||
doCrosstalk: false | ||
doVariance: false | ||
doLinearize: false | ||
doDefect: false | ||
doNanMasking: false | ||
doDark: false | ||
doFlat: false | ||
doFringe: false | ||
doInterpolate: false | ||
subsets: | ||
step0: | ||
subset: | ||
- isrForCrosstalkSources | ||
description: | | ||
Tasks which should be run once, prior to initial data processing. | ||
This step generates crosstalk sources for ISR/inter-chip crosstalk by | ||
applying overscan correction on raw frames. A new dataset is written, | ||
which should be used as an input for further data processing. |