GetFieldUnitsConverter Subroutine

public subroutine GetFieldUnitsConverter(from_identifier, to_identifier, conv, unusable, rc)

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: from_identifier
character(len=*), intent(in) :: to_identifier
type(FieldUnitsConverter), intent(out) :: conv
class(KeywordEnforcer), intent(in), optional :: unusable
integer, intent(out), optional :: rc

Calls

proc~~getfieldunitsconverter~~CallsGraph proc~getfieldunitsconverter GetFieldUnitsConverter proc~get_converter get_converter proc~getfieldunitsconverter->proc~get_converter proc~mapl_return MAPL_Return proc~getfieldunitsconverter->proc~mapl_return proc~mapl_verify MAPL_Verify proc~getfieldunitsconverter->proc~mapl_verify none~is_free CptrWrapper%is_free proc~get_converter->none~is_free at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception proc~mapl_verify->proc~mapl_throw_exception

Source Code

   subroutine GetFieldUnitsConverter(from_identifier, to_identifier, conv, unusable, rc)
      character(len=*), intent(in) :: from_identifier, to_identifier
      type(FieldUnitsConverter), intent(out) :: conv
      class(KeywordEnforcer), optional, intent(in) :: unusable
      integer, optional, intent(out) :: rc
      integer :: status

      _UNUSED_DUMMY(unusable)
      call get_converter(conv, from_identifier, to_identifier, _RC)
      _RETURN(_SUCCESS)

   end subroutine GetFieldUnitsConverter