-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update PSF modelling configs appropriate for LATSS
Namely: (a) set the characterizeImage kernelSize and stampSize to 71 (b) change finalize to use a kernelSize and stampSize of 71 (c) change finalize PSF model from piff to psfex Note that (c) is required (for now) because piff doesn't scale well with increasing stampSize.
- Loading branch information
Showing
2 changed files
with
11 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
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,2 +1,8 @@ | ||
# Reduce piff spatialOrder to 1, this helps ensure success with low numbers of psf candidates. | ||
config.psf_determiner['piff'].spatialOrder = 1 | ||
# Change the PSF determiner to psfex from piff default as the latter will not | ||
# scale well to the large kernel/stamp sizes for PSF modelling for LATISS data. | ||
config.psf_determiner.name = "psfex" | ||
# Reduce spatialOrder to 1, this helps ensure success with low numbers of psf candidates. | ||
config.psf_determiner["psfex"].spatialOrder = 1 | ||
# Set the default kernel and stamp sizes for PSF modelling appropriate for LATISS. | ||
config.psf_determiner["psfex"].stampSize = 71 | ||
config.make_psf_candidates.kernelSize = 71 |