Skip to content
Snippets Groups Projects
Commit 5cde2b90 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal_inspiral: instantiate Hanlder() with one argument per line

- there is a plan to merge the Data and Halder classes, and this aesthetic
  change will make it easier to migrate arguments as functionality is
  migrated.  it'll make the diffs more readable.
parent bc68025d
No related branches found
No related tags found
No related merge requests found
......@@ -713,8 +713,14 @@ for output_file_number, (svd_bank, output_filename, likelihood_namedtuple, zero_
if options.verbose:
print >>sys.stderr, "... output document initialized"
handler = lloidparts.Handler(mainloop, pipeline, output, instruments = set(detectors.channel_dict), tag = options.job_tag, seglistdict = seglists, zero_lag_ranking_stats_filename = zero_lag_ranking_stats_file, verbose = options.verbose)
handler = lloidparts.Handler(mainloop, pipeline,
output,
instruments = set(detectors.channel_dict),
tag = options.job_tag,
seglistdict = seglists,
zero_lag_ranking_stats_filename = zero_lag_ranking_stats_file,
verbose = options.verbose
)
if options.verbose:
print >>sys.stderr, "attaching appsinks to pipeline ...",
......
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