Skip to content
Snippets Groups Projects
Commit 9b5d90b8 authored by Greg Quinn's avatar Greg Quinn
Browse files

Adjust SRF when converting from wavelength to wavenumber units

parent 96294340
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ def parse_srf_file(filename):
continue
wl_nm, resp = (float(x) for x in line.split())
wn = 1e7 / wl_nm
resp /= wn**2
wn_list.append(wn)
resp_list.append(resp)
srf = SRF()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment