set_trm_file_path Subroutine

public subroutine set_trm_file_path(me, dir)

Set the trm path.

Type Bound

radbelt_type

Arguments

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

Calls

proc~~set_trm_file_path~~CallsGraph proc~set_trm_file_path radbelt_module::radbelt_type%set_trm_file_path proc~set_data_file_dir~2 trmfun_module::trm_type%set_data_file_dir proc~set_trm_file_path->proc~set_data_file_dir~2

Called by

proc~~set_trm_file_path~~CalledByGraph proc~set_trm_file_path radbelt_module::radbelt_type%set_trm_file_path proc~set_data_files_paths radbelt_module::radbelt_type%set_data_files_paths proc~set_data_files_paths->proc~set_trm_file_path proc~set_trm_file_path_c radbelt_c_module::set_trm_file_path_c proc~set_trm_file_path_c->proc~set_trm_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_trm_file_path(me, dir)

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

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

    end subroutine set_trm_file_path