Source code for RsCma.Implementations.Configure.GprfMeasurement.Power.FilterPy

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class FilterPyCls: """FilterPy commands group definition. 3 total commands, 2 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("filterPy", core, parent) @property def bandpass(self): """bandpass commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_bandpass'): from .Bandpass import BandpassCls self._bandpass = BandpassCls(self._core, self._cmd_group) return self._bandpass @property def gauss(self): """gauss commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_gauss'): from .Gauss import GaussCls self._gauss = GaussCls(self._core, self._cmd_group) return self._gauss # noinspection PyTypeChecker
[docs] def get_type_py(self) -> enums.FilterType: """SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:FILTer:TYPE \n Snippet: value: enums.FilterType = driver.configure.gprfMeasurement.power.filterPy.get_type_py() \n Selects the IF filter type. \n :return: filter_type: BANDpass | GAUSs BANDpass Bandpass filter with selectable bandwidth GAUSs Gaussian filter with selectable bandwidth """ response = self._core.io.query_str('CONFigure:GPRF:MEASurement<Instance>:POWer:FILTer:TYPE?') return Conversions.str_to_scalar_enum(response, enums.FilterType)
[docs] def set_type_py(self, filter_type: enums.FilterType) -> None: """SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:FILTer:TYPE \n Snippet: driver.configure.gprfMeasurement.power.filterPy.set_type_py(filter_type = enums.FilterType.BANDpass) \n Selects the IF filter type. \n :param filter_type: BANDpass | GAUSs BANDpass Bandpass filter with selectable bandwidth GAUSs Gaussian filter with selectable bandwidth """ param = Conversions.enum_scalar_to_str(filter_type, enums.FilterType) self._core.io.write(f'CONFigure:GPRF:MEASurement<Instance>:POWer:FILTer:TYPE {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