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
Merge requests
!690
Fixed ROQ scaling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixed ROQ scaling
fix_roq_scaling
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Moritz Huebner
requested to merge
fix_roq_scaling
into
master
5 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Fixes an issue with the ROQ scaling that caused it to fail.
Closes
bilby_pipe#150 (closed)
Edited
5 years ago
by
Moritz Huebner
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
0f4665e5
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bilby/gw/likelihood.py
+
1
−
1
Options
@@ -1079,7 +1079,7 @@ class ROQGravitationalWaveTransient(GravitationalWaveTransient):
# Get scaled ROQ quantities
roq_scaled_minimum_frequency
=
self
.
roq_params
[
'
flow
'
]
*
self
.
roq_scale_factor
roq_scaled_maximum_frequency
=
self
.
roq_params
[
'
fhigh
'
]
*
self
.
roq_scale_factor
roq_scaled_segment_length
=
self
.
roq_params
[
'
seglen
'
]
*
self
.
roq_scale_factor
roq_scaled_segment_length
=
self
.
roq_params
[
'
seglen
'
]
/
self
.
roq_scale_factor
# Generate frequencies for the ROQ
roq_frequencies
=
create_frequency_series
(
sampling_frequency
=
roq_scaled_maximum_frequency
*
2
,
Loading