Skip to content

Commit

Permalink
reduced minimum fwhm in genred
Browse files Browse the repository at this point in the history
after problems with too good seeing with HiPERCAM(!)
  • Loading branch information
trmrsh committed Aug 9, 2021
1 parent e881e9b commit b1924bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hipercam/scripts/genred.py
Expand Up @@ -521,8 +521,8 @@ def genred(args=None):
if seeing > 0.:
asec['search_half_width'] = max(5., sworst/scale)
asec['search_smooth_fwhm'] = max(2., seeing/scale/binfac)
asec['fwhm_min'] = 2*binfac
asec['fwhm'] = max(2*binfac, seeing/scale)
asec['fwhm_min'] = 1.5*binfac
asec['fwhm'] = max(1.5*binfac, seeing/scale)
asec['fwhm_max'] = 3.*sworst/scale
asec['fit_max_shift'] = max(1., sworst/scale/4.)
asec['fit_half_width'] = max(5., 2*sworst/scale)
Expand Down

0 comments on commit b1924bc

Please sign in to comment.