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

Resolve "Calculate time_delay_from_geocenter with coalescence time"

parent 1f724ae8
No related branches found
No related tags found
No related merge requests found
......@@ -1280,9 +1280,7 @@ class Interferometer(object):
signal_ifo *= self.strain_data.frequency_mask
time_shift = self.time_delay_from_geocenter(
parameters['ra'],
parameters['dec'],
self.strain_data.start_time)
parameters['ra'], parameters['dec'], parameters['geocent_time'])
dt = parameters['geocent_time'] + time_shift - self.strain_data.start_time
signal_ifo = signal_ifo * np.exp(
......
......@@ -43,7 +43,7 @@ class TestBasicGWTransient(unittest.TestCase):
"""Test log likelihood matches precomputed value"""
self.likelihood.log_likelihood()
self.assertAlmostEqual(self.likelihood.log_likelihood(),
-4048.5113284032036, 3)
-4054.2229111227016, 3)
def test_log_likelihood_ratio(self):
"""Test log likelihood ratio returns the correct value"""
......@@ -113,7 +113,7 @@ class TestGWTransient(unittest.TestCase):
"""Test log likelihood matches precomputed value"""
self.likelihood.log_likelihood()
self.assertAlmostEqual(self.likelihood.log_likelihood(),
-4048.5113284032036, 3)
-4054.2229111227016, 3)
def test_log_likelihood_ratio(self):
"""Test log likelihood ratio returns the correct value"""
......
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