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

add denoiser and clean elements to pipeparts

parent 0084a7b2
No related branches found
No related tags found
1 merge request!27stream-clean
Checking pipeline status
......@@ -921,6 +921,14 @@ def mkpeak(pipeline, src, n):
return mkgeneric(pipeline, src, "lal_peak", n = n)
def mkdenoiser(pipeline, src, **properties):
return mkgeneric(pipeline, src, "lal_denoiser", **properties)
def mkclean(pipeline, src, threshold=1.0):
return mkdenoiser(pipeline, src, stationary=True, threshold=threshold)
def mkitac(pipeline, src, n, bank, autocorrelation_matrix = None, mask_matrix = None, snr_thresh = 0, sigmasq = None):
properties = {
"n": n,
......
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