Skip to content
Snippets Groups Projects
Commit 8ee275f0 authored by chad.hanna's avatar chad.hanna Committed by Kipp Cannon
Browse files

far.py: tweak extinction model to allow slightly broader range of lrs

parent 2ca43a50
No related branches found
No related tags found
No related merge requests found
......@@ -682,7 +682,7 @@ WHERE
# that have too small a count to have been well measured,
# and/or can't be modelled correctly by this fit anyway.
mode, = zl.argmax()
mask = (x < mode) | (zl.at_centres() < zl[mode,] - 9.)
mask = (x < mode) | (zl.at_centres() < zl[mode,] - 15.)
zl = numpy.ma.masked_array(zl.array, mask)
bg = numpy.ma.masked_array(bg, mask)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment