[docs]defget(self,query_range:enums.SelectionRange)->str:"""SCPI: [SENSe]:PULSe:PHASe:RERRor \n Snippet: value: str = driver.applications.k6Pulse.sense.pulse.phase.rerror.get(query_range = enums.SelectionRange.ALL) \n Returns the phase error (RMS) 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: char_data"""param=Conversions.enum_scalar_to_str(query_range,enums.SelectionRange)response=self._core.io.query_str(f'SENSe:PULSe:PHASe:RERRor? {param}')returntrim_str_response(response)
defclone(self)->'RerrorCls':"""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=RerrorCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group