tem_tracking_type Derived Type

type, public :: tem_tracking_type


Components

Type Visibility Attributes Name Initial
type(tem_trackingControl_type), public :: control

General information about the tracking entities

type(tem_tracking_config_type), public, allocatable :: config(:)

tracking header for collecting the properties from the lua file

type(tem_tracking_instance_type), public, allocatable :: instance(:)

Instances of tracking type active on this process


Source Code

  type tem_tracking_type
    !> General information about the tracking entities
    type(tem_trackingControl_type) :: control
    !> tracking header for collecting the properties from the lua file
    type(tem_tracking_config_type), allocatable :: config(:)
    !> Instances of tracking type active on this process
    type(tem_tracking_instance_type), allocatable :: instance(:)
  end type tem_tracking_type