Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
8c6a0d7b
Commit
8c6a0d7b
authored
2 years ago
by
Colm Talbot
Browse files
Options
Downloads
Patches
Plain Diff
TYPOFIX: typofixes from gitlab direct commits
parent
e17efd00
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1105
Relative Binning in bilby
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/gw/likelihood/base.py
+3
-17
3 additions, 17 deletions
bilby/gw/likelihood/base.py
with
3 additions
and
17 deletions
bilby/gw/likelihood/base.py
+
3
−
17
View file @
8c6a0d7b
...
...
@@ -617,8 +617,8 @@ class GravitationalWaveTransient(Likelihood):
ifo_length
=
len
(
ifo
.
frequency_domain_strain
)
mask
=
ifo
.
frequency_mask
signal
=
self
.
_compute_full_waveform
(
signal_polarizations
=
waveform
_polarizations
,
interferometer
=
i
nterferometer
,
signal_polarizations
=
signal
_polarizations
,
interferometer
=
i
fo
,
)
signal_long
[:
ifo_length
]
=
signal
data
[:
ifo_length
]
=
np
.
conj
(
ifo
.
frequency_domain_strain
)
...
...
@@ -722,21 +722,7 @@ class GravitationalWaveTransient(Likelihood):
interferometer: bilby.gw.detector.Interferometer
Interferometer to compute the response with respect to.
"""
"""
Project the waveform polarizations against the interferometer
response. This is useful for likelihood classes that don
'
t
use the full frequency array, e.g., the relative binning
likelihood.
Parameters:
signal_polarizations: dict
Dictionary containing the waveform evaluated at
:code:`interferometer.frequency_array`.
interferometer: bilby.gw.detector.Interferometer
Interferometer to compute the response with respect to.
"""
return
interferometer
.
get_detector_response
(
signal_polarizations
,
self
.
parameters
)
return
interferometer
.
get_detector_response
(
signal_polarizations
,
self
.
parameters
)
def
generate_phase_sample_from_marginalized_likelihood
(
self
,
signal_polarizations
=
None
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment