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
82e6b3b1
There was a problem fetching the pipeline summary.
Commit
82e6b3b1
authored
6 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
inspiral.py: set effective distances to NaN
parent
da68de86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/python/inspiral.py
+17
-0
17 additions, 0 deletions
gstlal-inspiral/python/inspiral.py
with
17 additions
and
0 deletions
gstlal-inspiral/python/inspiral.py
+
17
−
0
View file @
82e6b3b1
...
...
@@ -52,6 +52,12 @@
import
bisect
from
collections
import
deque
try
:
from
fpconst
import
NaN
except
ImportError
:
# fpconst is not part of the standard library and might not be
# available
NaN
=
float
(
"
nan
"
)
import
itertools
import
math
import
numpy
...
...
@@ -671,6 +677,17 @@ class Data(object):
# triggers, make sure that worked
assert
all
(
event
.
end
in
buf_seg
for
event
in
events
)
# set all effective distances to NaN.
# gstlal_inspiral's effective distances are
# incorrect, and the PE codes require us to either
# provide correct effective distances or
# communicate to them that they are incorrect.
# they have explained that setting them to NaN is
# sufficient for the latter.
# FIXME: fix the effective distances
for
event
in
events
:
event
.
eff_dist
=
NaN
# Find max SNR sngles
if
events
:
max_snr_event
=
max
(
events
,
key
=
lambda
t
:
t
.
snr
)
...
...
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