Changeset 6650a56 for EXAMPLES


Ignore:
Timestamp:
11/19/09 11:29:38 (14 years ago)
Author:
baerbaer <baerbaer@…>
Branches:
master
Children:
32289cd
Parents:
30644a9
Message:

Explicitly declare variables.

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

Location:
EXAMPLES
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • EXAMPLES/Makefile

    r30644a9 r6650a56  
    1717# Linker flags
    1818# Default flags, e.g., for gfortran, g77
    19 L_FLAGS=-O2 -g
     19# L_FLAGS=-O2 -g
    2020# Flags for Intel's ifort
    21 # L_FLAGS=-O3 -axW -g
     21L_FLAGS=-O3 -axW -g
    2222# FLAGS for Cray
    2323# L_FLAGS=-fastsse -Mipa
     
    2727# Compiler flags
    2828# Default flags, e.g., for gfortran, g77
    29 F_FLAGS=-c -O2 -g
     29# F_FLAGS=-c -O2 -g
    3030# Flags for Intel's ifort
    31 # F_FLAGS=-c -O3 -axW -g
     31F_FLAGS=-c -O3 -axW -g
    3232# Flags for debugging build
    3333# F_FLAGS=-c -O0 -g
     
    3838# F_FLAGS=-c -fPIC -O3 -funroll-loops -mmmx -msse2 -msse -march=i686 -malign-double -fomit-frame-pointer
    3939# Select your compiler
    40 F90=gfortran
    41 #F90=ifort
     40# F90=gfortran
     41F90=ifort
    4242#F90=pgf90
    4343#F90=xlf
  • EXAMPLES/multicanonical.f

    r30644a9 r6650a56  
    3131!     Change the following directory path to where you want to put SMMP
    3232!     libraries of residues.
    33       libdir='../SMMP/'
     33      libdir='../../SMMP/'
    3434
    3535!!     Choose energy type with the following switch
     
    5858      iabin = 1  ! =0: read from PDB-file
    5959                 ! =1: ab Initio from sequence (& variables)
    60       seqfile='enkefa.seq'
     60      seqfile='1vp.seq'
    6161!      varfile='EXAMPLES/enkefa.var'
    6262      varfile = ' '
     
    7777      temp=1000.0
    7878
    79       call mulcan_par(nsweeps, nup, temp, kmin, kmax, binWidth, l_iter)
     79!      call mulcan_par(nsweeps, nup, temp, kmin, kmax, binWidth, l_iter)
    8080! Uncomment the following three lines to perform a multi canonical simulation with
    8181! the parameters stored in muca.d
    82 !       nmes = 1000
    83 !       call mulcan_sim(nmes, nsweeps, nmes, nup, kmin, kmax, binWidth,
    84 !      &                l_iter)
     82       nmes = 1000
     83       call mulcan_sim(nmes, nsweeps, nmes, nup, kmin, kmax, binWidth,
     84     &                l_iter)
    8585      end program multicanonical_main
    8686
Note: See TracChangeset for help on using the changeset viewer.