File: nl_int.F

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (50 lines) | stat: -rw-r--r-- 1,146 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

c This routine reads an integer value.  If it is not in the namelist,
c it defaults to the value passed in.
c
c Variables which have default values may safely be passed in both
c as the default value and as the value read in.

      subroutine nl_int(key,def,var)
      implicit none

      character*(*) key
      integer def,var

#include "namelist.com"
#include "callstack.com"

      character*(nllinelen) val
      logical nl_key,present
      integer err

      callstack_prev=callstack_curr
      callstack_curr='NL_INT'

      var=def

      val=' '
      present=nl_key(key,val)
      if (present) then
         call str2int(val,var,err)
         if (err.ne.0) then
            write(*,*) '@NL_INT: invalid integer for ',key
            call errex
         end if
      end if

      if (prt_nl) then
         if (var.eq.def) then
            write(*,900) key,'integer',var
  900       format(a20,2x,a10,2x,i20)
         else
            write(*,910) key,'integer',var,def
  910       format(a20,2x,a10,2x,i20,2x,i20)
         end if
      end if

      callstack_curr=callstack_prev
      return
c     end subroutine nl_int
      end