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

inspiral_lr.py: fix missing idq file in class initialization

(cherry picked from commit 80a2dd8e)
parent fd1fb4ff
No related branches found
No related tags found
No related merge requests found
Pipeline #88492 passed with warnings
......@@ -704,7 +704,7 @@ class OnlineFrankensteinLnSignalDensity(LnSignalDensity):
"""
@classmethod
def splice(cls, src, Dh_donor):
self = cls(src.template_ids, src.instruments, src.delta_t, population_model_file = src.population_model_file, dtdphi_file = src.dtdphi_file, min_instruments = src.min_instruments, horizon_factors = src.horizon_factors)
self = cls(src.template_ids, src.instruments, src.delta_t, population_model_file = src.population_model_file, dtdphi_file = src.dtdphi_file, idq_file = src.idq_file, min_instruments = src.min_instruments, horizon_factors = src.horizon_factors)
for key, lnpdf in src.densities.items():
self.densities[key] = lnpdf.copy()
# NOTE: not a copy. we hold a reference to the donor's
......
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