set_data_file_dir Subroutine

private subroutine set_data_file_dir(me, dir)

Set the directory containing the data files.

Type Bound

shellig_type

Arguments

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

Called by

proc~~set_data_file_dir~~CalledByGraph proc~set_data_file_dir shellig_module::shellig_type%set_data_file_dir proc~set_igrf_file_path radbelt_module::radbelt_type%set_igrf_file_path proc~set_igrf_file_path->proc~set_data_file_dir 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_data_file_dir(me, dir)
        class(shellig_type), intent(inout) :: me
        character(len=*), intent(in) :: dir
        me%igrf_dir = trim(dir)
    end subroutine set_data_file_dir