dist_record Derived Type

type, public :: dist_record


Inherits

type~~dist_record~~InheritsGraph type~dist_record dist_record type~dist_specification_record dist_specification_record type~dist_record->type~dist_specification_record src_dist, dst_dist

Inherited by

type~~dist_record~~InheritedByGraph type~dist_record dist_record type~problem_descriptor_strings problem_descriptor_strings type~problem_descriptor_strings->type~dist_record Dfiles type~problem_descriptor_records problem_descriptor_records type~problem_descriptor_records->type~problem_descriptor_strings str type~harness_descriptor harness_descriptor type~harness_descriptor->type~problem_descriptor_records rcrd

Components

Type Visibility Attributes Name Initial
character(len=THARN_MAXSTR), public :: filename
integer, public :: nDspecs
type(dist_specification_record), public, pointer :: dst_dist(:)
type(dist_specification_record), public, pointer :: src_dist(:)

Source Code

  type dist_record
     character(THARN_MAXSTR) :: filename   ! grid specifier filename
     integer :: nDspecs                   ! number of grid spec records
     type(dist_specification_record), pointer :: src_dist(:)
     type(dist_specification_record), pointer :: dst_dist(:)
  end type dist_record