set_igrf_file_path Subroutine

public subroutine set_igrf_file_path(me, dir)

Set the igrf path.

Type Bound

radbelt_type

Arguments

Type IntentOptional Attributes Name
class(radbelt_type), intent(inout) :: me
character(len=*), intent(in) :: dir

Calls

proc~~set_igrf_file_path~~CallsGraph proc~set_igrf_file_path radbelt_module::radbelt_type%set_igrf_file_path proc~set_data_file_dir shellig_module::shellig_type%set_data_file_dir proc~set_igrf_file_path->proc~set_data_file_dir

Called by

proc~~set_igrf_file_path~~CalledByGraph proc~set_igrf_file_path radbelt_module::radbelt_type%set_igrf_file_path proc~set_data_files_paths radbelt_module::radbelt_type%set_data_files_paths proc~set_data_files_paths->proc~set_igrf_file_path proc~set_igrf_file_path_c radbelt_c_module::set_igrf_file_path_c proc~set_igrf_file_path_c->proc~set_igrf_file_path proc~set_data_files_paths_c radbelt_c_module::set_data_files_paths_c proc~set_data_files_paths_c->proc~set_data_files_paths

Source Code

    subroutine set_igrf_file_path(me, dir)

        class(radbelt_type), intent(inout) :: me
        character(len=*), intent(in) :: dir

        call me%igrf%set_data_file_dir(trim(dir))

    end subroutine set_igrf_file_path