Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Heimann
lassie
Commits
90345849
Commit
90345849
authored
Apr 18, 2018
by
Marius Kriegerowski
Browse files
ifc: fix missing masters/downsample_rate
parent
63396a6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ifc.py
View file @
90345849
...
...
@@ -431,8 +431,12 @@ class TemplateMatchingIFC(IFC):
b
=
orig_b
.
copy
()
nslc
=
b
.
nslc_id
a
=
self
.
masters
[
nslc
]
downsample
(
b
,
1.
/
self
.
downsample_rate
)
a
=
self
.
masters
.
get
(
nslc
,
False
)
if
not
a
:
continue
if
self
.
downsample_rate
is
not
None
:
downsample
(
b
,
1.
/
self
.
downsample_rate
)
b
.
highpass
(
4
,
self
.
fmin
,
demean
=
False
)
b
.
lowpass
(
4
,
self
.
fmax
,
demean
=
False
)
...
...
Write
Preview
Supports
Markdown
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