Skip to content
Snippets Groups Projects
Commit 9ba1d59f authored by Marc Arene's avatar Marc Arene
Browse files

Removing the raised error "Waveform longer than frequency array".

parent 08a8e601
No related branches found
No related tags found
1 merge request!710Removing the raised error "Waveform longer than frequency array".
......@@ -383,7 +383,10 @@ def _base_lal_cbc_fd_waveform(
h_cross = np.zeros_like(frequency_array, dtype=np.complex)
if len(hplus.data.data) > len(frequency_array):
raise ValueError("Waveform longer than frequency array")
# lalsim waveform arrays can be padded with zeros up to
# a power of two length which can be greater than our length.
h_plus = hplus.data.data[:len(h_plus)]
h_cross = hcross.data.data[:len(h_cross)]
h_plus[:len(hplus.data.data)] = hplus.data.data
h_cross[:len(hcross.data.data)] = hcross.data.data
......
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