subroutine argset_init(namelist_filename)
!
!コマンドライン引数を解釈して, 引数に与えられた NAMELIST ファイル名
!を返す.
!
!暗黙の型宣言禁止
implicit none
!入力変数
character(*), intent(out) :: namelist_filename
!NAMELIST ファイルの取得
! gtool5 ライブラリの dc_args モジュールを利用.
! 指定可能なオプションは以下の通り.
!
! -N=VAL, --namelist=VAL
! specify Namelist file (default is 'arare.conf').
!
! -D=VAL, --debug=VAL
! call dc_trace#SetDebug (display a lot of messages for debug).
! VAL is unit number (default is standard output)
!
! -h=VAL, -H=VAL, --help=VAL
! display this help and exit. VAL is unit number (default is
! standard output)
!
call Open(arg)
call Option(arg, StoA('-N', '--namelist'), OPT_namelist, VAL_namelist, help="specify Namelist file (default is 'arare.conf')." )
! "-N/--namelist" オプションの設定
call Debug(arg) ! デバッグオプションの自動設定
call Help(arg) ! ヘルプオプションの自動設定
call Strict(arg) ! 無効なオプション指定時に警告を表示
!"-N/-namelist" オプションの解釈
! 与えられていない場合はデフォルト値 (arare.conf) を
! NAMLIST ファイル名とする.
!
if (OPT_namelist) then
if (myrank == 0) then
call MessageNotify( "M", "main", "Namelist file is '%c'", c1=trim(VAL_namelist) )
end if
namelist_filename=trim(VAL_namelist)
else
if (myrank == 0) then
call MessageNotify( "W", "main", "Namelist file is not specified." )
call MessageNotify( "M", "main", "Use default Namelist file (arare.conf)." )
end if
namelist_filename="arare.conf"
end if
call Close(arg)
! 確認
if (myrank == 0) then
call MessageNotify( "M", "argset_init", "NAMELIST FILE = %c", c1=namelist_filename )
end if
end subroutine argset_init