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

streamthinca: simplify some thinca() logic

- thinca() can now handle the cases where a ranking statistic has not been
  supplied but fapfar and/or min_log_L have been set.
parent 215ee116
No related branches found
No related tags found
No related merge requests found
......@@ -265,9 +265,9 @@ class StreamThinca(object):
ntuple_comparefunc = ntuple_comparefunc,
seglists = seglists,
likelihood_func = self.ln_likelihood_func,
fapfar = fapfar if self.ln_likelihood_func is not None else None,
fapfar = fapfar,
min_instruments = self.min_instruments,
min_log_L = self.min_log_L if self.ln_likelihood_func is not None else None
min_log_L = self.min_log_L
)
# construct a coinc extractor from the XML document while
......
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