Changeset bd2278d for zimmer.f


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
  • zimmer.f

    r2ebb8b6 rbd2278d  
    1 c**************************************************************
    2 c
    3 c This file contains the subroutines: zimmer
    4 c
    5 c Copyright 2003-2005  Frank Eisenmenger, U.H.E. Hansmann,
    6 c                      Shura Hayryan, Chin-Ku
    7 c Copyright 2007       Frank Eisenmenger, U.H.E. Hansmann,
    8 c                      Jan H. Meinke, Sandipan Mohanty
    9 c
    10 c CALLS: none
    11 c
    12 c **************************************************************
     1!**************************************************************
     2!
     3! This file contains the subroutines: zimmer
     4!
     5! Copyright 2003-2005  Frank Eisenmenger, U.H.E. Hansmann,
     6!                      Shura Hayryan, Chin-Ku
     7! Copyright 2007       Frank Eisenmenger, U.H.E. Hansmann,
     8!                      Jan H. Meinke, Sandipan Mohanty
     9!
     10! CALLS: none
     11!
     12! **************************************************************
    1313
    1414     
    1515         subroutine zimmer(nresi)
    1616
    17 C Calculates the Zimmerman-code of a configuration (Zimmerman et. al.
    18 C Macromolecules, vol. 10 (1977) 1-9.)
    19 C
    20 C Note the difference in Notations:
    21 C    SMMP:                      Zimmerman, et.al.:
    22 C         A                                       A
    23 C         B                                       B
    24 C         C                                       C
    25 C         D                                       D
    26 C         E                                       E
    27 C         F                                       F
    28 C         G                                       G
    29 C         H                                       H
    30 C         a                                       A*
    31 C         b                                       B*
    32 C         c                                       C*
    33 C         d                                       D*
    34 C         e                                       E*
    35 C         f                                       F*
    36 C         g                                       G*
    37 C         h                                       H*
    38 C
     17! Calculates the Zimmerman-code of a configuration (Zimmerman et. al.
     18! Macromolecules, vol. 10 (1977) 1-9.)
     19!
     20! Note the difference in Notations:
     21!    SMMP:                      Zimmerman, et.al.:
     22!         A                                       A
     23!         B                                       B
     24!         C                                       C
     25!         D                                       D
     26!         E                                       E
     27!         F                                       F
     28!         G                                       G
     29!         H                                       H
     30!         a                                       A*
     31!         b                                       B*
     32!         c                                       C*
     33!         d                                       D*
     34!         e                                       E*
     35!         f                                       F*
     36!         g                                       G*
     37!         h                                       H*
     38!
    3939      include 'INCL.H'
    40 cf2py intent(in) nresi
     40!f2py intent(in) nresi
    4141      character*1 zim
    4242
Note: See TracChangeset for help on using the changeset viewer.