Region

SCPI Command :

MTESt:SEGMent:REGion
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(mask_test: str, mask_segment: int) MtestRegion[source]
# MTESt:SEGMent:REGion
value: enums.MtestRegion = driver.mtest.segment.region.get(mask_test = 'abc', mask_segment = 1)

Defines the region of the segment that builds the mask.

Parameters:
  • mask_test – String with the name of the mask test

  • mask_segment – Number of the segment. Counting starts from 0.

Returns:

region: UPPer | LOWer | INNer

  • UPPer: the segment points are connected to a line, the display area above this line is the mask segment

  • LOWer: the segment points are connected to a line, the display area below this line is the mask segment

  • INNer: the segment points form a closed geometrical shape, which is the mask segment

set(mask_test: str, mask_segment: int, region: MtestRegion) None[source]
# MTESt:SEGMent:REGion
driver.mtest.segment.region.set(mask_test = 'abc', mask_segment = 1, region = enums.MtestRegion.INNer)

Defines the region of the segment that builds the mask.

Parameters:
  • mask_test – String with the name of the mask test

  • mask_segment – Number of the segment. Counting starts from 0.

  • region

    UPPer | LOWer | INNer

    • UPPer: the segment points are connected to a line, the display area above this line is the mask segment

    • LOWer: the segment points are connected to a line, the display area below this line is the mask segment

    • INNer: the segment points form a closed geometrical shape, which is the mask segment