Skip to content

Commit c5960e2

Browse files
committed
set default of t_inspect_period to 0
1 parent 0e237df commit c5960e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wfdb/processing/qrs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ class Conf(object):
103103
ref_period : int, float, optional
104104
The QRS refractory period.
105105
t_inspect_period : int, float, optional
106-
The period below which a potential QRS complex is
107-
inspected to see if it is a T-wave.
106+
The period below which a potential QRS complex is inspected to
107+
see if it is a T-wave. Leave as 0 for no T-wave inspection.
108108
109109
"""
110110
def __init__(self, hr_init=75, hr_max=200, hr_min=25, qrs_width=0.1,
111111
qrs_thr_init=0.13, qrs_thr_min=0, ref_period=0.2,
112-
t_inspect_period=0.36):
112+
t_inspect_period=0):
113113
if hr_min < 0:
114114
raise ValueError("'hr_min' must be >= 0")
115115

0 commit comments

Comments
 (0)