forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitor.f
24 lines (24 loc) · 817 Bytes
/
bitor.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
c
c
c ###################################################
c ## COPYRIGHT (C) 2003 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c #############################################################
c ## ##
c ## module bitor -- bitorsions in the current structure ##
c ## ##
c #############################################################
c
c
c nbitor total number of bitorsions in the system
c ibitor numbers of the atoms in each bitorsion
c
c
module bitor
implicit none
integer nbitor
integer, allocatable :: ibitor(:,:)
save
end