Skip to content
Snippets Groups Projects
Commit 6d385885 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix up SemiCoherentGlitchSearch

- Default to 1 glitch
- Only try to calculate segment 2F if length > 1800s
parent a9d243c9
No related branches found
No related tags found
No related merge requests found
......@@ -1033,7 +1033,7 @@ class SemiCoherentGlitchSearch(ComputeFstat):
@helper_functions.initializer
def __init__(self, label, outdir, tref, minStartTime, maxStartTime,
nglitch=0, sftfilepattern=None, theta0_idx=0, BSGL=False,
nglitch=1, sftfilepattern=None, theta0_idx=0, BSGL=False,
minCoverFreq=None, maxCoverFreq=None, assumeSqrtSX=None,
detectors=None, SSBprec=None, injectSources=None):
"""
......@@ -1085,7 +1085,7 @@ class SemiCoherentGlitchSearch(ComputeFstat):
twoFSum = 0
for i, theta_i_at_tref in enumerate(thetas):
ts, te = tboundaries[i], tboundaries[i+1]
if te - te > 1800:
twoFVal = self.get_fullycoherent_twoF(
ts, te, theta_i_at_tref[1], theta_i_at_tref[2],
theta_i_at_tref[3], Alpha, Delta)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment