[docs]defget(self,query_range:enums.SelectionRange)->List[float]:"""SCPI: [SENSe]:PULSe:EMODel:FLPLevel \n Snippet: value: List[float] = driver.applications.k6Pulse.sense.pulse.emodel.fallLowPoint.level.get(query_range = enums.SelectionRange.ALL) \n Returns the Fall Low Point Level for the specified pulse(s) . \n :param query_range: SELected | CURRent | ALL SELected Currently selected pulse CURRent Detected pulses in the current capture buffer ALL All detected pulses in the entire measurement. :return: result: No help available"""param=Conversions.enum_scalar_to_str(query_range,enums.SelectionRange)response=self._core.io.query_bin_or_ascii_float_list(f'SENSe:PULSe:EMODel:FLPLevel? {param}')returnresponse
defclone(self)->'LevelCls':"""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=LevelCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group