Skip to content
Snippets Groups Projects
Commit 265aca95 authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_psd_xml_from_asd_txt: remove disallowed characters in...

gstlal_psd_xml_from_asd_txt: remove disallowed characters in lal.CreateREAL8FrequencySeries name (Sn(f) -> PSD)
parent 73ca1cb9
No related branches found
No related tags found
No related merge requests found
Pipeline #187954 passed with warnings
......@@ -83,6 +83,6 @@ psdinterp = interp1d(f_padded, psd_padded)
psd = psdinterp(uniformf)
psdseries = lal.CreateREAL8FrequencySeries("Sn(f)", 0, 0, options.df, lal.Unit("s strain^2"), len(psd))
psdseries = lal.CreateREAL8FrequencySeries("PSD", 0, 0, options.df, lal.Unit("s strain^2"), len(psd))
psdseries.data.data = psd
reference_psd.write_psd(options.output, {options.instrument: psdseries})
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