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
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
spiir-group
GstLAL
Commits
3b30e9d4
Commit
3b30e9d4
authored
4 years ago
by
Patrick Godwin
Browse files
Options
Downloads
Patches
Plain Diff
dags/layers/inspiral.py: switch from inj_simplify_and_cluster.sql to simplify_and_cluster.sql
parent
a2f3a264
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-inspiral/python/dags/layers/inspiral.py
+1
-2
1 addition, 2 deletions
gstlal-inspiral/python/dags/layers/inspiral.py
with
1 addition
and
2 deletions
gstlal-inspiral/python/dags/layers/inspiral.py
+
1
−
2
View file @
3b30e9d4
...
...
@@ -495,7 +495,6 @@ def cluster_layer(config, dag, trigger_cache):
# FIXME: find better way of discovering SQL file
share_path
=
os
.
path
.
split
(
dagutil
.
which
(
"
gstlal_inspiral
"
))[
0
].
replace
(
"
bin
"
,
"
share/gstlal
"
)
cluster_sql_file
=
os
.
path
.
join
(
share_path
,
"
simplify_and_cluster.sql
"
)
inj_cluster_sql_file
=
os
.
path
.
join
(
share_path
,
"
inj_simplify_and_cluster.sql
"
)
# combine triggers across SVD bins
# if triggers are from an injection job, also add in the injections
...
...
@@ -531,7 +530,7 @@ def cluster_layer(config, dag, trigger_cache):
# cluster by likelihood
cluster_layer
+=
Node
(
arguments
=
[
Option
(
"
sql-file
"
,
inj_cluster_sql_file
if
inj_type
else
cluster_sql_file
),
Option
(
"
sql-file
"
,
cluster_sql_file
),
Option
(
"
tmp-space
"
,
dagutil
.
condor_scratch_space
()),
],
inputs
=
Argument
(
"
triggers
"
,
trigger_dbs
.
files
),
...
...
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