Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
GstLAL
Commits
d4b2659e
Commit
d4b2659e
authored
3 years ago
by
Patrick Godwin
Committed by
ChiWai Chan
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
pipeparts/condition.py: add missing args to func signatures
parent
6f895c27
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal/python/pipeparts/condition.py
+2
-2
2 additions, 2 deletions
gstlal/python/pipeparts/condition.py
with
2 additions
and
2 deletions
gstlal/python/pipeparts/condition.py
+
2
−
2
View file @
d4b2659e
...
...
@@ -66,7 +66,7 @@ except KeyError as e:
raise
def
mkcondition
(
pipeline
,
src
,
target_rate
,
instrument
,
psd
=
None
,
psd_fft_length
=
32
,
ht_gate_threshold
=
float
(
"
inf
"
),
veto_segments
=
None
,
nxydump_segment
=
None
,
track_psd
=
False
,
block_duration
=
1
*
Gst
.
SECOND
,
zero_pad
=
None
,
width
=
64
,
statevector
=
None
,
dqvector
=
None
,
fir_whiten_reference_psd
=
None
):
def
mkcondition
(
pipeline
,
src
,
target_rate
,
instrument
,
psd
=
None
,
psd_fft_length
=
32
,
ht_gate_threshold
=
float
(
"
inf
"
),
veto_segments
=
None
,
nxydump_segment
=
None
,
track_psd
=
False
,
block_duration
=
1
*
Gst
.
SECOND
,
zero_pad
=
None
,
width
=
64
,
statevector
=
None
,
dqvector
=
None
,
fir_whiten_reference_psd
=
None
,
track_latency
=
False
):
"""
Build pipeline stage to whiten and downsample h(t).
...
...
@@ -356,7 +356,7 @@ def mkcondition(pipeline, src, target_rate, instrument, psd = None, psd_fft_leng
return
head
def
mkmultiband
(
pipeline
,
head
,
rates
,
unit_normalize
=
True
):
def
mkmultiband
(
pipeline
,
head
,
rates
,
instrument
=
None
,
unit_normalize
=
True
):
"""
Build pipeline stage to multiband a stream.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment