Skip to content
Snippets Groups Projects

Allow any lal dictionary option and add numerical_relativity_file

Merged Cecilio Garcia-Quiros requested to merge cecilio.garcia-quiros/bilby:lal-wf-dict into master
All threads resolved!
2 files
+ 15
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
@@ -344,8 +344,8 @@ def _base_lal_cbc_fd_waveform(
waveform_dictionary, lambda_2)
for key, value in waveform_kwargs.items():
func = getattr(lalsim, "SimInspiralWaveformParamsInsert" + key, 0)
if func != 0:
func = getattr(lalsim, "SimInspiralWaveformParamsInsert" + key, None)
if func is not None:
func(waveform_dictionary, value)
if waveform_kwargs.get('numerical_relativity_file', None) is not None:
Loading