tem_depend_type Derived Type

type, public :: tem_depend_type

Datatype containing information about dependency of geomIncrease header on other scheme(s)


Inherits

type~~tem_depend_type~~InheritsGraph type~tem_depend_type tem_depend_type type~tem_varmap_type tem_varMap_type type~tem_depend_type->type~tem_varmap_type varMap type~tem_condition_type tem_condition_type type~tem_depend_type->type~tem_condition_type cond type~grw_labelarray_type grw_labelarray_type type~tem_varmap_type->type~grw_labelarray_type varName type~grw_intarray_type grw_intarray_type type~tem_varmap_type->type~grw_intarray_type varPos

Contents

Source Code


Components

Type Visibility Attributes Name Initial
character(len=labelLen), public, allocatable :: varName(:)

array of requested variable labels

type(tem_varMap_type), public :: varMap

Contains name and position of variables to track in global varSys

type(tem_condition_type), public, allocatable :: cond(:)

An instance of the condition type


Source Code

  type tem_depend_type
    !> array of requested variable labels
    character(len=labelLen), allocatable :: varName(:)
    !> Contains name and position of variables to track in global varSys
    type(tem_varMap_type) :: varMap
    !> An instance of the condition type
    type(tem_condition_type), allocatable :: cond(:)
  end type tem_depend_type