Path

SCPI Commands :

ASSignment:DESTination:PATH:LIST
ASSignment:DESTination:PATH:SELect
class PathCls[source]

Path commands group definition. 12 total commands, 2 Subgroups, 2 group commands

get_list_py() str[source]
# SCPI: ASSignment:DESTination:PATH:LIST
value: str = driver.assignment.destination.path.get_list_py()

Queries the available paths.

return:

list_py: ‘Path#1’,’Path#2’,… List of available paths.

get_select() str[source]
# SCPI: ASSignment:DESTination:PATH:SELect
value: str = driver.assignment.destination.path.get_select()

Selects the element to which the subsequent commands apply.

return:

select: string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Destination.Path.Antenna.listPy

set_select(select: str) None[source]
# SCPI: ASSignment:DESTination:PATH:SELect
driver.assignment.destination.path.set_select(select = 'abc')

Selects the element to which the subsequent commands apply.

param select:

string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Destination.Path.Antenna.listPy

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.assignment.destination.path.clone()

Subgroups