Changeset bd2278d for outpdb.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
  • outpdb.f

    r2ebb8b6 rbd2278d  
    1 c **************************************************************
    2 c
    3 c This file contains the subroutines: outpdb
    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 **************************************************************
     1! **************************************************************
     2!
     3! This file contains the subroutines: outpdb
     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! **************************************************************
    1111
    1212      subroutine outpdb(nml,fileName)
    1313
    14 c ..............................................
    15 c  PURPOSE:  write coordinates of molecule 'nml'
    16 c            in PDB-format (with specialities for hydrogens)
    17 c
    18 c  INPUT:    nml - number of molecule
    19 c
    20 c            npdb - unit of output-file
    21 c
    22 c  CALLS:    toupst,iendst
    23 c ..............................................
     14! ..............................................
     15!  PURPOSE:  write coordinates of molecule 'nml'
     16!            in PDB-format (with specialities for hydrogens)
     17!
     18!  INPUT:    nml - number of molecule
     19!
     20!            npdb - unit of output-file
     21!
     22!  CALLS:    toupst,iendst
     23! ..............................................
    2424
    2525      include 'INCL.H'
     
    9090              j = iendst(atnm)
    9191              if (ichar(atnm(j:j)).ge.i0.and.
    92      #            ichar(atnm(j:j)).le.i9) then
     92     &            ichar(atnm(j:j)).le.i9) then
    9393                atnm(1:1)=atnm(j:j)
    9494                atnm(j:j)=' '
     
    102102            linout = ' '
    103103            write (linout,1) linty,iat,atnm,res(1:3),chid,irs,cdin,
    104      #                       xat(i),yat(i),zat(i),occ,bva
     104     &                       xat(i),yat(i),zat(i),occ,bva
    105105            write(iout,'(a80)') linout
    106106
     
    115115      enddo  ! molecules
    116116
    117 c ______________________________________ connectivity
    118 c                                        ( only bonds i-j with i<j)
     117! ______________________________________ connectivity
     118!                                        ( only bonds i-j with i<j)
    119119
    120120      do iml = im1,im2
Note: See TracChangeset for help on using the changeset viewer.