Skip to content

Commit

Permalink
lower rb cut
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed May 15, 2024
1 parent da49e55 commit 19fff3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mirar/pipelines/winter/generator/candidates.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def winter_candidate_quality_filterer(source_table: SourceBatch) -> SourceBatch:
mask = (
(src_df["nbad"] < 2)
& (src_df["ndethist"] > 0)
& ((src_df["rb"] > 0.5) | pd.isnull(src_df["rb"]))
& ((src_df["rb"] > 0.1) | pd.isnull(src_df["rb"]))
& (src_df["sumrat"] > 0.6)
& (src_df["fwhm"] < 10.0)
& (src_df["magdiff"] < 1.6)
Expand Down

0 comments on commit 19fff3b

Please sign in to comment.