from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ThresholdCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("threshold", core, parent)
[docs]
def set(self, level: float) -> None:
"""
``[SENSe]:DETect:THReshold`` \n
Snippet: ``driver.applications.k6Pulse.sense.detect.threshold.set(level = 1.0)`` \n
The threshold determines whether a pulse is detected or not. The top of a pulse must exceed the threshold in order to be
detected. The threshold is defined in relation to the reference defined by method
``RsFsw.applications.k6Pulse.sense.detect.reference.set()`` .
:param level: numeric value in dB or dBm, depending on reference type
"""
param = Conversions.decimal_value_to_str(level)
self._core.io.write(f'SENSe:DETect:THReshold {param}')
[docs]
def get(self) -> float:
"""
``[SENSe]:DETect:THReshold`` \n
Snippet: ``value: float = driver.applications.k6Pulse.sense.detect.threshold.get()`` \n
The threshold determines whether a pulse is detected or not. The top of a pulse must exceed the threshold in order to be
detected. The threshold is defined in relation to the reference defined by method
``RsFsw.applications.k6Pulse.sense.detect.reference.set()`` .
:return: level: numeric value in dB or dBm, depending on reference type
"""
response = self._core.io.query_str(f'SENSe:DETect:THReshold?')
return Conversions.str_to_float(response)