OpenCMISS-Iron Internal API Documentation
types::fields_type Type Reference

Contains information on the fields defined on a region. More...

Collaboration diagram for types::fields_type:

Public Attributes

type(region_type), pointer region
 A pointer to the region containing the fields. If the fields are in an interface rather than a region then this pointer will be NULL and the interface pointer should be used. More...
 
type(interface_type), pointer interface
 A pointer to the interface containing the fields. If the fields are in a region rather than an interface then this pointer will be NULL and the interface pointer should be used. More...
 
integer(intg) number_of_fields
 The number of fields defined on the region. More...
 
type(field_ptr_type), dimension(:), pointer fields
 FIELDS(fields_idx). The array of pointers to the fields. More...
 

Detailed Description

Contains information on the fields defined on a region.

Definition at line 1373 of file types.f90.

Member Data Documentation

type(field_ptr_type), dimension(:), pointer types::fields_type::fields

FIELDS(fields_idx). The array of pointers to the fields.

Definition at line 1377 of file types.f90.

type(interface_type), pointer types::fields_type::interface

A pointer to the interface containing the fields. If the fields are in a region rather than an interface then this pointer will be NULL and the interface pointer should be used.

Definition at line 1375 of file types.f90.

integer(intg) types::fields_type::number_of_fields

The number of fields defined on the region.

Definition at line 1376 of file types.f90.

type(region_type), pointer types::fields_type::region

A pointer to the region containing the fields. If the fields are in an interface rather than a region then this pointer will be NULL and the interface pointer should be used.

Definition at line 1374 of file types.f90.