Source code for RsSmbv.Implementations.Source.Bb.Evdo.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. 13 total commands, 3 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("filterPy", core, parent) @property def ilength(self): """ilength commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_ilength'): from .Ilength import IlengthCls self._ilength = IlengthCls(self._core, self._cmd_group) return self._ilength @property def osamplinng(self): """osamplinng commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_osamplinng'): from .Osamplinng import OsamplinngCls self._osamplinng = OsamplinngCls(self._core, self._cmd_group) return self._osamplinng @property def parameter(self): """parameter commands group. 0 Sub-classes, 8 commands.""" if not hasattr(self, '_parameter'): from .Parameter import ParameterCls self._parameter = ParameterCls(self._core, self._cmd_group) return self._parameter
[docs] def get_osampling(self) -> int: """SCPI: [SOURce<HW>]:BB:EVDO:FILTer:OSAMpling \n Snippet: value: int = driver.source.bb.evdo.filterPy.get_osampling() \n No command help available \n :return: osampling: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EVDO:FILTer:OSAMpling?') return Conversions.str_to_int(response)
[docs] def set_osampling(self, osampling: int) -> None: """SCPI: [SOURce<HW>]:BB:EVDO:FILTer:OSAMpling \n Snippet: driver.source.bb.evdo.filterPy.set_osampling(osampling = 1) \n No command help available \n :param osampling: No help available """ param = Conversions.decimal_value_to_str(osampling) self._core.io.write(f'SOURce<HwInstance>:BB:EVDO:FILTer:OSAMpling {param}')
# noinspection PyTypeChecker
[docs] def get_type_py(self) -> enums.DmFilterA: """SCPI: [SOURce<HW>]:BB:EVDO:FILTer:TYPE \n Snippet: value: enums.DmFilterA = driver.source.bb.evdo.filterPy.get_type_py() \n The command selects the filter type. \n :return: type_py: RCOSine| COSine| GAUSs| LGAuss| CONE| COF705| COEQualizer| COFequalizer| C2K3x| APCO25| SPHase| RECTangle| PGAuss| LPASs| DIRac| ENPShape| EWPShape| LPASSEVM """ response = self._core.io.query_str('SOURce<HwInstance>:BB:EVDO:FILTer:TYPE?') return Conversions.str_to_scalar_enum(response, enums.DmFilterA)
[docs] def set_type_py(self, type_py: enums.DmFilterA) -> None: """SCPI: [SOURce<HW>]:BB:EVDO:FILTer:TYPE \n Snippet: driver.source.bb.evdo.filterPy.set_type_py(type_py = enums.DmFilterA.APCO25) \n The command selects the filter type. \n :param type_py: RCOSine| COSine| GAUSs| LGAuss| CONE| COF705| COEQualizer| COFequalizer| C2K3x| APCO25| SPHase| RECTangle| PGAuss| LPASs| DIRac| ENPShape| EWPShape| LPASSEVM """ param = Conversions.enum_scalar_to_str(type_py, enums.DmFilterA) self._core.io.write(f'SOURce<HwInstance>:BB:EVDO: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