UDSProbeParams Class
This class defines which data quantity that a UDO will be pulled from the Design to compute the UDO output (results). The objects of this class must be created in a Python script with the GetInputUDSParams function. They are supplied to the Validate function if implemented.
Attributes:
- ProbeName (read-only string)
- ProbeDescription (read-only string)
- ParamType (read-only string)
- ReportTypeName (read-only string)
- ComponentExpression (read-only string)
Constructor: UDSProbeParams(string probeName, string probeDescription, string paramType, string reportTypeName, string componentExpression);
- probeName - required.
- probeDescription - optional (can be empty string).
- paramType - required; can be one of the Constants:
- kDoubleParamStr
- kComplexParamStr
- reportTypeName - optional (can be empty string)
- ComponentExpression - optional (can be empty string)
Example:
udsProbParam = UDSProbeParams("probe1","", Constants.kDoubleParamStr, "", "",)