Skip to content

Commit

Permalink
Add u-band magnitude limits for SDSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed May 31, 2024
1 parent 68c9d96 commit 8c54c23
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/lsst/the/monster/refcats.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,12 @@ def get_gmr_color_range(self):
def get_sn_range(self, band):
return (10.0, np.inf)

def get_mag_range(self, band):
if band == "u":
return (15.0, 21.5)
else:
return super().get_mag_range(band)

def colorterm_file(self, band):
if band == "u":
# This is not transformed.
Expand Down

0 comments on commit 8c54c23

Please sign in to comment.