Skip to content

Commit

Permalink
Update Monster and ComCam color ranges.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Dec 14, 2024
1 parent 50b6d36 commit 0243f5b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python/lsst/the/monster/refcats.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,11 +741,14 @@ def get_flux_field(self, band):
else:
return f"monster_DES_{band}_flux"

def get_gmr_color_range(self):
return (0.35, 0.7)

def get_gmi_color_range(self):
return (0.0, 3.5)
return (0.35, 3.0)

def get_imz_color_range(self):
return (0.0, 0.75)
return (0.0, 0.7)


class ComCamInfo(RefcatInfo):
Expand Down

0 comments on commit 0243f5b

Please sign in to comment.