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

Contains information on the data points defined on a region. More...

Collaboration diagram for types::data_points_type:

Public Attributes

type(region_type), pointer region
 A pointer to the region containing the data points. If the data points 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 data points. If the data points are in a region rather than an interface then this pointer will be NULL and the interface pointer should be used. More...
 
logical data_points_finished
 Is .TRUE. if the data points have finished being created, .FALSE. if not. More...
 
integer(intg) number_of_data_points
 The number of data points defined on the region/interface. More...
 
type(data_point_type), dimension(:), allocatable data_points
 DATA_POINTS(data_points_idx). The data point information for the data_points_idx'th global data point. More...
 
type(tree_type), pointer data_points_tree
 The tree for user to global data point mapping. More...
 
integer(intg) number_of_data_projections
 The number of data projections defined on the data points. More...
 
type(data_projection_ptr_type), dimension(:), allocatable data_projections
 DATA_PROJECTIONS(projection_idx). A pointer to the projection_idx'th data projection for the data points. More...
 
type(tree_type), pointer data_projections_tree
 The tree for user to global data projections mapping. More...
 

Detailed Description

Contains information on the data points defined on a region.

See also
OPENCMISS::CMISSDataPointsType

Definition at line 333 of file types.f90.

Member Data Documentation

type(data_point_type), dimension(:), allocatable types::data_points_type::data_points

DATA_POINTS(data_points_idx). The data point information for the data_points_idx'th global data point.

Definition at line 338 of file types.f90.

logical types::data_points_type::data_points_finished

Is .TRUE. if the data points have finished being created, .FALSE. if not.

Definition at line 336 of file types.f90.

type(tree_type), pointer types::data_points_type::data_points_tree

The tree for user to global data point mapping.

Definition at line 339 of file types.f90.

type(data_projection_ptr_type), dimension(:), allocatable types::data_points_type::data_projections

DATA_PROJECTIONS(projection_idx). A pointer to the projection_idx'th data projection for the data points.

Definition at line 341 of file types.f90.

type(tree_type), pointer types::data_points_type::data_projections_tree

The tree for user to global data projections mapping.

Definition at line 342 of file types.f90.

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

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

Definition at line 335 of file types.f90.

integer(intg) types::data_points_type::number_of_data_points

The number of data points defined on the region/interface.

Definition at line 337 of file types.f90.

integer(intg) types::data_points_type::number_of_data_projections

The number of data projections defined on the data points.

Definition at line 340 of file types.f90.

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

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

Definition at line 334 of file types.f90.