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
db96b0f9
Commit
db96b0f9
authored
5 years ago
by
Daichi Tsuna
Browse files
Options
Downloads
Patches
Plain Diff
streamburca: remove multi-burst, add template match
parent
53c4e3a2
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-burst/python/streamburca.py
+8
-6
8 additions, 6 deletions
gstlal-burst/python/streamburca.py
with
8 additions
and
6 deletions
gstlal-burst/python/streamburca.py
+
8
−
6
View file @
db96b0f9
...
...
@@ -81,16 +81,18 @@ class StreamBurca(object):
#
newly_reported
=
[]
for
node
,
events
in
self
.
time_slide_graph
.
pull
(
newly_reported
=
newly_reported
,
coinc_sieve
=
coinc_sieve
,
flush
=
flush
):
# construct row objects for coinc tables
for
node
,
events
in
self
.
time_slide_graph
.
pull
(
newly_reported
=
newly_reported
,
coinc_sieve
=
coinc_sieve
,
flush
=
flush
,
verbose
=
False
):
# for exact template match
if
not
burca
.
StringCuspCoincTables
.
ntuple_comparefunc
(
events
,
node
.
offset_vector
):
# construct row objects for coinc tables
coinc
,
coincmaps
,
multiburst
=
self
.
coinc_tables
.
coinc_rows
(
self
.
process_id
,
node
.
time_slide_id
,
events
,
u
"
sngl_burst
"
)
coinc
,
coincmaps
=
self
.
coinc_tables
.
coinc_rows
(
self
.
process_id
,
node
.
time_slide_id
,
events
,
u
"
sngl_burst
"
)
# finally, append coinc to tables
# finally, append coinc to tables
self
.
coinc_tables
.
append_coinc
(
coinc
,
coincmaps
,
multiburst
)
self
.
coinc_tables
.
append_coinc
(
coinc
,
coincmaps
)
# add any triggers that have been used in coincidences for
# the first time to the sngl_
inspiral
table
# the first time to the sngl_
burst
table
self
.
sngl_burst_table
.
extend
(
newly_reported
)
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