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

inspiral_pipe.py: fix issue in accessing svd node properties in...

inspiral_pipe.py: fix issue in accessing svd node properties in marginalize_layer() causing issues with DAG generation
parent 66472208
No related branches found
No related tags found
No related merge requests found
......@@ -603,7 +603,7 @@ def marginalize_layer(dag, jobs, svd_nodes, lloid_output, lloid_diststats, optio
# lloid_output. svd nodes should be made into a dictionary much
# earlier in the code to prevent a mishap
if svd_nodes:
one_ifo_svd_nodes = dict(("%04d" % n, [node]) for n, node in enumerate( svd_nodes.values()[0]))
one_ifo_svd_nodes = dict(("%04d" % n, node) for n, node in enumerate( svd_nodes.values()[0]))
# Here n counts the bins
# FIXME - this is broken for injection dags right now because of marg nodes
......
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