Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-25424: Convert Defect to IsrCalib #62

Merged
merged 7 commits into from
Nov 9, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions config/defectIsr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Set ISR processing to run up until we would be applying the defect
# correction.
config.isr.doWrite = True
config.isr.doOverscan = True
config.isr.doAssembleCcd = True
config.isr.doBias = True
config.isr.doVariance = False
config.isr.doLinearize = False
config.isr.doCrosstalk = False
config.isr.doBrighterFatter = False
config.isr.doDark = False
config.isr.doStrayLight = False
config.isr.doFlat = False
config.isr.doFringe = False
config.isr.doApplyGains = False
config.isr.doDefect = False
config.isr.doSaturationInterpolation = False
config.isr.growSaturationFootprintSize = 0
33 changes: 33 additions & 0 deletions pipelines/findDefects.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
description: cp_pipe CROSSTALK calibration construction.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change "CROSSTALK"

tasks:
isr:
class: lsst.ip.isr.isrTask.IsrTask
config:
connections.ccdExposure: 'raw'
connections.outputExposure: 'cpDefectsProc'
doWrite: True
doOverscan: True
doAssembleCcd: True
doBias: True
doVariance: False
doLinearize: False
doCrosstalk: False
doBrighterFatter: False
doDark: False
doStrayLight: False
doFlat: False
doFringe: False
doApplyGains: False
doDefect: False
doSaturationInterpolation: False
growSaturationFootprintSize: 0
measureDefects:
class: lsst.cp.pipe.defects.MeasureDefectsTask
config:
connections.inputExp: 'cpDefectsProc'
connections.outputDefects: 'cpPartialDefects'
mergeDefects:
class: lsst.cp.pipe.defects.MergeDefectsTask
config:
connections.inputDefects: 'cpPartialDefects'
connections.mergedDefects: 'defects'