Marker

SCPI Commands :

SCENario:CEMit:MARKer:AUTO
SCENario:CEMit:MARKer:FALL
SCENario:CEMit:MARKer:FORCe
SCENario:CEMit:MARKer:GATE
SCENario:CEMit:MARKer:POST
SCENario:CEMit:MARKer:PRE
SCENario:CEMit:MARKer:RISE
SCENario:CEMit:MARKer:WIDTh
class MarkerCls[source]

Marker commands group definition. 10 total commands, 1 Subgroups, 8 group commands

get_auto() float[source]
# SCPI: SCENario:CEMit:MARKer:AUTO
value: float = driver.scenario.cemit.marker.get_auto()

Enables the marker for restart.

return:

auto: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_fall() float[source]
# SCPI: SCENario:CEMit:MARKer:FALL
value: float = driver.scenario.cemit.marker.get_fall()

Enables the marker for fall time.

return:

fall: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_force() bool[source]
# SCPI: SCENario:CEMit:MARKer:FORCe
value: bool = driver.scenario.cemit.marker.get_force()

Determines how the marker is handled.

return:

force: ON| OFF| 1| 0 ON | 1 Forces the selected marker type for every pulse of the selected emitter OFF | 0 Leaves the marker unchanged, as defined in the pulses and sequences of this emitter.

get_gate() float[source]
# SCPI: SCENario:CEMit:MARKer:GATE
value: float = driver.scenario.cemit.marker.get_gate()

Enables marker for gate.

return:

gate: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_post() float[source]
# SCPI: SCENario:CEMit:MARKer:POST
value: float = driver.scenario.cemit.marker.get_post()

Enables marker for post time.

return:

post: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_pre() float[source]
# SCPI: SCENario:CEMit:MARKer:PRE
value: float = driver.scenario.cemit.marker.get_pre()

Enables marker for pre time.

return:

pre: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_rise() float[source]
# SCPI: SCENario:CEMit:MARKer:RISE
value: float = driver.scenario.cemit.marker.get_rise()

Enables marker for rise time.

return:

rise: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

get_width() float[source]
# SCPI: SCENario:CEMit:MARKer:WIDTh
value: float = driver.scenario.cemit.marker.get_width()

Sets marker for the pulse width.

return:

width: float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_auto(auto: float) None[source]
# SCPI: SCENario:CEMit:MARKer:AUTO
driver.scenario.cemit.marker.set_auto(auto = 1.0)

Enables the marker for restart.

param auto:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_fall(fall: float) None[source]
# SCPI: SCENario:CEMit:MARKer:FALL
driver.scenario.cemit.marker.set_fall(fall = 1.0)

Enables the marker for fall time.

param fall:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_force(force: bool) None[source]
# SCPI: SCENario:CEMit:MARKer:FORCe
driver.scenario.cemit.marker.set_force(force = False)

Determines how the marker is handled.

param force:

ON| OFF| 1| 0 ON | 1 Forces the selected marker type for every pulse of the selected emitter OFF | 0 Leaves the marker unchanged, as defined in the pulses and sequences of this emitter.

set_gate(gate: float) None[source]
# SCPI: SCENario:CEMit:MARKer:GATE
driver.scenario.cemit.marker.set_gate(gate = 1.0)

Enables marker for gate.

param gate:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_post(post: float) None[source]
# SCPI: SCENario:CEMit:MARKer:POST
driver.scenario.cemit.marker.set_post(post = 1.0)

Enables marker for post time.

param post:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_pre(pre: float) None[source]
# SCPI: SCENario:CEMit:MARKer:PRE
driver.scenario.cemit.marker.set_pre(pre = 1.0)

Enables marker for pre time.

param pre:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_rise(rise: float) None[source]
# SCPI: SCENario:CEMit:MARKer:RISE
driver.scenario.cemit.marker.set_rise(rise = 1.0)

Enables marker for rise time.

param rise:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_width(width: float) None[source]
# SCPI: SCENario:CEMit:MARKer:WIDTh
driver.scenario.cemit.marker.set_width(width = 1.0)

Sets marker for the pulse width.

param width:

float Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.scenario.cemit.marker.clone()

Subgroups