from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class SpectrumCls:
"""Spectrum commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("spectrum", core, parent)
[docs]
def get_se_mask(self) -> int:
"""SCPI: CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:SEMask \n
Snippet: value: int = driver.configure.niotMeas.multiEval.scount.spectrum.get_se_mask() \n
Specifies the statistic count of the measurement. The statistic count is equal to the number of measurement intervals per
single shot. \n
:return: statistic_count: Number of measurement intervals (slots)
"""
response = self._core.io.query_str('CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:SEMask?')
return Conversions.str_to_int(response)
[docs]
def set_se_mask(self, statistic_count: int) -> None:
"""SCPI: CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:SEMask \n
Snippet: driver.configure.niotMeas.multiEval.scount.spectrum.set_se_mask(statistic_count = 1) \n
Specifies the statistic count of the measurement. The statistic count is equal to the number of measurement intervals per
single shot. \n
:param statistic_count: Number of measurement intervals (slots)
"""
param = Conversions.decimal_value_to_str(statistic_count)
self._core.io.write(f'CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:SEMask {param}')
[docs]
def get_aclr(self) -> int:
"""SCPI: CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:ACLR \n
Snippet: value: int = driver.configure.niotMeas.multiEval.scount.spectrum.get_aclr() \n
Specifies the statistic count of the measurement. The statistic count is equal to the number of measurement intervals per
single shot. \n
:return: statistic_count: Number of measurement intervals (slots)
"""
response = self._core.io.query_str('CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:ACLR?')
return Conversions.str_to_int(response)
[docs]
def set_aclr(self, statistic_count: int) -> None:
"""SCPI: CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:ACLR \n
Snippet: driver.configure.niotMeas.multiEval.scount.spectrum.set_aclr(statistic_count = 1) \n
Specifies the statistic count of the measurement. The statistic count is equal to the number of measurement intervals per
single shot. \n
:param statistic_count: Number of measurement intervals (slots)
"""
param = Conversions.decimal_value_to_str(statistic_count)
self._core.io.write(f'CONFigure:NIOT:MEASurement<Instance>:MEValuation:SCOunt:SPECtrum:ACLR {param}')