pxfintset

Date:

10-20-2011

NAME

PXFINTSET - Allows components of a structure to be set or modified

SYNOPSIS

INTEGER jhandle, value, ierror
CHARACTER*(n) compnam
CALL PXFINTSET(jhandle, compnam, value, ierror)

IMPLEMENTATION

Cray Linux Environment (CLE)

STANDARDS

IEEE Std 1003.9-1992 standard interface for FORTRAN 77

DESCRIPTION

The PXFINTSET subroutine allows components of a structure to be set or modified.

All arguments must be of default kind unless documented otherwise. Default kind is KIND=4 for integer, real, complex, and logical arguments.

The arguments for PXFINTSET are:

jhandle

An input integer variable. jhandle references a structure. jhandle should have been created by PXFSTRUCTNAME().

compnam

An input character variable. compnam is the name of a component of the structure and is case-sensitive.

value

An input integer variable. value is the value to be stored in the component of jhandle referenced by compnam. The structures and components that can be accessed through PXFINTSET() are described on the man page for the related routine.

ierror

An output integer variable.

EXIT STATUS

Upon successful completion of PXFINTSET(), the argument ierror is set to 0. If any of the following conditions occur, ierror is set to the corresponding value:

ENONAME

Component name is not defined for this structure.

EBADHANDLE

If jhandle is an invalid handle or has an incorrect handle type.

SEE ALSO

PXFSTRUCTNAME(3F)