Skip to content
Snippets Groups Projects
Commit a6a0982c authored by Colm Talbot's avatar Colm Talbot
Browse files

Merge branch 'master' into 'master'

URGENT fix to sign of epoch in TD timeshift fix

See merge request !737
parents 4f3326ca 4d7a19e3
No related branches found
No related tags found
1 merge request!737URGENT fix to sign of epoch in TD timeshift fix
Pipeline #107870 passed with warnings
......@@ -397,7 +397,7 @@ def _base_lal_cbc_fd_waveform(
h_cross *= frequency_bounds
if wf_func == lalsim_SimInspiralFD:
dt = 1. / delta_frequency - (hplus.epoch.gpsSeconds + hplus.epoch.gpsNanoSeconds * 1e-9)
dt = 1. / delta_frequency + (hplus.epoch.gpsSeconds + hplus.epoch.gpsNanoSeconds * 1e-9)
h_plus *= np.exp(
-1j * 2 * np.pi * dt * frequency_array)
h_cross *= np.exp(
......
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