Define SDV_PARAM_NUMBER_ENTRY#

Define Documentation#

SDV_PARAM_NUMBER_ENTRY(var, name_string, default_val, low_limit, high_limit, unit_string, description_string)#

Define a number parameter with restriction.

Parameters:
  • var – The member variable of the class containing this parameter map.

  • name_string – The name of the parameter. The name must be unique within the group.

  • default_val – The default value for the parameter.

  • low_limit – The minimal value limit. Can be ‘> val’ or ‘>= val’ or NO_LIMIT for no limitation.

  • high_limit – The maximal value limit. Can be ‘< val’ or ‘<= val’ or NO_LIMIT for no limitation.

  • unit_string – The unit of the parameter.

  • description_string – The description of the parameter.