slaGetParametricSets
slaGetParametricSets(t_setupName[ ?getVariablesg_getVariables]) =>l_psets/ nil
Description
Retrieves a list of parametric sets from the specified sweep setup in the setup library cellview that is opened using the slaOpenOrCreateView function.
Arguments
|
Returns a list of pairs, where each pair is the name of the parametric set and its variables. |
|
Value Returned
|
Either the specified setup does not exist or it contains no parametric sets. |
Examples
Opens a setup library view in edit mode and adds a variable to a parametric set.
slaOpenOrCreateView("test" "ProjectSetup" "setupLib")
=> t
Invalid arguments are specified while retrieving parametric sets from a sweep setup.
slaGetParametricSets("XXX")
ERROR (ADE-11414): Cannot run the function because the sweep setup 'XXX' is invalid. Specify a valid sweep setup name and rerun the function.
=> nil
Valid arguments are specified while retrieving parametric sets from a sweep setup.
slaGetParametricSets(SweepSetup1)
=> ("1" "2" "3")
slaGetParametricSets(SweepSetup1 ?getVariables t) => (("1" ("var4" "var5")) ("2" ("var7" "var1" "var3")) ("3" ("var9" "var8")))
Related Topics
Setup Library Assistant Functions
Return to top