[docs]defget(self,query_range:enums.SelectionRange)->float:"""SCPI: [SENSe]:CHIRp:PHASe:OVERshoot \n Snippet: value: float = driver.applications.k60Transient.sense.chirp.phase.overshoot.get(query_range = enums.SelectionRange.ALL) \n Queries chirp phase overshoot from the result table. \n :param query_range: SELected | CURRent | ALL :return: result: numeric value"""param=Conversions.enum_scalar_to_str(query_range,enums.SelectionRange)response=self._core.io.query_str(f'SENSe:CHIRp:PHASe:OVERshoot? {param}')returnConversions.str_to_float(response)
defclone(self)->'OvershootCls':"""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=OvershootCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group