Ignore:
Timestamp:
09/05/08 11:49:42 (16 years ago)
Author:
baerbaer <baerbaer@…>
Branches:
master
Children:
fafe4d6
Parents:
2ebb8b6
Message:

Reformatting comments and continuation marks.

Fortran 90 and higher use ! to mark comments no matter where they are in the
code. The only valid continuation marker is &.
I also added the SMMP.kdevelop.filelist to the repository to make it easier
to use kdevelop.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EXAMPLES/parallel_tempering_s.f

    r2ebb8b6 rbd2278d  
    2020      integer switch
    2121
    22 c =================================================== Energy setup
     22! =================================================== Energy setup
    2323
    24 c            Directory for SMMP libraries
    25 c     Change the following directory path to where you want to put SMMP
    26 c     libraries of residues.
     24!            Directory for SMMP libraries
     25!     Change the following directory path to where you want to put SMMP
     26!     libraries of residues.
    2727      libdir='../SMMP/'
    2828
    29 c      The switch in the following line is now not used.
     29!      The switch in the following line is now not used.
    3030      flex=.false.        ! .true. for Flex  / .false. for ECEPP
    3131
    32 c     Choose energy type with the following switch instead ...
     32!     Choose energy type with the following switch instead ...
    3333      ientyp = 0
    34 c        0  => ECEPP2 or ECEPP3 depending on the value of sh2
    35 c        1  => FLEX
    36 c        2  => Lund force field
    37 c        3  => ECEPP with Abagyan corrections
    38 c
     34!        0  => ECEPP2 or ECEPP3 depending on the value of sh2
     35!        1  => FLEX
     36!        2  => Lund force field
     37!        3  => ECEPP with Abagyan corrections
     38!
    3939
    4040      sh2=.false.         ! .true. for ECEPP/2; .false. for ECEPP3
     
    4848      call init_energy(libdir)
    4949
    50 c ================================================= Structure setup
     50! ================================================= Structure setup
    5151
    5252      grpn = 'nh2' ! N-terminal group
     
    5959      ntlml = 0
    6060      write (*,*) 'Solvent: ', itysol
    61 c     Initialize random number generator.
     61!     Initialize random number generator.
    6262      call sgrnd(31433)
    6363     
     
    6969
    7070      call init_molecule(iabin,grpn,grpc,seqfile,varfile)
    71 c Decide if and when to use BGS, and initialize Lund data structures
     71! Decide if and when to use BGS, and initialize Lund data structures
    7272      bgsprob=0.75   ! Prob for BGS, given that it is possible
    73 c upchswitch= 0 => No BGS 1 => BGS with probability bgsprob
    74 c 2 => temperature dependent choice
     73! upchswitch= 0 => No BGS 1 => BGS with probability bgsprob
     74! 2 => temperature dependent choice
    7575      upchswitch=1
    7676      rndord=.true.
     
    8080     
    8181
    82 c ========================================  Add your task down here
     82! ========================================  Add your task down here
    8383      num_rep = 5
    8484      nequi = 100
     
    8787      newsta = .true.
    8888      switch = 1
    89 c     parallel tempering on a single CPU
     89!     parallel tempering on a single CPU
    9090      eol = energy()
    9191      write (*,*) "Energy before randomization:", eol
     
    9494      write (*,*) "Final energy:", eol
    9595
    96 c ========================================  End of main     
     96! ========================================  End of main     
    9797       end
Note: See TracChangeset for help on using the changeset viewer.