Skip to content

Commit

Permalink
Update modes being used in ESIGMAHM
Browse files Browse the repository at this point in the history
  • Loading branch information
prayush committed Jun 24, 2024
1 parent 5485a57 commit e96127a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pycbc/waveform/waveform.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,15 +635,16 @@ def get_td_waveform(template=None, **kwargs):
try:
if input_params["approximant"] == "IMRESIGMAHM":
hp, hc = esigma_utils.get_imr_esigma_waveform(
**esigma_params, modes_to_use=[(2, 2), (3, 3), (4, 4)]
**esigma_params, modes_to_use=[(2, 2), (2, 1), (3, 3), (3, 2), (4, 4), (4, 3)]
)
elif input_params["approximant"] == "IMRESIGMA":
hp, hc = esigma_utils.get_imr_esigma_waveform(
**esigma_params, modes_to_use=[(2, 2)]
)
elif input_params["approximant"] == "InspiralESIGMAHM":
hp, hc = esigma_utils.get_inspiral_esigma_waveform(
**esigma_params, modes_to_use=[(2, 2), (3, 3), (4, 4)]
**esigma_params,
modes_to_use=[(2, 2), (2, 1), (3, 3), (3, 2), (4, 4), (4, 3)],
)
elif input_params["approximant"] == "InspiralESIGMA":
hp, hc = esigma_utils.get_inspiral_esigma_waveform(
Expand Down

0 comments on commit e96127a

Please sign in to comment.