Skip to content

Commit

Permalink
fix error in thinning the focal plane for the second band
Browse files Browse the repository at this point in the history
  • Loading branch information
keskitalo committed Jan 28, 2021
1 parent 4e23d3c commit 0b4abef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sotodlib/utils/pipeline_tools/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def get_hardware(args, comm, verbose=False):
# testing and development
delete_detectors = []
for det_name in hw.data["detectors"].keys():
if (det_index[det_name] // 2) % args.thinfp != 0:
if (det_index[det_name] // 4) % args.thinfp != 0:
delete_detectors.append(det_name)
for det_name in delete_detectors:
del hw.data["detectors"][det_name]
Expand Down

0 comments on commit 0b4abef

Please sign in to comment.