Changeset cb47b9c for main.f


Ignore:
Timestamp:
11/19/09 11:29:16 (14 years ago)
Author:
baerbaer <baerbaer@…>
Branches:
master
Children:
2d5d396
Parents:
ffd2d46
Message:

Explicitly declare variables.

All variables should be declared so that we can remove the implicit statements
from the beginning of the INCL.H file.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/smmp/trunk@25 26dc1dd8-5c4e-0410-9ffe-d298b4865968

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main.f

    rffd2d46 rcb47b9c  
    2525      character grpn*4,grpc*4
    2626      logical lrand,bgsposs
     27      integer argc, status, argv_length
     28      character(len=255) :: argv
    2729
    2830! =================================================== Energy setup
     
    3234!     libraries of residues.
    3335      libdir='./SMMP/'
     36     
     37!     Set the maximum log level. The larger the number the more detailed
     38!     the log.
     39      MAXLOGLEVEL = 1
     40!     File unit to use for the log file.
     41      LOGFILEUNIT = 27
     42      open(LOGFILEUNIT, file="smmp.log")
    3443
    3544!      The switch in the following line is now not used.
     
    6271                 ! =1: ab Initio from sequence (& variables)
    6372      seqfile='EXAMPLES/enkefa.seq'
    64       varfile='EXAMPLES/enkefa.var'
     73      varfile='EXAMPLES/enkefa.ann'
    6574!       varfile = ' '
    6675     
     
    95104      eps = 1.0d-7 ! requested precision
    96105      call minim(imin, maxit, eps)
     106      call outvar(0, ' ')
    97107!     To do a canonical Monte Carlo simulation uncomment the lines below
    98108!       nequi = 100
Note: See TracChangeset for help on using the changeset viewer.