ExtDataMask Derived Type

type, public :: ExtDataMask


Inherited by

type~~extdatamask~~InheritedByGraph type~extdatamask ExtDataMask type~derivedexport DerivedExport type~derivedexport->type~extdatamask mask_definition type~vector_wrapper~27 vector_wrapper type~vector_wrapper~27->type~derivedexport item type~derivedexportvector DerivedExportVector type~derivedexportvector->type~vector_wrapper~27 elements type~derivedexportvectoriterator DerivedExportVectorIterator type~derivedexportvectoriterator->type~vector_wrapper~27 elements type~vectorriterator~22 VectorRIterator type~vectorriterator~22->type~derivedexportvectoriterator iterator

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: mask_arguments
character(len=:), public, allocatable :: mask_type

Constructor

public interface ExtDataMask

  • private function new_ExtDataMask(mask_expression, rc) result(new_mask)

    Arguments

    Type IntentOptional Attributes Name
    character(len=*), intent(in) :: mask_expression
    integer, intent(out), optional :: rc

    Return Value type(ExtDataMask)


Type-Bound Procedures

procedure, public :: evaluate_box_mask

  • private subroutine evaluate_box_mask(this, state, var_name, rc)

    Arguments

    Type IntentOptional Attributes Name
    class(ExtDataMask), intent(inout) :: this
    type(ESMF_State), intent(inout) :: state
    character(len=*), intent(in) :: var_name
    integer, intent(out), optional :: rc

procedure, public :: evaluate_mask

  • private subroutine evaluate_mask(this, state, var_name, rc)

    Arguments

    Type IntentOptional Attributes Name
    class(ExtDataMask), intent(inout) :: this
    type(ESMF_State), intent(inout) :: state
    character(len=*), intent(in) :: var_name
    integer, intent(out), optional :: rc

procedure, public :: evaluate_region_mask

  • private subroutine evaluate_region_mask(this, state, var_name, rc)

    Arguments

    Type IntentOptional Attributes Name
    class(ExtDataMask), intent(inout) :: this
    type(ESMF_State), intent(inout) :: state
    character(len=*), intent(in) :: var_name
    integer, intent(out), optional :: rc

procedure, public :: evaluate_zone_mask

  • private subroutine evaluate_zone_mask(this, state, var_name, rc)

    Arguments

    Type IntentOptional Attributes Name
    class(ExtDataMask), intent(inout) :: this
    type(ESMF_State), intent(inout) :: state
    character(len=*), intent(in) :: var_name
    integer, intent(out), optional :: rc

procedure, public :: get_mask_variables

  • private function get_mask_variables(this, rc) result(variables_in_mask)

    Arguments

    Type IntentOptional Attributes Name
    class(ExtDataMask), intent(inout) :: this
    integer, intent(out), optional :: rc

    Return Value type(StringVector)

Source Code

   type, public :: ExtDataMask
      character(len=:), allocatable :: mask_type
      character(len=:), allocatable :: mask_arguments
      contains
         procedure :: get_mask_variables
         procedure :: evaluate_mask
         procedure :: evaluate_region_mask
         procedure :: evaluate_zone_mask
         procedure :: evaluate_box_mask
   end type ExtDataMask