diff --git a/examples/injection_examples/australian_detector.py b/examples/injection_examples/australian_detector.py index 4ad668d3a1f926d349788725e52111a4eb8f2f57..3cd8c4aa94dd039e77644f9e69680892c3b6a147 100644 --- a/examples/injection_examples/australian_detector.py +++ b/examples/injection_examples/australian_detector.py @@ -14,8 +14,6 @@ import gwinc # Set the duration and sampling frequency of the data segment that we're going # to inject the signal into -import bilby.gw.detector - duration = 4. sampling_frequency = 2048. @@ -37,7 +35,7 @@ Aplus_psd = gwinc_noises['Total'] # Set up the detector as a four-kilometer detector in Gingin # The location of this detector is not defined in Bilby, so we need to add it -AusIFO = bilby.gw.detector.interferometer.Interferometer( +AusIFO = bilby.gw.detector.Interferometer( power_spectral_density=bilby.gw.detector.PowerSpectralDensity( frequency_array=frequencies, psd_array=Aplus_psd), name='AusIFO', length=4, diff --git a/examples/injection_examples/binary_neutron_star_example.py b/examples/injection_examples/binary_neutron_star_example.py index b966b5db3efb699b363c4d0a9f681f181eaf8c85..81db9eda258be387229cfc31595fce1895477718 100644 --- a/examples/injection_examples/binary_neutron_star_example.py +++ b/examples/injection_examples/binary_neutron_star_example.py @@ -15,8 +15,6 @@ import numpy as np import bilby # Specify the output directory and the name of the simulation. -import bilby.gw.detector - outdir = 'outdir' label = 'bns_example' bilby.core.utils.setup_logger(outdir=outdir, label=label) diff --git a/examples/injection_examples/calibration_example.py b/examples/injection_examples/calibration_example.py index 9bd21a281c15d060359d4677ee3d4cbb87e07dd6..ca58994696f4233ceb60d17bf500e144671e6c72 100644 --- a/examples/injection_examples/calibration_example.py +++ b/examples/injection_examples/calibration_example.py @@ -10,7 +10,6 @@ import bilby # Set the duration and sampling frequency of the data segment # that we're going to create and inject the signal into. -import bilby.gw.detector duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/change_sampled_parameters.py b/examples/injection_examples/change_sampled_parameters.py index 84ebd1cb483faa27f2c23e1a93fe727c5cb1c6b1..9f432ef52910fd125b1930ea90420e7eae0b6245 100644 --- a/examples/injection_examples/change_sampled_parameters.py +++ b/examples/injection_examples/change_sampled_parameters.py @@ -11,7 +11,6 @@ from __future__ import division, print_function import bilby import numpy as np -import bilby.gw.detector bilby.core.utils.setup_logger(log_level="info") diff --git a/examples/injection_examples/create_your_own_source_model.py b/examples/injection_examples/create_your_own_source_model.py index 0204cdefa578cbb9e4ebf1dce74d5940c4b8b926..ded59e157ee098bd7c765dae01e0b5b55790d408 100644 --- a/examples/injection_examples/create_your_own_source_model.py +++ b/examples/injection_examples/create_your_own_source_model.py @@ -7,8 +7,6 @@ import bilby import numpy as np # First set up logging and some output directories and labels -import bilby.gw.detector - outdir = 'outdir' label = 'create_your_own_source_model' sampling_frequency = 4096 diff --git a/examples/injection_examples/create_your_own_time_domain_source_model.py b/examples/injection_examples/create_your_own_time_domain_source_model.py index b937c8ca88fde13e080504ea32cbcfda04aef4c6..11290fde30e52f9d1851654d3ffa4349f697fbe8 100644 --- a/examples/injection_examples/create_your_own_time_domain_source_model.py +++ b/examples/injection_examples/create_your_own_time_domain_source_model.py @@ -11,9 +11,6 @@ import bilby # define the time-domain model -import bilby.gw.detector - - def time_domain_damped_sinusoid( time, amplitude, damping_time, frequency, phase, t0): """ diff --git a/examples/injection_examples/custom_proposal_example.py b/examples/injection_examples/custom_proposal_example.py index cfe67e54ca9f72983351a881a7be94ac1a38d99b..8480dd361a141b7407d7ab618028ad542d737cd1 100644 --- a/examples/injection_examples/custom_proposal_example.py +++ b/examples/injection_examples/custom_proposal_example.py @@ -5,8 +5,6 @@ Tutorial for running cpnest with custom jump proposals. from __future__ import division, print_function import numpy as np - -import bilby.gw.detector import bilby.gw.sampler.proposal from bilby.core.sampler import proposal diff --git a/examples/injection_examples/eccentric_inspiral.py b/examples/injection_examples/eccentric_inspiral.py index b0b80c770a976a1da1f0fb85e198e1527ce4ca40..8d3053f353fb769384f25a17c3b1d406860fd88e 100644 --- a/examples/injection_examples/eccentric_inspiral.py +++ b/examples/injection_examples/eccentric_inspiral.py @@ -14,7 +14,6 @@ from __future__ import division import numpy as np import bilby -import bilby.gw.detector duration = 64. sampling_frequency = 256. diff --git a/examples/injection_examples/fake_sampler_example.py b/examples/injection_examples/fake_sampler_example.py index 18965c85d018492f6229e2434a9b433440cd4255..63c2713737b17586a9c2d296837beec21fd83b43 100755 --- a/examples/injection_examples/fake_sampler_example.py +++ b/examples/injection_examples/fake_sampler_example.py @@ -9,8 +9,6 @@ import deepdish as dd import bilby import matplotlib.pyplot as plt -import bilby.gw.detector - def make_comparison_histograms(file_full, file_roq): # Returns a dictionary diff --git a/examples/injection_examples/fast_tutorial.py b/examples/injection_examples/fast_tutorial.py index 33a15f46dcb210025eb0bcd77c4434980453ca0a..6bfd0a0ed8bab100ee78d0fd03476a40b83b04fb 100644 --- a/examples/injection_examples/fast_tutorial.py +++ b/examples/injection_examples/fast_tutorial.py @@ -14,8 +14,6 @@ import bilby # Set the duration and sampling frequency of the data segment that we're # going to inject the signal into -import bilby.gw.detector - duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/how_to_specify_the_prior.py b/examples/injection_examples/how_to_specify_the_prior.py index 5a1d26f9e362c2902f09e26a40f4d51b34af1cab..68081b4d2eddabec080e48005c6fc5536bb546e1 100644 --- a/examples/injection_examples/how_to_specify_the_prior.py +++ b/examples/injection_examples/how_to_specify_the_prior.py @@ -7,7 +7,7 @@ from __future__ import division, print_function import numpy as np import bilby -import bilby.gw.detector + duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/marginalized_likelihood.py b/examples/injection_examples/marginalized_likelihood.py index c41e7a36f9062a2398bd6f302f765a52044cdca2..c6ab3362ca98a57a5a423c62c44f78ab54148493 100644 --- a/examples/injection_examples/marginalized_likelihood.py +++ b/examples/injection_examples/marginalized_likelihood.py @@ -10,7 +10,6 @@ from __future__ import division, print_function import bilby import numpy as np -import bilby.gw.detector duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/non_tensor.py b/examples/injection_examples/non_tensor.py index 76a18415979b49036c1d9e612a9771abee93ee87..c75fcf0dbcaad9eb589e700f8baccdb393818a89 100644 --- a/examples/injection_examples/non_tensor.py +++ b/examples/injection_examples/non_tensor.py @@ -10,8 +10,6 @@ from __future__ import division, print_function import bilby import numpy as np -import bilby.gw.detector - def vector_tensor_sine_gaussian(frequency_array, hrss, Q, frequency, epsilon): """ diff --git a/examples/injection_examples/plot_skymap.py b/examples/injection_examples/plot_skymap.py index 840f61164920c3e024ff6f69a8295ba165143bcb..9ebee7725fb0b913a2329c56622367f51033e129 100644 --- a/examples/injection_examples/plot_skymap.py +++ b/examples/injection_examples/plot_skymap.py @@ -5,7 +5,6 @@ skymap """ from __future__ import division, print_function import bilby -import bilby.gw.detector duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/plot_time_domain_data.py b/examples/injection_examples/plot_time_domain_data.py index aea74e0dce98fde59c9b71bd7fac46b58ab9573a..eee3c8557bd447714bd0fe9025f838928f9cd542 100644 --- a/examples/injection_examples/plot_time_domain_data.py +++ b/examples/injection_examples/plot_time_domain_data.py @@ -4,7 +4,6 @@ from __future__ import division, print_function import numpy as np import bilby -import bilby.gw.detector np.random.seed(1) diff --git a/examples/injection_examples/roq_example.py b/examples/injection_examples/roq_example.py index 896bcb381a61d907c823c861b498a81f02d26c45..6d54aaa99459347cc5d791f8798d0f0450903ed7 100644 --- a/examples/injection_examples/roq_example.py +++ b/examples/injection_examples/roq_example.py @@ -13,7 +13,6 @@ from __future__ import division, print_function import numpy as np import bilby -import bilby.gw.detector outdir = 'outdir' label = 'roq' diff --git a/examples/injection_examples/sine_gaussian_example.py b/examples/injection_examples/sine_gaussian_example.py index cb7052d1b22a6f810488a5410047bec324826185..07ac1ff0b2a12f1fe446e3f08e1fc85f70783c1f 100644 --- a/examples/injection_examples/sine_gaussian_example.py +++ b/examples/injection_examples/sine_gaussian_example.py @@ -9,8 +9,6 @@ import numpy as np # Set the duration and sampling frequency of the data segment that we're going # to inject the signal into -import bilby.gw.detector - duration = 4. sampling_frequency = 2048. diff --git a/examples/injection_examples/standard_15d_cbc_tutorial.py b/examples/injection_examples/standard_15d_cbc_tutorial.py index ba22360b8e9204a369f4ccccf9c6d6d044f3546b..822c11b1002f1bdb1021e5d0d7daef57dc16a259 100644 --- a/examples/injection_examples/standard_15d_cbc_tutorial.py +++ b/examples/injection_examples/standard_15d_cbc_tutorial.py @@ -10,8 +10,6 @@ import bilby # Set the duration and sampling frequency of the data segment that we're # going to inject the signal into -import bilby.gw.detector - duration = 4. sampling_frequency = 2048. diff --git a/test/detector_test.py b/test/detector_test.py index 1a3a3959824275c5d00ad9b0854b3ef976034c23..ab15548ea0ab17a277190235132c2a79f9c342aa 100644 --- a/test/detector_test.py +++ b/test/detector_test.py @@ -34,7 +34,7 @@ class TestInterferometer(unittest.TestCase): self.xarm_tilt = 0. self.yarm_tilt = 0. # noinspection PyTypeChecker - self.ifo = bilby.gw.detector.interferometer.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density, + self.ifo = bilby.gw.detector.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density, minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency, length=self.length, latitude=self.latitude, longitude=self.longitude, @@ -360,7 +360,7 @@ class TestInterferometer(unittest.TestCase): else: self.ifo.to_hdf5(outdir='outdir', label='test') filename = self.ifo._hdf5_filename_from_outdir_label(outdir='outdir', label='test') - recovered_ifo = bilby.gw.detector.interferometer.Interferometer.from_hdf5(filename) + recovered_ifo = bilby.gw.detector.Interferometer.from_hdf5(filename) self.assertEqual(self.ifo, recovered_ifo) def test_to_and_from_hdf5_wrong_class(self): @@ -371,7 +371,7 @@ class TestInterferometer(unittest.TestCase): dd.io.save('./outdir/psd.h5', self.power_spectral_density) filename = self.ifo._hdf5_filename_from_outdir_label(outdir='outdir', label='psd') with self.assertRaises(TypeError): - bilby.gw.detector.interferometer.Interferometer.from_hdf5(filename) + bilby.gw.detector.Interferometer.from_hdf5(filename) class TestInterferometerEquals(unittest.TestCase): @@ -396,7 +396,7 @@ class TestInterferometerEquals(unittest.TestCase): self.frequency_array = bilby.utils.create_frequency_series(sampling_frequency=self.sampling_frequency, duration=self.duration) self.strain = self.frequency_array - self.ifo_1 = bilby.gw.detector.interferometer.Interferometer(name=self.name, + self.ifo_1 = bilby.gw.detector.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density_1, minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency, length=self.length, @@ -404,7 +404,7 @@ class TestInterferometerEquals(unittest.TestCase): elevation=self.elevation, xarm_azimuth=self.xarm_azimuth, yarm_azimuth=self.yarm_azimuth, xarm_tilt=self.xarm_tilt, yarm_tilt=self.yarm_tilt) - self.ifo_2 = bilby.gw.detector.interferometer.Interferometer(name=self.name, + self.ifo_2 = bilby.gw.detector.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density_2, minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency, length=self.length, @@ -498,7 +498,7 @@ class TestInterferometerStrainData(unittest.TestCase): def setUp(self): self.minimum_frequency = 10 self.maximum_frequency = 20 - self.ifosd = bilby.gw.detector.strain_data.InterferometerStrainData( + self.ifosd = bilby.gw.detector.InterferometerStrainData( minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency) @@ -681,10 +681,10 @@ class TestInterferometerStrainDataEquals(unittest.TestCase): self.frequency_array = bilby.utils.create_frequency_series(sampling_frequency=self.sampling_frequency, duration=self.duration) self.strain = self.frequency_array - self.ifosd_1 = bilby.gw.detector.strain_data.InterferometerStrainData(minimum_frequency=self.minimum_frequency, + self.ifosd_1 = bilby.gw.detector.InterferometerStrainData(minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency, roll_off=self.roll_off) - self.ifosd_2 = bilby.gw.detector.strain_data.InterferometerStrainData(minimum_frequency=self.minimum_frequency, + self.ifosd_2 = bilby.gw.detector.InterferometerStrainData(minimum_frequency=self.minimum_frequency, maximum_frequency=self.maximum_frequency, roll_off=self.roll_off) self.ifosd_1.set_from_frequency_domain_strain(frequency_domain_strain=self.strain, @@ -788,7 +788,7 @@ class TestInterferometerList(unittest.TestCase): self.yarm_tilt1 = 0. self.yarm_tilt2 = 0. # noinspection PyTypeChecker - self.ifo1 = bilby.gw.detector.interferometer.Interferometer(name=self.name1, + self.ifo1 = bilby.gw.detector.Interferometer(name=self.name1, power_spectral_density=self.power_spectral_density1, minimum_frequency=self.minimum_frequency1, maximum_frequency=self.maximum_frequency1, length=self.length1, @@ -796,7 +796,7 @@ class TestInterferometerList(unittest.TestCase): elevation=self.elevation1, xarm_azimuth=self.xarm_azimuth1, yarm_azimuth=self.yarm_azimuth1, xarm_tilt=self.xarm_tilt1, yarm_tilt=self.yarm_tilt1) - self.ifo2 = bilby.gw.detector.interferometer.Interferometer(name=self.name2, + self.ifo2 = bilby.gw.detector.Interferometer(name=self.name2, power_spectral_density=self.power_spectral_density2, minimum_frequency=self.minimum_frequency2, maximum_frequency=self.maximum_frequency2, length=self.length2, @@ -865,7 +865,7 @@ class TestInterferometerList(unittest.TestCase): def test_init_inconsistent_duration(self): self.frequency_arrays = np.linspace(0, 2048, 2049) - self.ifo2 = bilby.gw.detector.interferometer.Interferometer(name=self.name2, + self.ifo2 = bilby.gw.detector.Interferometer(name=self.name2, power_spectral_density=self.power_spectral_density2, minimum_frequency=self.minimum_frequency2, maximum_frequency=self.maximum_frequency2, length=self.length2, @@ -880,7 +880,7 @@ class TestInterferometerList(unittest.TestCase): def test_init_inconsistent_sampling_frequency(self): self.frequency_arrays = np.linspace(0, 2048, 2049) - self.ifo2 = bilby.gw.detector.interferometer.Interferometer(name=self.name2, + self.ifo2 = bilby.gw.detector.Interferometer(name=self.name2, power_spectral_density=self.power_spectral_density2, minimum_frequency=self.minimum_frequency2, maximum_frequency=self.maximum_frequency2, length=self.length2, @@ -898,7 +898,7 @@ class TestInterferometerList(unittest.TestCase): with self.assertRaises(ValueError): bilby.gw.detector.InterferometerList([self.ifo1, self.ifo2]) - @patch.object(bilby.gw.detector.interferometer.Interferometer, 'set_strain_data_from_power_spectral_density') + @patch.object(bilby.gw.detector.Interferometer, 'set_strain_data_from_power_spectral_density') def test_set_strain_data_from_power_spectral_density(self, m): self.ifo_list.set_strain_data_from_power_spectral_densities(sampling_frequency=123, duration=6.2, start_time=3) m.assert_called_with(sampling_frequency=123, duration=6.2, start_time=3) @@ -924,13 +924,13 @@ class TestInterferometerList(unittest.TestCase): self.ifo_list.inject_signal(parameters=None, waveform_generator=waveform_generator) self.assertTrue(m.called) - @patch.object(bilby.gw.detector.interferometer.Interferometer, 'inject_signal') + @patch.object(bilby.gw.detector.Interferometer, 'inject_signal') def test_inject_signal_with_inj_pol(self, m): self.ifo_list.inject_signal(injection_polarizations=dict(plus=1)) m.assert_called_with(parameters=None, injection_polarizations=dict(plus=1)) self.assertEqual(len(self.ifo_list), m.call_count) - @patch.object(bilby.gw.detector.interferometer.Interferometer, 'inject_signal') + @patch.object(bilby.gw.detector.Interferometer, 'inject_signal') def test_inject_signal_returns_expected_polarisations(self, m): m.return_value = dict(plus=1, cross=2) injection_polarizations = dict(plus=1, cross=2) @@ -938,7 +938,7 @@ class TestInterferometerList(unittest.TestCase): self.assertDictEqual(self.ifo1.inject_signal(injection_polarizations=injection_polarizations), ifos_pol[0]) self.assertDictEqual(self.ifo2.inject_signal(injection_polarizations=injection_polarizations), ifos_pol[1]) - @patch.object(bilby.gw.detector.interferometer.Interferometer, 'save_data') + @patch.object(bilby.gw.detector.Interferometer, 'save_data') def test_save_data(self, m): self.ifo_list.save_data(outdir='test_outdir', label='test_outdir') m.assert_called_with(outdir='test_outdir', label='test_outdir')