首页 / wafer / oaStepperMap

oaStepperMap

模块: oapy._oa._wafer 导入: from oapy._oa import _wafer

概览

oaStepperMapoapy 中可用,可通过 _wafer 模块访问。

本页汇总 oaStepperMap 当前在 oapy 中可用的 Python 接口。

详细说明

The oaStepperMap class implements an object that specifies where to step reticle images across a silicon wafer。 The oaStepperMap class can be observed by deriving from oaObserver

方法总览

状态 Python 调用
obj.destroy()
obj.getStepperName(stepperName)
obj.getImage()
obj.hasImage()
obj.hasPoints()
obj.setStepperName(value)
obj.setImage(image)
obj.addPoint(point)
obj.removePoint(point)
obj.hasPoint(point)
obj.getPoints(stepPoints)
_wafer.oaStepperMap.create(waferDesc, stepperName)
_wafer.oaStepperMap.find(waferDesc, name)

方法说明

obj.destroy()

绑定状态: 已绑定

Python 调用: obj.destroy()

This function destroys this stepper map, removing it from the database。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.destroy()

obj.getStepperName(stepperName)

绑定状态: 已绑定

Python 调用: obj.getStepperName(stepperName)

This function returns the stepper name associated with this stepper map in the provided string。

参数

  • stepperName: The string the stepperMap name is returned in。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.getStepperName(stepperName)

obj.getImage()

绑定状态: 已绑定

Python 调用: obj.getImage()

This function returns the image associated with this stepperMap。 NULL is returned if no image is associated with the stepperMap yet。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.getImage()

obj.hasImage()

绑定状态: 已绑定

Python 调用: obj.hasImage()

This function returns a boolean indicating whether an image has been associated with this stepperMap。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.hasImage()

obj.hasPoints()

绑定状态: 已绑定

Python 调用: obj.hasPoints()

This function returns a boolean indicating whether step points have been assigned to this stepperMap。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.hasPoints()

obj.setStepperName(value)

绑定状态: 已绑定

Python 调用: obj.setStepperName(value)

This function changes the stepper name of this stepper map。 The new name is in the provided string。

参数

  • stepperName: The new stepper name。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.setStepperName(value)

obj.setImage(image)

绑定状态: 已绑定

Python 调用: obj.setImage(image)

This function sets the image to use with this stepperMap。

参数

  • image: A pointer to an oaImage to use with this stepperMap。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.setImage(image)

obj.addPoint(point)

绑定状态: 已绑定

Python 调用: obj.addPoint(point)

This function adds a step point to this stepperMap。 A step point specifies where the associate image should be applied。

参数

  • point: Specifies a step point to associate with this stepperMap。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.addPoint(point)

obj.removePoint(point)

绑定状态: 已绑定

Python 调用: obj.removePoint(point)

This function removes the specified step point from this stepperMap。

参数

  • point: The step point to remove from this stepperMap。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.removePoint(point)

obj.hasPoint(point)

绑定状态: 已绑定

Python 调用: obj.hasPoint(point)

This function returns a boolean indicating whether the specified point is a step point associated with this stepperMap。

参数

  • point: The step point to search for。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.hasPoint(point)

obj.getPoints(stepPoints)

绑定状态: 已绑定

Python 调用: obj.getPoints(stepPoints)

This returns the collection of step points associated with this stepperMap。 The points are placed in the given point array stepPoints。

参数

  • stepPoints: The array of step points returned by this function。

Python 示例

from oapy._oa import _wafer

# assume obj is a oaStepperMap
obj.getPoints(stepPoints)

_wafer.oaStepperMap.create(waferDesc, stepperName)

绑定状态: 已绑定

Python 调用: _wafer.oaStepperMap.create(waferDesc, stepperName)

This function creates a stepper map with the specified name。

参数

  • waferDesc: The wafer description to associate the stepperMap with。
  • stepperName: The name of the wafer stepping machine。

Python 示例

from oapy._oa import _wafer

_wafer.oaStepperMap.create(waferDesc, stepperName)

_wafer.oaStepperMap.find(waferDesc, name)

绑定状态: 已绑定

Python 调用: _wafer.oaStepperMap.find(waferDesc, name)

This function searches the wafer description for a stepper map with the given name。 A pointer to the stepper map is returned if found。 Otherwise, NULL is returned。

参数

  • waferDesc: The wafer description to search。
  • name: The stepper name to locate。

Python 示例

from oapy._oa import _wafer

_wafer.oaStepperMap.find(waferDesc, name)