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
17 logical oneletter, iblnk
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)))
51 c do while (.not.(iblnk(sequenc(i+1)(1:1)) == 0) )
56 itype(i)=rescode(i,sequenc(i),1)
59 read(1,'(20(a3,1x))',end=11,err=11) (sequenc(i),i=1,maxres)
63 do while (.not.iblnk(sequenc(i+1)(1:1)))
64 c do while (.not.(iblnk(sequenc(i+1)(1:1)) == 0) )
69 itype(i)=rescode(i,sequenc(i),0)
73 iext = index(arg,'.cx') - 1
75 print *,"Error - not a cx file"
78 if (iargc().gt.3) then
82 if (iargc().gt.4) then
86 if (iargc().gt.5) then
90 if (iargc().gt.6) then
91 call getarg(7,angfile)
93 angfile=arg(:iext)//'.ang'
97 if (itype(1).eq.21) nnt = 2
99 if (itype(nres).eq.21) nct = nres-1
100 print *,"nnt",nnt," nct",nct
102 call xdrfopen(ixdrf,arg, "r", iret)
105 print *,"is",is," ie",ie
107 do while(is.eq.0 .or. kk.lt.ie)
108 c call xdrfint(ixdrf, ic, iret)
110 call xdrffloat(ixdrf, time, iret)
111 print *,"time",time," iret",iret
114 call xdrffloat(ixdrf, potE, iret)
115 call xdrffloat(ixdrf, uconst, iret)
116 call xdrffloat(ixdrf, uconst_back, iret)
117 c print *,"potE",potE," uconst",uconst," uconst_back",uconst_back
118 call xdrffloat(ixdrf, t_bath, iret)
119 c print *,"t_bath",t_bath
120 call xdrfint(ixdrf, nss, iret)
123 call xdrfint(ixdrf, ihpb(j), iret)
124 call xdrfint(ixdrf, jhpb(j), iret)
126 call xdrfint(ixdrf, nfrag, iret)
127 c print *,"nfrag",nfrag
129 call xdrffloat(ixdrf, qfrag(i), iret)
134 call xdrf3dfcoord(ixdrf, coord, isize, prec, iret)
137 c write (*,'(i4,$)') nss,(ihpb(j),jhpb(j),j=1,nss)
138 c write (*,'(i4,20f7.4)') nfrag,(qfrag(i),i=1,nfrag)
139 c write (*,'(8f10.5)') ((coord(k,j),k=1,3),j=1,isize)
140 if (mod(kk,ifreq).eq.0) then
141 if (isize .ne. nres+nct-nnt+1) then
142 print *,"Error: inconsistent sizes",isize,nres+nct-nnt+1
144 write (9,'(i10,e15.8,2e15.5,f12.5)') kk,time,potE,uconst,t_bath
154 c(j,i+nres)=coord(j,ii+nres)
159 write (9,'(a3,1x,2f10.3)')
160 & restyp(itype(i)),alpha(i-1,i,i+1)*rad2deg,
161 & beta(i-1,i,i+1,i+2)*rad2deg
163 write (9,'(a3,1x,f10.3)')
164 & restyp(itype(nres-1)),alpha(nres-2,nres-1,nres)*rad2deg