Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# GEO600 at the sensitivity during initial LIGO S6.
# arXiv:gr-qc/0008066 Table 1
# http://www.geo600.org/1032083/GEO600_Sensitivity_Curves
name = 'GEO600'
name = 'G1'
power_spectral_density = PowerSpectralDensity(asd_file='GEO600_S6e_asd.txt')
minimum_frequency = 40
maximum_frequency = 2048
Expand Down
11 changes: 6 additions & 5 deletions cli_bilby/bilby_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ def setup_command_line_args():
action="store_true",
help="If true, strip back the result to only the posterior",
)
parser.add_argument(
"--ignore-inconsistent",
action="store_true",
help="If true, ignore inconsistency errors in the merge process, but print a warning",
)

action_parser = parser.add_mutually_exclusive_group(required=True)
action_parser.add_argument(
Expand All @@ -89,11 +94,7 @@ def setup_command_line_args():
action="store_true",
help="Merge the set of runs, output saved using the outdir and label",
)
action_parser.add_argument(
"--ignore-inconsistent",
action="store_true",
help="If true, ignore inconsistency errors in the merge process, but print a warning",
)

action_parser.add_argument(
"-b", "--bayes", action="store_true", help="Print all Bayes factors."
)
Expand Down
4 changes: 2 additions & 2 deletions test/gw/detector/interferometer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,8 @@ def test_eq_false_different_ifo_strain_data(self):
class TestInterferometerAntennaPatternAgainstLAL(unittest.TestCase):
def setUp(self):
self.name = "name"
self.ifo_names = ['H1', 'L1', 'V1', 'K1', 'GEO600', 'ET']
self.lal_prefixes = {'H1': 'H1', 'L1': 'L1', 'V1': 'V1', 'K1': 'K1', 'GEO600': 'G1', 'ET': 'E1'}
self.ifo_names = ['H1', 'L1', 'V1', 'K1', 'G1', 'ET']
self.lal_prefixes = {'H1': 'H1', 'L1': 'L1', 'V1': 'V1', 'K1': 'K1', 'G1': 'G1', 'ET': 'E1'}
self.polarizations = ['plus', 'cross', 'breathing', 'longitudinal', 'x', 'y']
self.ifos = bilby.gw.detector.InterferometerList(self.ifo_names)
self.gpstime = 1305303144
Expand Down
Loading