forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkatoms.f
32 lines (32 loc) · 1.24 KB
/
katoms.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
30
31
32
c
c
c ###################################################
c ## COPYRIGHT (C) 1992 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c ################################################################
c ## ##
c ## module katoms -- atom definition forcefield parameters ##
c ## ##
c ################################################################
c
c
c atmcls atom class number for each of the atom types
c atmnum atomic number for each of the atom types
c ligand number of atoms to be attached to each atom type
c weight average atomic mass of each atom type
c symbol modified atomic symbol for each atom type
c describe string identifying each of the atom types
c
c
module katoms
implicit none
integer, allocatable :: atmcls(:)
integer, allocatable :: atmnum(:)
integer, allocatable :: ligand(:)
real*8, allocatable :: weight(:)
character*3, allocatable :: symbol(:)
character*24, allocatable :: describe(:)
save
end