Enter a user (python) script to generate a parameter range. The script has to return a (comma-separated) list of elements. The function header is automatically included, but a return statement is needed. Example: return [1,2,3]
def userScript():
Enter a user (python) script to generate a decorator using an existing parameter range. The script has to return a (comma-separated) list of elements.
A (python) dictionary called valueDict provides access to all available parameter ranges. Keys: Name of the parameter range. Members: All values of available parameter ranges are stored as members.
The function header is automatically included, but a return statement is needed. Example: return valueDict['New Parameter Range 0']