DRC Reference: Source ObjectThe layer object represents a collection of polygons, edges or edge pairs. A source specifies where to take layout from. That includes the actual layout, the top cell and options such as clip/query boxes, cell filters etc.
"cell" - Specifies input from a specific cellUsage:
This method will create a new source that delivers shapes from the specified cell. "cell_name" - Returns the name of the currently selected cellUsage:
"cell_obj" - Returns the Cell object of the currently selected cellUsage:
"clip" - Specifies clipped inputUsage:
Creates a source which represents a rectangular part of the original input. Three ways are provided to specify the rectangular region: a single DBox object (micron units), two DPoint objects (lower/left and upper/right coordinate in micron units) or four coordinates: left, bottom, right and top coordinate. This method will create a new source which delivers the shapes from that region clipped to the rectangle. A method doing the same but without clipping is touching or overlapping. "extent" - Returns a layer with the bounding box of the selected layoutUsage:
The extent function is useful to invert a layer: inverse_1 = extent.sized(100.0) - input(1, 0) "input" - Specifies input from a sourceUsage:
Creates a layer with the shapes from the given layer of the source. The layer can be specified by layer and optionally datatype or by a sequence of filters. Filters are expressions describing ranges of layers and/or datatype numbers or layer names. Multiple filters can be given and all layers matching at least one of these filter expressions are joined to render the input layer for the DRC engine. Some filter expressions are:
"layout" - Returns the Layout object associated with this sourceUsage:
"overlapping" - Specifies input selected from a region in overlapping modeUsage:
Like clip, this method will create a new source delivering shapes from a specified rectangular region. In contrast to clip, all shapes overlapping the region with their bounding boxes are delivered as a whole and are not clipped. Hence shapes may extent beyond the limits of the specified rectangle. touching is a similar method which delivers shapes touching the search region with their bounding box (without the requirement to overlap) "select" - Adds cell name expressions to the cell filtersUsage:
This method will construct a new source object with the given cell filters applied. Cell filters will enable or disable cells plus their subtree. Cells can be switched on and off, which makes the hierarchy traversal stop or begin delivering shapes at the given cell. The arguments of the select method form a sequence of enabling or disabling instructions using cell name pattern in the glob notation ("*" as the wildcard, like shell). Disabling instructions start with a "-", enabling instructions with a "+" or no specification. The following options are available:
To disable the TOP cell but enabled a hypothetical cell B below the top cell, use that code: layout_with_selection = layout.select("-TOP", "+B") l1 = layout_with_selection.input(1, 0) ... Please note that the sample above will deliver the children of "B" because there is nothing said about how to proceed with cells other than "TOP" or "B". The following code will just select "B" without it's children, because in the first "-*" selection, all cells including the children of "B" are disabled: layout_with_selection = layout.select("-*", "+B") l1 = layout_with_selection.input(1, 0) ... "touching" - Specifies input selected from a region in touching modeUsage:
Like clip, this method will create a new source delivering shapes from a specified rectangular region. In contrast to clip, all shapes touching the region with their bounding boxes are delivered as a whole and are not clipped. Hence shapes may extent beyond the limits of the specified rectangle. overlapping is a similar method which delivers shapes overlapping the search region with their bounding box (and not just touching) |