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

dags/layers/inspiral.py: round gate threshold to 3 decimal digits

parent eb6dd30b
No related branches found
No related tags found
1 merge request!41DAG Workflow Overhaul + OSG DAG support
......@@ -1245,7 +1245,7 @@ def calc_gate_threshold(config, svd_bin, aggregate="max"):
float(y) for x in config.filter.ht_gate_threshold.split("-") for y in x.split(":")
]
gate_mchirp_ratio = (max_threshold - min_threshold) / (max_mchirp - min_mchirp)
return gate_mchirp_ratio * (bank_mchirp - min_mchirp) + min_threshold
return round(gate_mchirp_ratio * (bank_mchirp - min_mchirp) + min_threshold, 3)
else: # uniform threshold
return config.filter.ht_gate_threshold
......
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