Skip to content

Commit

Permalink
Fixing bandpass.py for a missing keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
eunkyuh committed Dec 2, 2024
1 parent c488aa7 commit 9284972
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions romanisim/bandpass.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ def compute_abflux(sca, effarea=None):
out = dict()
for bandpass in filter_names:
out[bandpass] = compute_count_rate(flux=abfv, bandpass=bandpass, sca=sca, effarea=effarea)

# Saving the SCA information to use the correct throughput curves for each detector.
out = {f'SCA{sca:02}':out}
return out


Expand Down

0 comments on commit 9284972

Please sign in to comment.