tem_tracking_config_type Derived Type

type, public :: tem_tracking_config_type

Contains all config information about tracking Content in tracking config must NOT change!


Components

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

log object labels

character(len=pathLen), public :: prefix

folder to store files to

character(len=labelLen), public, allocatable :: varName(:)

array of requested variable labels

type(tem_timeControl_type), public :: timeControl

stores time control parameters

type(tem_shape_type), public, allocatable :: geometry(:)

tracking shapes

logical, public :: track_complete_element

originally set to true. But if false the exact polynomial is evaluated at

type(hvs_output_config_type), public :: output_config

Data loaded from output table

type(tem_reduction_spatial_config_type), public :: redSpatial_config

Spatial reduction config which is loaded from disk


Source Code

  type tem_tracking_config_type

    !> log object labels
    character(len=labelLen) :: label

    !> folder to store files to
    character(len=pathLen) :: prefix

    !> array of requested variable labels
    character(len=labelLen), allocatable :: varName(:)

    !> stores time control parameters
    type(tem_timeControl_type) :: timeControl

    !> tracking shapes
    type(tem_shape_type), allocatable  :: geometry(:)

    !> originally set to true. But if false the exact polynomial is evaluated at
    ! the point tracked
    logical :: track_complete_element

    !> Data loaded from output table
    type(hvs_output_config_type) :: output_config

    !> Spatial reduction config which is loaded from disk
    type( tem_reduction_spatial_config_type ) :: redSpatial_config

  end type tem_tracking_config_type