Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jump masked groups counting #317

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 31 additions & 11 deletions src/stcal/jump/twopoint_difference.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,24 +153,44 @@
num_flagged_grps = 0
# determine the number of groups with all pixels set to DO_NOT_USE
ngrps = dat.shape[1]
max_flagged_grps = 0
total_flagged_grps = 0
for integ in range(nints):
num_flagged_grps = 0
for grp in range(dat.shape[1]):
if np.all(np.bitwise_and(gdq[integ, grp, :, :], dnu_flag)):
num_flagged_grps += 1
if num_flagged_grps > max_flagged_grps:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The adjustment of max_flagged_grps can be done after the grp loop. Doing this check for every loop over grp is inefficient.

max_flagged_grps = num_flagged_grps
total_flagged_grps += num_flagged_grps
if only_use_ints:
total_sigclip_groups = nints
else:
total_sigclip_groups = nints * (ngrps - num_flagged_grps)
total_groups = nints * (ngrps - num_flagged_grps)
total_diffs = nints * (ngrps - 1 - num_flagged_grps)
total_usable_diffs = total_diffs - num_flagged_grps
if ((ngrps < minimum_groups and only_use_ints and nints < minimum_sigclip_groups) or
(not only_use_ints and nints * ngrps < minimum_sigclip_groups and
total_groups < minimum_groups)):
total_sigclip_groups = nints * ngrps - num_flagged_grps

Check warning on line 169 in src/stcal/jump/twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

src/stcal/jump/twopoint_difference.py#L169

Added line #L169 was not covered by tests
min_usable_groups = ngrps - max_flagged_grps
total_groups = nints * ngrps - total_flagged_grps
min_usable_diffs = min_usable_groups - 1
sig_clip_grps_fails = False
total_noise_min_grps_fails = False
# Determine whether there are enough usable groups the two sigma clip options
if (only_use_ints and nints < minimum_sigclip_groups) \
or \
(not only_use_ints and total_sigclip_groups < minimum_sigclip_groups):
sig_clip_grps_fails = True
if min_usable_groups < minimum_groups:
total_noise_min_grps_fails = True

if total_noise_min_grps_fails and sig_clip_grps_fails:
log.info("Jump Step was skipped because exposure has less than the minimum number of usable groups")
dummy = np.zeros((dataa.shape[1] - 1, dataa.shape[2], dataa.shape[3]),
dtype=np.float32)
return gdq, row_below_gdq, row_above_gdq, 0, dummy
dummy = np.zeros((dataa.shape[1] - 1, dataa.shape[2], dataa.shape[3]), dtype=np.float32)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Descriptive variable names for the dataa shape is defined here:

nints, ngroups, nrows, ncols = dataa.shape

Use these variable names, instead of shape[k].

return gdq, row_below_gdq, row_above_gdq, -99, dummy
#
# if ((only_use_ints and nints < minimum_sigclip_groups) # sigclip across ints with not enough ints
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These comments should be deleted.

# or (not only_use_ints and (ngrps < minimum_sigclip_groups) and # sigclip within an int not enough groups
# min_usable_groups < minimum_groups)): # regular jump detection minimum groups
# log.info("Jump Step was skipped because exposure has less than the minimum number of usable groups")
# dummy = np.zeros((dataa.shape[1] - 1, dataa.shape[2], dataa.shape[3]), dtype=np.float32)
# return gdq, row_below_gdq, row_above_gdq, -99, dummy
else:
# set 'saturated' or 'do not use' pixels to nan in data
dat[np.where(np.bitwise_and(gdq, sat_flag))] = np.nan
Expand Down Expand Up @@ -239,7 +259,7 @@
# use mask on data, so the results will have sat/donotuse groups masked
first_diffs = np.diff(dat, axis=1)

if total_usable_diffs >= min_diffs_single_pass:
if min_usable_diffs >= min_diffs_single_pass: # There are enough diffs in all ints to look for more than one jump
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put comment on the next line.

warnings.filterwarnings("ignore", ".*All-NaN slice encountered.*", RuntimeWarning)
median_diffs = np.nanmedian(first_diffs, axis=(0, 1))
warnings.resetwarnings()
Expand Down
92 changes: 92 additions & 0 deletions tests/test_twopoint_difference.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,98 @@

return _cube

def test_sigclip_not_enough_groups(setup_cube):
ngroups = 10
nints = 9
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Variables nints, nrows, and ncols are not used, so should be deleted.

nrows = 200
ncols = 200
data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=8, nrows=2, ncols=2, readnoise=8)
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(

Check warning on line 30 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L25-L30

Added lines #L25 - L30 were not covered by tests
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=10, minimum_groups=5
)
assert total_crs == -99

Check warning on line 35 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L35

Added line #L35 was not covered by tests

def test_sigclip_not_enough_groups(setup_cube):
ngroups = 5
nints = 9
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Variables nints, nrows, and ncols are not used, so should be deleted.

nrows = 200
ncols = 200
data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=8, nrows=2, ncols=2, readnoise=8)
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(

Check warning on line 43 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L38-L43

Added lines #L38 - L43 were not covered by tests
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=11, minimum_groups=6
)
assert total_crs == -99

Check warning on line 48 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L48

Added line #L48 was not covered by tests

def test_sigclip_not_enough_groups(setup_cube):
ngroups = 12
nints = 9
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Variables nints, nrows, and ncols are not used, so should be deleted.

nrows = 200
ncols = 200

data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=8, nrows=2, ncols=2, readnoise=8)
data[0, 0:2, 0:, 0] = 1
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=11, minimum_groups=16
)
assert total_crs == -99

def test_sigclip_with_num_small_groups(setup_cube):
ngroups = 12
nints = 190

data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=nints, nrows=2, ncols=2, readnoise=8)
data[0, 0:2, 0:, 0] = 1
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=11, minimum_groups=16
)
assert total_crs != -99

def test_nosigclip_with_enough_groups(setup_cube):
ngroups = 12
nints = 1

data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=nints, nrows=2, ncols=2, readnoise=8)
data[0, 0:2, 0:, 0] = 1
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=11, minimum_groups=5
)
assert total_crs != -99

def test_nosigclip_with_num_small_groups(setup_cube):
ngroups = 4
nints = 1

Check warning on line 93 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L92-L93

Added lines #L92 - L93 were not covered by tests

data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=nints, nrows=2, ncols=2, readnoise=8)
data[0, 0:2, 0:, 0] = 1
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(

Check warning on line 97 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L95-L97

Added lines #L95 - L97 were not covered by tests
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=11, minimum_groups=16
)
assert total_crs == -99

Check warning on line 102 in tests/test_twopoint_difference.py

View check run for this annotation

Codecov / codecov/patch

tests/test_twopoint_difference.py#L102

Added line #L102 was not covered by tests

def test_nosigclip_with_num_small_groups(setup_cube):
ngroups = 4
nints = 100

data, gdq, nframes, read_noise, rej_threshold = setup_cube(ngroups, nints=nints, nrows=2, ncols=2, readnoise=8)
data[0, 0:2, 0:, 0] = 1
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data, gdq, read_noise, rej_threshold, rej_threshold, rej_threshold,
nframes, False, 200, 10, DQFLAGS,
minimum_sigclip_groups=100, minimum_groups=16
)
assert total_crs != -99

def test_varying_groups(setup_cube):
ngroups = 5
Expand Down
Loading