Skip to content

Commit

Permalink
fix: pass sigma_clip args through reduce_lst_bins
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-murray committed Jan 10, 2024
1 parent 38d1373 commit 20e2bf6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hera_cal/lstbin_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ def reduce_lst_bins(
mutable: bool = False,
sigma_clip_thresh: float | None = None,
sigma_clip_min_N: int = 4,
sigma_clip_type: str = 'direct',
sigma_clip_subbands: list[int] | None = None,
flag_below_min_N: bool = False,
flag_thresh: float = 0.7,
get_mad: bool = False,
Expand Down Expand Up @@ -375,6 +377,8 @@ def reduce_lst_bins(
inpainted_mode=inpainted_mode,
sigma_clip_thresh=sigma_clip_thresh,
sigma_clip_min_N=sigma_clip_min_N,
sigma_clip_subbands=sigma_clip_subbands,
sigma_clip_type=sigma_clip_type,
flag_below_min_N=flag_below_min_N,
)

Expand Down

0 comments on commit 20e2bf6

Please sign in to comment.