From 39dbd72d45d2ef59a92ec93733d8a3180cf20087 Mon Sep 17 00:00:00 2001
From: Soichiro Morisaki <soichiro.morisaki@ligo.org>
Date: Sun, 23 Apr 2023 16:14:13 +0900
Subject: [PATCH] bilby/gw/likelihood.py: make phase of d_inner_h consistent
 with that of the other likelihoods

---
 bilby/gw/likelihood/multiband.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bilby/gw/likelihood/multiband.py b/bilby/gw/likelihood/multiband.py
index 3ed8819af..4e338e19a 100644
--- a/bilby/gw/likelihood/multiband.py
+++ b/bilby/gw/likelihood/multiband.py
@@ -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(
-- 
GitLab