Skip to content
Snippets Groups Projects
Commit 3b30e9d4 authored by Patrick Godwin's avatar Patrick Godwin
Browse files

dags/layers/inspiral.py: switch from inj_simplify_and_cluster.sql to simplify_and_cluster.sql

parent a2f3a264
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment