maeGetSetup
maeGetSetup( [?typeNamet_typeName] [?enabledg_enabled] [?runt_runName] [?sessiont_sessionName] ) =>l_setupDetails/ nil
Description
Returns the required setup details of variables, parameters, corners, and tests from the given session.
Arguments
|
Name of a run in the run plan for which you want to get the setup details. |
||
Value Returned
|
List containing the names of variables, parameters, corners, and tests. |
||
Examples
Returns the names of all the tests in the current session:
maeGetSetup()
Returns the names of all the enabled tests in the current session.
maeGetSetup(?enabled t)
=> ("AC" "TRAN")
Returns the names of all the enabled corners in the current session.
maeGetSetup(?typeName "corners" ?enabled t)
=> ("Nominal" "c2")
Returns the names of all the enabled variables.
maeGetSetup(?typeName "variables" ?enabled t)
=> ("gain" "vcm" "vdd")
Returns the list of variables from the given run in the run plan.
maeGetSetup(?typeName "variables" ?run "Run.0")
=> ("AVDD")
Return to top