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

inspiral_lr: don't include V1 in coinc rates model

- V1 must be removed from the coinc rates model in the denominator because
  all coincs will be made to be V1-less in the .__call__() method
parent d7d055f9
No related branches found
No related tags found
No related merge requests found
......@@ -561,8 +561,9 @@ class LnNoiseDensity(LnLRDensity):
# clusters this issue will go away (can use qhull's
# algebraic geometry code for the probability
# calculations).
# FIXME: remove V1 from rates model. delete after O2
self.coinc_rates = snglcoinc.CoincRates(
instruments = self.instruments,
instruments = self.instruments - frozenset(("V1",)),
delta_t = self.delta_t,
min_instruments = self.min_instruments
)
......
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