Grid_ Derived Type

type, public :: Grid_


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: refCount = 0
character(len=36), public :: id = "null_id"
character(len=256), public :: name = "null Grid"
integer, public :: npts = 0
real(kind=dp), public, pointer :: grid_data(:) => null()
type(assoc_list_t), public :: annotation

Source Code

  type Grid_
    integer :: refCount = 0
    character(len=36)   :: id = "null_id"
    !----------------------
    character(len=256)   :: name = "null Grid"
    integer                        :: npts = 0
    real(dp), pointer              :: grid_data(:) => null()
    type(ps_annotation_t)          :: annotation 
  end type Grid_