1c
2c
3c     ###################################################
4c     ##  COPYRIGHT (C)  1992  by  Jay William Ponder  ##
5c     ##              All Rights Reserved              ##
6c     ###################################################
7c
8c     ##################################################################
9c     ##                                                              ##
10c     ##  module kopbnd  --  out-of-plane bend forcefield parameters  ##
11c     ##                                                              ##
12c     ##################################################################
13c
14c
15c     maxnopb   maximum number of out-of-plane bending entries
16c
17c     opbn      force constant parameters for out-of-plane bending
18c     kopb      string of atom classes for out-of-plane bending
19c
20c
21      module kopbnd
22      implicit none
23      integer maxnopb
24      parameter (maxnopb=500)
25      real*8 opbn(maxnopb)
26      character*16 kopb(maxnopb)
27      save
28      end
29