forked from jautschbach/mcd-molcas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared-variables.f90
47 lines (26 loc) · 1.07 KB
/
shared-variables.f90
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
module shared_variables
! this module is part of J. Autschbach's set of programs to process
! Molcas data for the generation of various types of spectral
! intensities
! (c) 2019-2022 Jochen Autschbach, SUNY Buffalo
use definitions
implicit none
! allocatable arrays:
real(KREAL), dimension(:), allocatable :: energy, elevel
integer(KINT), dimension(:), allocatable :: deglist, levels, accl
complex(KREAL), dimension(:,:,:), allocatable :: magdip, eldip, &
elquad, angmom, velocity, veloquad
! other variables:
integer(KINT) :: ios, dbg
character(len=LCHARS) :: cs, cstemp, outfile(0:3)
real(KREAL) :: deltae, rtemp, ctemp(2), kT
integer(KINT) :: ntemp, skip1
logical havespin, haveang, havedip, havevel, havequad, do_group
data havespin, haveang, havedip, havequad, do_group / &
.false., .false., .false., .false., .false. /
save havespin, haveang, havedip, havequad, do_group
save energy, elevel
save deglist, levels, accl
save magdip, eldip, elquad, velocity, veloquad
save dbg
end module shared_variables