dbGetPinGroups
dbGetPinGroups(d_cellView) =>d_dpg d_dpg .../ nil
Description
(Virtuoso MultiTech Framework Only) Returns the pin groups defined in the specified cellview.
Arguments
Value Returned
Example
A die footprint cell is modified by creating placeBounds and die pin groups. Subsequently, dbGetPinGroups is used to list the newly created pin groups.
dieFootprint = (dbOpenCellViewByType "testLib" "footprint" "base" "maskLayout" "w")
placeBound1 = (dbCreatePlaceBound dieFootprint "left" list(0:0 100:100) 0 100)
placeBound2 = (dbCreatePlaceBound dieFootprint "right" list(100:0 200:100) 50 100)
pinGroupLeftTop = (dbCreatePinGroup dieFootprint "left" "top")
pinGroupLeftBottom = (dbCreatePinGroup dieFootprint "left" "bottom")
pinGroupRightTop = (dbCreatePinGroup dieFootprint "right" "top")
pinGroupRightBottom = (dbCreatePinGroup dieFootprint "right" "bottom")
\i (sort (dbGetPinGroups dieFootprint)~>name nil)
\t ("left_PLACEBOUND_FACE_BOTTOM" "left_PLACEBOUND_FACE_TOP" "right_PLACEBOUND_FACE_BOTTOM" "right_PLACEBOUND_FACE_TOP")
\p >
Related Topics
dbGetPinGroupPlaceBoundNameAndFace
Return to top