Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
gstlal
Commits
065bb6cc
Commit
065bb6cc
authored
May 22, 2019
by
Chad Hanna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maximize LR over ifo combos with 2 or more ifos
parent
e6e518f9
Pipeline
#63264
passed with stages
in 25 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
gstlal-inspiral/python/far.py
gstlal-inspiral/python/far.py
+2
-5
No files found.
gstlal-inspiral/python/far.py
View file @
065bb6cc
...
...
@@ -177,11 +177,8 @@ class RankingStat(snglcoinc.LnLikelihoodRatioMixin):
# full ln L ranking stat. we define the ranking statistic
# to be the largest ln L from all allowed subsets of
# triggers
# FIXME: temporarily disabled due to performance concerns.
# just chain to parent class
return
lnP
+
super
(
RankingStat
,
self
).
__call__
(
**
kwargs
)
#return max(super(RankingStat, self).__call__(**kwargs) for kwargs in kwarggen(min_instruments = self.min_instruments, **kwargs))
# triggers. Maximizes over higher than double IFO combos.
return
lnP
+
super
(
RankingStat
,
self
).
__call__
(
**
kwargs
)
if
len
(
kwargs
[
"snrs"
])
==
1
else
max
(
super
(
RankingStat
,
self
).
__call__
(
**
kwargs
)
for
kwargs
in
kwarggen
(
min_instruments
=
max
(
2
,
self
.
min_instruments
),
**
kwargs
))
@
property
def
template_ids
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment