Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
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
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
GstLAL
Commits
5e9398c3
Commit
5e9398c3
authored
6 years ago
by
Chad Hanna
Committed by
Kipp Cannon
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
lessen the requirement that horizon factors exactly match
parent
0e6a0bfe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/python/stats/inspiral_lr.py
+4
-1
4 additions, 1 deletion
gstlal-inspiral/python/stats/inspiral_lr.py
with
4 additions
and
1 deletion
gstlal-inspiral/python/stats/inspiral_lr.py
+
4
−
1
View file @
5e9398c3
...
...
@@ -389,7 +389,10 @@ class LnSignalDensity(LnLRDensity):
if
self
.
population_model_file
is
None
and
other
.
population_model_file
is
not
None
:
self
.
population_model_file
=
other
.
population_model_file
if
self
.
horizon_factors
is
not
None
and
other
.
horizon_factors
is
not
None
and
other
.
horizon_factors
!=
self
.
horizon_factors
:
raise
ValueError
(
"
incompatible horizon_factors
"
)
# require that the horizon factors be the same within 1%
for
k
in
self
.
horizon_factors
:
if
0.99
>
self
.
horizon_factors
[
k
]
/
other
.
horizon_factors
[
k
]
>
1.01
:
raise
ValueError
(
"
incompatible horizon_factors
"
)
if
self
.
horizon_factors
is
None
and
other
.
horizon_factors
is
not
None
:
self
.
horizon_factors
=
other
.
horizon_factors
...
...
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