Skip to content
Snippets Groups Projects
Commit ed606ffe authored by Cecilio Garcia-Quiros's avatar Cecilio Garcia-Quiros
Browse files

Insert lal dictionary arguments

parent b4086d67
No related branches found
No related tags found
1 merge request!896Allow any lal dictionary option and add numerical_relativity_file
......@@ -342,6 +342,19 @@ def _base_lal_cbc_fd_waveform(
waveform_dictionary, lambda_1)
lalsim_SimInspiralWaveformParamsInsertTidalLambda2(
waveform_dictionary, lambda_2)
for key, value in waveform_kwargs.items():
func = getattr(lalsim, "SimInspiralWaveformParamsInsert" + key, 0)
if func != 0:
func(waveform_dictionary, value)
print("\nHOOOOOLAAAAA\n")
print("Mband = %f" % lalsim.SimInspiralWaveformParamsLookupPhenomXHMThresholdMband(waveform_dictionary))
print("PV = %f" % lalsim.SimInspiralWaveformParamsLookupPhenomXPrecVersion(waveform_dictionary))
if ('numerical_relativity_file' in waveform_kwargs) and waveform_kwargs['numerical_relativity_file'] is not None:
lalsim.SimInspiralWaveformParamsInsertNumRelData(
waveform_dictionary, waveform_kwargs['numerical_relativity_file'])
if ('mode_array' in waveform_kwargs) and waveform_kwargs['mode_array'] is not None:
mode_array = waveform_kwargs['mode_array']
......
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