forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusage.f
26 lines (26 loc) · 940 Bytes
/
usage.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
c
c
c ###################################################
c ## COPYRIGHT (C) 1992 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c ################################################################
c ## ##
c ## module usage -- atoms active during energy computation ##
c ## ##
c ################################################################
c
c
c nuse total number of active atoms in energy calculation
c iuse numbers of the atoms active in energy calculation
c use true if an atom is active, false if inactive
c
c
module usage
implicit none
integer nuse
integer, allocatable :: iuse(:)
logical, allocatable :: use(:)
save
end