s_err_warn Subroutine

public subroutine s_err_warn(warning)

Prints warning message in specific format.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: warning

Called by

proc~~s_err_warn~~CalledByGraph proc~s_err_warn s_err_warn proc~f_dst_chi2_ppf f_dst_chi2_ppf proc~f_dst_chi2_ppf->proc~s_err_warn proc~f_dst_exp_ppf f_dst_exp_ppf proc~f_dst_exp_ppf->proc~s_err_warn proc~f_dst_f_ppf f_dst_f_ppf proc~f_dst_f_ppf->proc~s_err_warn proc~f_dst_gamma_ppf f_dst_gamma_ppf proc~f_dst_gamma_ppf->proc~s_err_warn proc~f_dst_norm_ppf f_dst_norm_ppf proc~f_dst_norm_ppf->proc~s_err_warn proc~f_dst_t_ppf f_dst_t_ppf proc~f_dst_t_ppf->proc~s_err_warn interface~fsml_chi2_ppf fsml_chi2_ppf interface~fsml_chi2_ppf->proc~f_dst_chi2_ppf interface~fsml_exp_ppf fsml_exp_ppf interface~fsml_exp_ppf->proc~f_dst_exp_ppf interface~fsml_f_ppf fsml_f_ppf interface~fsml_f_ppf->proc~f_dst_f_ppf interface~fsml_gamma_ppf fsml_gamma_ppf interface~fsml_gamma_ppf->proc~f_dst_gamma_ppf interface~fsml_norm_ppf fsml_norm_ppf interface~fsml_norm_ppf->proc~f_dst_norm_ppf interface~fsml_t_ppf fsml_t_ppf interface~fsml_t_ppf->proc~f_dst_t_ppf

Source Code

subroutine s_err_warn(warning)

! ==== Description
!! Prints warning message in specific format.

! ==== Declarations
  character(len=*), intent(in) :: warning
  character(len=128)           :: fstring

! ==== Instructions
  fstring = warning
!  fstring = txt_warn // trim(warning) // txt_reset
  write(std_e, '(A)') fstring

end subroutine s_err_warn