forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmulti.f
29 lines (29 loc) · 1.05 KB
/
kmulti.f
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
c
c
c ###################################################
c ## COPYRIGHT (C) 1992 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c #################################################################
c ## ##
c ## module kmulti -- atomic multipole forcefield parameters ##
c ## ##
c #################################################################
c
c
c maxnmp maximum number of atomic multipole parameter entries
c
c multip atomic monopole, dipole and quadrupole values
c mpaxis type of local axis definition for atomic multipoles
c kmp string of atom types for atomic multipoles
c
c
module kmulti
implicit none
integer maxnmp
real*8, allocatable :: multip(:,:)
character*8, allocatable :: mpaxis(:)
character*16, allocatable :: kmp(:)
save
end