File: globals.f90

package info (click to toggle)
neat 2.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 4,108 kB
  • sloc: f90: 7,385; python: 211; makefile: 78; sh: 64
file content (21 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
!globals.f90, a few things to be available everywhere
!(C) Roger Wesson
module mod_globals

  implicit none

! precision

  integer,parameter :: sp = kind(1.0)
  integer,parameter :: dp = kind(1.d0)

  integer,parameter :: spc = kind( (1.0_sp,1.0_sp) )
  integer,parameter :: dpc = kind( (1.0_dp,1.0_dp) )

! command line and file names

  character(len=2048) :: commandline
  character(len=512) :: filename,configfile,defaultconfigfile,outputdirectory,outputfilename
  character(len=4) :: outputformat

end module mod_globals