Commit 390c9766 authored by Fang Yuedong's avatar Fang Yuedong
Browse files

change logic for cuts on bright objects

parent f08672a8
......@@ -195,7 +195,8 @@ class Observation(object):
continue
# Exclude very bright/dim objects (for now)
if filt.is_too_bright(mag=obj.getMagFilter(filt)):
# if filt.is_too_bright(mag=obj.getMagFilter(filt)):
if obj.getMagFilter(filt) <= 14.0:
# print("obj too birght!!", flush=True)
if obj.type != 'galaxy':
bright_obj += 1
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment