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-41199: Increase target FWHM for PSF-matched warps in LATISS #483

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all 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
15 changes: 15 additions & 0 deletions config/latiss/makeWarp.py
Expand Up @@ -31,3 +31,18 @@
# Updated with DM-40668
config.select.maxScaledSizeScatter = 0.025
config.select.maxPsfTraceRadiusDelta = 4.8

# PSF-matching configs are in units of pix and specific to skymap pixel scale

# Max PSF FWHM allowed into coadds BestSeeingSelectVisits.maxPsfFwhm = 1.9
# If skymap pixel scale is 0.1, that translates to Fwhm of 19.0
# TO DO: Change this to 9.5 if we go to 0.2 pixel scale.
config.modelPsf.defaultFwhm = 19.0

# These configs are for skymaps of pixel scale 0.1
# TO DO: Delete these 5 if we go a 0.2 pixel scale
config.matchingKernelSize = 57
config.warpAndPsfMatch.psfMatch.kernel['AL'].kernelSize = 43
config.warpAndPsfMatch.psfMatch.kernel['AL'].alardSigGauss = [1.5, 3.0, 6.0]
config.warpAndPsfMatch.psfMatch.kernel['AL'].sizeCellX = 256
config.warpAndPsfMatch.psfMatch.kernel['AL'].sizeCellY = 256