PutReal()

Put a real parameter in the data base.

Usage

PutReal( path, par,
                   value, clobber=True,
                   **opts )

Parameters

path (string)
Data base path of the node containing the parameter.
par (string)
Parameter name.
value (real)
The parameter value.
clobber (boolean)
The parameter value will be overwritten if clobber is true.
**opts (list)
List of options.

Return Value

None

Error

The parameter must be a real.

Description

This routine saves a real parameter in the data base. The parameter address is given by its node path and the par name. The value of parameter is given by value. If the clobber is true, the parameter value will be overwritten. For example,
nodeStg = nodeStg + RS + name
PutReal( nodeStg, 'velocity_projection_tolerance',0.1,False)