[docs]classShowCls:"""Show commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("show",core,parent)
[docs]defset(self,result:enums.SummaryMode)->None:"""SCPI: [SENSe]:NR5G:RSUMmary:SHOW \n Snippet: driver.applications.k14Xnr5G.sense.nr5G.rsummary.show.set(result = enums.SummaryMode.AVERage) \n Selects the way the contents of the result summary are calculated. \n :param result: AVERage Shows the average over all analyzed frames. SINGle Shows the result for the frame selected with [SENSe:]NR5G[:CCcc]:FRAMe:SELect. If only one frame has been captured, the results are the same in both cases. """param=Conversions.enum_scalar_to_str(result,enums.SummaryMode)self._core.io.write(f'SENSe:NR5G:RSUMmary:SHOW {param}')
# noinspection PyTypeChecker
[docs]defget(self)->enums.SummaryMode:"""SCPI: [SENSe]:NR5G:RSUMmary:SHOW \n Snippet: value: enums.SummaryMode = driver.applications.k14Xnr5G.sense.nr5G.rsummary.show.get() \n Selects the way the contents of the result summary are calculated. \n :return: result: AVERage Shows the average over all analyzed frames. SINGle Shows the result for the frame selected with [SENSe:]NR5G[:CCcc]:FRAMe:SELect. If only one frame has been captured, the results are the same in both cases."""response=self._core.io.query_str(f'SENSe:NR5G:RSUMmary:SHOW?')returnConversions.str_to_scalar_enum(response,enums.SummaryMode)