from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ScoveredCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("scovered", core, parent)
[docs]
def get(self) -> float:
"""
``[SENSe]:CORRection:FRESponse:USER:SCOVered`` \n
Snippet: ``value: float = driver.sense.correction.fresponse.user.scovered.get()`` \n
Indicates whether the frequency correction file covers the full measurement span.
:return: covered: 0 | 1 0 Span not fully covered 1 Full measurement span is covered
"""
response = self._core.io.query_str(f'SENSe:CORRection:FRESponse:USER:SCOVered?')
return Conversions.str_to_float(response)