Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Duncan Macleod
gstlal
Commits
48da1441
Commit
48da1441
authored
8 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_inspiral: 0 horizon history at segment boundaries
parent
835b9380
No related branches found
Branches containing commit
Tags
gstlal-calibration-0.99-v1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/bin/gstlal_inspiral
+17
-0
17 additions, 0 deletions
gstlal-inspiral/bin/gstlal_inspiral
with
17 additions
and
0 deletions
gstlal-inspiral/bin/gstlal_inspiral
+
17
−
0
View file @
48da1441
...
...
@@ -791,6 +791,23 @@ for output_file_number, (svd_bank_url_dict, output_url, likelihood_url_namedtupl
pipeparts.connect_appsink_dump_dot(pipeline, appsinks, options.write_pipeline, options.verbose)
pipeparts.write_dump_dot(pipeline, "%s.%s" % (options.write_pipeline, "NULL"), verbose = options.verbose)
#
# put a 0 into all horizon histories at the boundaries of the
# analysis segment so that queries for horizon distance at times
# outside the segment and for horizon distance for instruments for
# which there is no data report 0. NOTE: if this job is
# contiguous with another job then this makes it seem like there is
# a 0 in the horizon distance history at the boundary between them
# when that is probably not correct. because it's a single sample
# it shouldn't lead to significant problems, but this is something
# to be aware of.
#
if detectors.seg:
for instrument in coinc_params_distributions.instruments:
handler.record_horizon_distance(instrument, float(detectors.seg[0]), 0.0)
handler.record_horizon_distance(instrument, float(detectors.seg[1]), 0.0)
#
# Run pipeline
...
...
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