Skip to content

Commit

Permalink
Replace makeWarp in Merian pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed May 30, 2024
1 parent e742cba commit b986a17
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions pipelines/_ingredients/DECam/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,24 @@ tasks:
background_provider: "input_summary"
connections.photoCalibName: "jointcal"
connections.skyWcsName: "jointcal"
makeWarp:
class: lsst.pipe.tasks.makeWarp.MakeWarpTask
makeDirectWarp:
class: lsst.pipe.tasks.make_direct_warp.MakeDirectWarpTask
config:
# These configs match obs_subaru, to facilitate 1:1 comparisons between DECam and HSC
matchingKernelSize: 29
modelPsf.defaultFwhm: 7.7
warpAndPsfMatch.warp.warpingKernelName: lanczos5
warper.warpingKernelName: lanczos5
coaddPsf.warpingKernelName: lanczos5
# Legacy DECam config to write out warps, even if they are empty
doWriteEmptyWarps: true
doSelectPreWarp: true
python: |
config.warpAndPsfMatch.psfMatch.kernel['AL'].alardSigGauss = [1.0, 2.0, 4.5]
from lsst.pipe.tasks.selectImages import PsfWcsSelectImagesTask
config.select.retarget(PsfWcsSelectImagesTask)
makePsfMatchedWarp:
class: lsst.pipe.tasks.make_psf_matched_warp.MakePsfMatchedWarp
config:
# These configs match obs_subaru, to facilitate 1:1 comparisons between DECam and HSC
matchingKernelSize: 29
modelPsf.defaultFwhm: 7.7
python: |
config.psfMatch.kernel['AL'].alardSigGauss = [1.0, 2.0, 4.5]
templateGen:
class: lsst.drp.tasks.assemble_coadd.CompareWarpAssembleCoaddTask
config:
Expand Down

0 comments on commit b986a17

Please sign in to comment.