tem_prophead_type Derived Type

type, public :: tem_prophead_type


Components

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

A label to describe this property

integer, public :: bitpos

The position of the bit, which flags the presence of this property for an element.

integer(kind=long_k), public :: nElems

Total number of elements with this property


Source Code

  type tem_prophead_type
    !> A label to describe this property
    character(len=64) :: label

    !> The position of the bit, which flags the presence
    !! of this property for an element.
    integer :: bitpos

    !> Total number of elements with this property
    integer(kind=long_k) :: nElems
  end type tem_prophead_type