maeGetTags
maeGetTags( [?sessiont_sessionName] [ ?elementTypel_elementType] ) =>l_tagsList/ nil
Description
Returns a list of tags assigned to the specified corners or variables in the given session.
Arguments
|
The name of the session in which the tags are to be queried. If not specified, the current session is used. |
||
Value Returned
|
The specified variables do not have any tags assigned to them. |
||
Examples
Returns a list of tags assigned to the global variables.
maeGetTags(?elementType '(GlobalVars))
=> (nil GlobalVars (nil supply ("vdd") calcVal ("cct_freq") load ("cload" "rload" "res1")
)
)
Returns the list of tags assigned to the design variables.
-
The tag
supplyis assigned to the design variablevdd. -
The tag
loadis assigned to the design variablescload,rload, andvdd.
maeGetTags(?elementType '(TestVars))
=> (nil TestVars (nil supply ("vdd") load ("cload" "rload" "vdd")))
Returns the list of tags assigned to corners.
maeGetTags(?elementType '(Corners))
=> (nil Corners (nil projectA ("C0_0" "C0_1"))
The tag projectA is assigned to the corners C0_0 and C0_1.
Returns the list of tags assigned to global variables, design variables, and, corners.
-
The tag
supplyis assigned to the global and design variablevdd. -
The tag
loadis assigned to the design variablescload,rload, andvdd. -
The tag
calcValis assigned to the global variablecct_freq.
maeGetTags(?elementType '(All))
=> (nil Corners (nil) TestVars (nil supply ("vdd") load ("cload" "rload" "vdd"))
GlobalVars (nil supply ("vdd") calcVal ("cct_freq")
load ("cload" "rload" "res1")
)
)
Related Topics
Return to top