Intersect
SCPI Command :
ZONE<*>:AREA<*>:INTersect
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(zone=Zone.Default, area=Area.Default) Intersection[source]
# ZONE<*>:AREA<*>:INTersect value: enums.Intersection = driver.zone.area.intersect.get(zone = repcap.Zone.Default, area = repcap.Area.Default)
Defines if the signal must intersect the zone to allow the instrument to trigger, or if it must not intersect the zone.
- Parameters:
zone – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Zone’)
area – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Area’)
- Returns:
intersection: MUST | NOT
- set(intersection: Intersection, zone=Zone.Default, area=Area.Default) None[source]
# ZONE<*>:AREA<*>:INTersect driver.zone.area.intersect.set(intersection = enums.Intersection.MUST, zone = repcap.Zone.Default, area = repcap.Area.Default)
Defines if the signal must intersect the zone to allow the instrument to trigger, or if it must not intersect the zone.
- Parameters:
intersection – MUST | NOT
zone – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Zone’)
area – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Area’)