TOC PREV NEXT INDEX

OMFget_name_real8_val

Synopsis


INTEGER FUNCTION OMFget_name_real_val(object_id,
. name,
. dval)
#include <avs/omf.inc>
INTEGER object_id(OIDSIZ)
INTEGER name
DOUBLE PRECISION dval

Description

For a complete description of this function, see OMget_real_val.

Arguments

object_idx object_id
The id of an object, expressed as an integer.
name
The name of one of object_id's immediate subobjects, expressed as an integer.
dval
The object's value, expressed in double precision.

Returned value

The status code (see OMget_real_val ).

Examples


#include <avs/omf.inc>
     INTEGER parent_object(OIDSIZ)
     DOUBLE PRECISION value
     ...
     IF (OMFget_name_real8_val(parent_object,
     .
     OMFstr_to_name('fval'),
.      value) .NE. 1)
.       PRINT*,'Error getting value of object fval'

See Also

OMFset_name_real8_val

TOC PREV NEXT INDEX