1 implicit real*8 (a-h,o-z)
4 include 'COMMON.INTERACT'
5 include 'COMMON.SBRIDGE'
8 real*4 coord(3,2*maxres)
9 real*4 prec,time,potE,uconst,t_bath,qfrag(100)
11 character*80 arg,seqfile,angfile
12 character*3 sequenc(maxres)
14 character*8 onethree,cfreq
21 pi = 4.0d0*datan(1.0d0)
28 if (iargc().lt.3) then
30 & "Usage: xdrf2ang one/three seqfile cxfile [freq]",
31 & " [start] [end] [angfile]"
34 call getarg(1,onethree)
35 onethree = ucase(onethree)
36 if (onethree.eq.'ONE') then
38 else if (onethree.eq.'THREE') then
41 print *,"ONE or THREE must be specified"
43 call getarg(2,seqfile)
44 open (1,file=seqfile,status='old')
46 read(1,'(80a1)',end=10,err=10) (sequenc(i)(1:1),i=1,maxres)
50 do while (.not.iblnk(sequenc(i+1)(1:1)))
55 itype(i)=rescode(i,sequenc(i),1)
58 read(1,'(20(a3,1x))',end=11,err=11) (sequenc(i),i=1,maxres)
62 do while (.not.iblnk(sequenc(i+1)(1:1)))
67 itype(i)=rescode(i,sequenc(i),0)
71 iext = index(arg,'.cx') - 1
73 print *,"Error - not a cx file"
76 if (iargc().gt.3) then
80 if (iargc().gt.4) then
84 if (iargc().gt.5) then
88 if (iargc().gt.6) then
89 call getarg(7,angfile)
91 angfile=arg(:iext)//'.ang'
95 if (itype(1).eq.21) nnt = 2
97 if (itype(nres).eq.21) nct = nres-1
98 print *,"nnt",nnt," nct",nct
100 call xdrfopen(ixdrf,arg, "r", iret)
103 print *,"is",is," ie",ie
105 do while(is.eq.0 .or. kk.lt.ie)
106 c call xdrfint(ixdrf, ic, iret)
108 call xdrffloat(ixdrf, time, iret)
109 print *,"time",time," iret",iret
112 call xdrffloat(ixdrf, potE, iret)
113 call xdrffloat(ixdrf, uconst, iret)
114 call xdrffloat(ixdrf, uconst_back, iret)
115 c print *,"potE",potE," uconst",uconst," uconst_back",uconst_back
116 call xdrffloat(ixdrf, t_bath, iret)
117 c print *,"t_bath",t_bath
118 call xdrfint(ixdrf, nss, iret)
121 call xdrfint(ixdrf, ihpb(j), iret)
122 call xdrfint(ixdrf, jhpb(j), iret)
124 call xdrfint(ixdrf, nfrag, iret)
125 c print *,"nfrag",nfrag
127 call xdrffloat(ixdrf, qfrag(i), iret)
132 call xdrf3dfcoord(ixdrf, coord, isize, prec, iret)
135 c write (*,'(i4,$)') nss,(ihpb(j),jhpb(j),j=1,nss)
136 c write (*,'(i4,20f7.4)') nfrag,(qfrag(i),i=1,nfrag)
137 c write (*,'(8f10.5)') ((coord(k,j),k=1,3),j=1,isize)
138 if (mod(kk,ifreq).eq.0) then
139 if (isize .ne. nres+nct-nnt+1) then
140 print *,"Error: inconsistent sizes",isize,nres+nct-nnt+1
142 write (9,'(i10,e15.8,2e15.5,f12.5)') kk,time,potE,uconst,t_bath
152 c(j,i+nres)=coord(j,ii+nres)
157 write (9,'(a3,1x,2f10.3)')
158 & restyp(itype(i)),alpha(i-1,i,i+1)*rad2deg,
159 & beta(i-1,i,i+1,i+2)*rad2deg
161 write (9,'(a3,1x,f10.3)')
162 & restyp(itype(nres-1)),alpha(nres-2,nres-1,nres)*rad2deg