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

    r2ebb8b6 rbd2278d  
    1 c **************************************************************
    2 c
    3 c This file contains the subroutines: helix
    4 c
    5 c Copyright 2003       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: helix
     4!
     5! Copyright 2003       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
    1313      subroutine helix(nhel,mhel,nbet,mbet)
    14 c---------------------------------------------------------------
    15 c
    16 c   PURPOSE: simple identification of secondary structure content
    17 c
    18 c   CALLS: none
    19 c
    20 c ---------------------------------------------------------------
     14!---------------------------------------------------------------
     15!
     16!   PURPOSE: simple identification of secondary structure content
     17!
     18!   CALLS: none
     19!
     20! ---------------------------------------------------------------
    2121      include 'INCL.H'
    2222
    23 cf2py intent(out) nhel
    24 cf2py intent(out) mhel
    25 cf2py intent(out) nbet
    26 cf2py intent(out) mbet
     23!f2py intent(out) nhel
     24!f2py intent(out) mhel
     25!f2py intent(out) nbet
     26!f2py intent(out) mbet
    2727           
    2828      logical lhel,lbet
     
    4242         xphi = vlvr(iv)*crd
    4343         xpsi = vlvr(idvr(i+1))*crd
    44 C Helicity
     44! Helicity
    4545         if(abs(xphi-philim).le.hlim) then
    4646          lbet=.false.
     
    5252            lhel = .false.
    5353          end if
    54 C Sheetness
     54! Sheetness
    5555         else if(abs(xphi-philim2).le.hlim2) then
    5656          lhel = .false.
Note: See TracChangeset for help on using the changeset viewer.