Carrier

SCPI Commands :

[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt
[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe
[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP
Commands in total: 8
Subgroups: 3
Direct child commands: 3
get_start() int[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt
value: int = driver.source.bb.mccw.edit.carrier.get_start()

Defines the first/last carrier in the carrier range to which joint configuration applies.

get_state() bool[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe
value: bool = driver.source.bb.mccw.edit.carrier.get_state()

Switches all the carriers in the selected carrier range on or off.

Returns:

state: 1 | ON | 0| OFF

get_stop() int[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP
value: int = driver.source.bb.mccw.edit.carrier.get_stop()

Defines the first/last carrier in the carrier range to which joint configuration applies.

Returns:

stop: integer Range: 0 to 8191

set_start(start: int) None[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt
driver.source.bb.mccw.edit.carrier.set_start(start = 1)

Defines the first/last carrier in the carrier range to which joint configuration applies.

Parameters:

start – integer Range: 0 to 8191

set_state(state: bool) None[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe
driver.source.bb.mccw.edit.carrier.set_state(state = False)

Switches all the carriers in the selected carrier range on or off.

Parameters:

state – 1 | ON | 0| OFF

set_stop(stop: int) None[source]
# [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP
driver.source.bb.mccw.edit.carrier.set_stop(stop = 1)

Defines the first/last carrier in the carrier range to which joint configuration applies.

Parameters:

stop – integer Range: 0 to 8191

Cloning the Group

# Create a copy of the original group, that exists independently
carrier_copy = driver.source.bb.mccw.edit.carrier.clone()

Subgroups