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

Merge branch 'fix_multiband_snr' into 'master'

bilby/gw/likelihood.py: make phase of d_inner_h consistent with that of the other likelihoods

Closes #678

See merge request lscsoft/bilby!1253
parents 62efe7e0 975c87a9
No related branches found
No related tags found
1 merge request!1253bilby/gw/likelihood.py: make phase of d_inner_h consistent with that of the other likelihoods
Pipeline #520200 failed
......@@ -736,7 +736,7 @@ class MBGravitationalWaveTransient(GravitationalWaveTransient):
strain *= np.exp(-1j * 2. * np.pi * self.banded_frequency_points * ifo_time)
strain *= calib_factor
d_inner_h = np.dot(strain, self.linear_coeffs[interferometer.name])
d_inner_h = np.conj(np.dot(strain, self.linear_coeffs[interferometer.name]))
if self.linear_interpolation:
optimal_snr_squared = np.vdot(
......
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