Source code for RsCma.Implementations.Configure.AfRf.Measurement.FilterPy

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class FilterPyCls: """FilterPy commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("filterPy", core, parent) @property def notch(self): """notch commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_notch'): from .Notch import NotchCls self._notch = NotchCls(self._core, self._cmd_group) return self._notch
[docs] def get_disable(self) -> bool: """SCPI: CONFigure:AFRF:MEASurement<Instance>:FILTer:DISable \n Snippet: value: bool = driver.configure.afRf.measurement.filterPy.get_disable() \n Disables all filters for all paths including notch filters. \n :return: disable: OFF | ON """ response = self._core.io.query_str('CONFigure:AFRF:MEASurement<Instance>:FILTer:DISable?') return Conversions.str_to_bool(response)
[docs] def set_disable(self, disable: bool) -> None: """SCPI: CONFigure:AFRF:MEASurement<Instance>:FILTer:DISable \n Snippet: driver.configure.afRf.measurement.filterPy.set_disable(disable = False) \n Disables all filters for all paths including notch filters. \n :param disable: OFF | ON """ param = Conversions.bool_to_str(disable) self._core.io.write(f'CONFigure:AFRF:MEASurement<Instance>:FILTer:DISable {param}')
def clone(self) -> 'FilterPyCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = FilterPyCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group