source: incl_lund.h@ bd2278d

Last change on this file since bd2278d was bd2278d, checked in by baerbaer <baerbaer@…>, 16 years ago

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

  • Property mode set to 100644
File size: 1.5 KB
Line 
1 parameter (nhptyp=3,mxconr=40,mxcell=125000)
2 dimension iN(mxrs),iCa(mxrs),iC(mxrs),mlvr(mxvr)
3 dimension iphi(mxrs),ipsi(mxrs)
4 common /lundds/iN,iCa,iC,mlvr,iphi,ipsi
5
6 double precision kbias
7 double precision epshb1,epshb2,powa,powb,sighb,cthb,cthb2
8 double precision alhb,blhb,sighb2,cdon,cacc,casc
9
10! -----Probability for using BGS when it is possible
11 double precision abgs,bbgs, dph(8)
12 integer bgsnvar,bgsvar(mxrs), iph(8)
13 common /bgs_i/ bgsnvar,iph
14 common /bgs_r/ abgs,bbgs,dph, bgsvar
15 dimension ihpat(mxrs,6),nhpat(mxrs)
16 double precision hpstrg
17 dimension hpstrg(nhptyp*nhptyp)
18
19 double precision exvk,exvcut,exvcut2
20 dimension matcon(-mxconr:mxconr,mxat)
21
22 double precision sigsa,sig2lcp,asalcp,bsalcp
23 dimension sigsa(mxtyat),sig2lcp(mxtyat,mxtyat)
24 dimension asalcp(mxtyat,mxtyat),bsalcp(mxtyat,mxtyat)
25
26 dimension lcp1(50*mxrs),lcp2(50*mxrs),ilpst(mxml),ilpnd(mxml)
27
28 double precision exvlam,exvcutg,exvcutg2
29 double precision sig2exv,asaexv,bsaexv
30 dimension sig2exv(mxtyat,mxtyat)
31 dimension asaexv(mxtyat,mxtyat),bsaexv(mxtyat,mxtyat)
32
33 common /lundff/kbias,
34 & epshb1,epshb2,powa,powb,sighb,cthb,
35 & cthb2,
36 & alhb,blhb,sighb2,cdon,cacc,casc,
37 & ihpat,nhpat,hpstrg,
38 & exvk,exvcut,exvcut2,
39 & matcon,
40 & sigsa,sig2lcp,asalcp,bsalcp,
41 & lcp1,lcp2,ilpst,ilpnd,
42 & exvlam,exvcutg,exvcutg2,
43 & sig2exv,asaexv,bsaexv
44 save /lundff/
Note: See TracBrowser for help on using the repository browser.