Skip to content

Commit

Permalink
Update high resolution transmission to match IDL defaults (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
samaloney authored Nov 28, 2024
1 parent 68960bc commit 5c973a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stixcore/calibration/transmission.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def generate_transmission_tables():
datetime.now().strftime('%Y%m%d')
trans = Transmission()

energies = np.linspace(2, 150, 1001) * u.keV
energies = np.append(np.arange(2, 20, 0.01), np.arange(20, 160, 0.1)) * u.keV

norm_sci_energies = trans.get_transmission()
norm_sci_energies.write(f'stix_transmission_sci_energies_{cur_date}.csv')
Expand Down

0 comments on commit 5c973a9

Please sign in to comment.