Skip to content
Snippets Groups Projects
Commit 836e17f1 authored by Chad Hanna's avatar Chad Hanna
Browse files

gstlal_inspiral: fix two forgotten paths to use the framexmit src

parent ef9d738f
No related branches found
No related tags found
No related merge requests found
......@@ -394,7 +394,7 @@ if options.verbose:
print >>sys.stderr, "... output document initialized"
# setup the pipeline hander with dq gates if in online mode
if options.data_source == "lvshm":
if options.data_source in ("lvshm", "framexmit"):
gates = dict([("%s_state_vector_gate" % ifo, "state vector gate") for ifo in detectors.channel_dict])
else:
gates = {}
......@@ -423,7 +423,7 @@ if options.write_pipeline is not None:
#
if options.data_source != "lvshm":
if options.data_source not in ("lvshm", "framexmit"):
if options.verbose:
print >>sys.stderr, "setting pipeline state to paused ..."
if pipeline.set_state(gst.STATE_PAUSED) != gst.STATE_CHANGE_SUCCESS:
......@@ -493,5 +493,5 @@ output.write_output_file(filename = options.output or output.coincs_document.T05
# done
#
if options.data_source == "lvshm":
if options.data_source in ("lvshm", "framexmit"):
sys.exit(1) # online pipeline always ends with an error code
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