Skip to content

Commit

Permalink
Update jump.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mwregan2 committed Jan 29, 2024
1 parent be254e7 commit 35d8086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stcal/jump/jump.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def detect_jumps(
i,
(
data[:, :, i * yinc : (i + 1) * yinc, :],
gdq[:, :, i * yinc : (i + 1) * yinc, :],
gdq[:, :, i * yinc : (i + 1) * yinc, :].copy(),
readnoise_2d[i * yinc : (i + 1) * yinc, :],
rejection_thresh,
three_grp_thresh,
Expand All @@ -359,7 +359,7 @@ def detect_jumps(
n_slices - 1,
(
data[:, :, (n_slices - 1) * yinc : n_rows, :],
gdq[:, :, (n_slices - 1) * yinc : n_rows, :],
gdq[:, :, (n_slices - 1) * yinc : n_rows, :].copy(),
readnoise_2d[(n_slices - 1) * yinc : n_rows, :],
rejection_thresh,
three_grp_thresh,
Expand Down

0 comments on commit 35d8086

Please sign in to comment.