Skip to content
Snippets Groups Projects
Commit 0c14f4f6 authored by Patrick Godwin's avatar Patrick Godwin
Browse files

far.py: increase singles penalty further

parent b766e958
No related branches found
No related tags found
No related merge requests found
...@@ -173,7 +173,7 @@ class RankingStat(snglcoinc.LnLikelihoodRatioMixin): ...@@ -173,7 +173,7 @@ class RankingStat(snglcoinc.LnLikelihoodRatioMixin):
# FIXME NOTE # FIXME NOTE
# Here we put in a penalty for single detector triggers. # Here we put in a penalty for single detector triggers.
# This is a tuned parameter. # This is a tuned parameter.
lnP = 0. if len(kwargs["snrs"]) > 1 else -12. lnP = 0. if len(kwargs["snrs"]) > 1 else -14.
# full ln L ranking stat. we define the ranking statistic # full ln L ranking stat. we define the ranking statistic
# to be the largest ln L from all allowed subsets of # to be the largest ln L from all allowed subsets of
......
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