X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=source%2Funres%2Fsrc_MD-M%2Fxdrf2pdb%2Frescode.f;fp=source%2Funres%2Fsrc_MD-M%2Fxdrf2pdb%2Frescode.f;h=0000000000000000000000000000000000000000;hb=0a11a2c4ccee14ed99ae44f2565b270ba8d4bbb6;hp=1fff9ecfa7b4c0763d2b044592f7fde5f22743af;hpb=5eb407964903815242c59de10960f42761139e10;p=unres.git diff --git a/source/unres/src_MD-M/xdrf2pdb/rescode.f b/source/unres/src_MD-M/xdrf2pdb/rescode.f deleted file mode 100644 index 1fff9ec..0000000 --- a/source/unres/src_MD-M/xdrf2pdb/rescode.f +++ /dev/null @@ -1,31 +0,0 @@ - integer function rescode(iseq,nam,ione) - implicit real*8 (a-h,o-z) - include 'DIMENSIONS' - include 'COMMON.NAMES' - include 'COMMON.IOUNITS' - character*3 nam,ucase - - if (ione.eq.0) then - - do i=1,ntyp1 - if (ucase(nam).eq.restyp(i)) then - rescode=i - return - endif - enddo - else - - do i=1,ntyp1 - if (nam(1:1).eq.onelet(i)) then - rescode=i - return - endif - enddo - - endif - - write (iout,10) iseq,nam - stop - 10 format ('**** Error - residue',i4,' has an unresolved name ',a3) - end -