babel-1.6
|
Makefile,
README.1ST,
addh.c,
addh2.c,
aromatic.c,
assbnd.c,
asstypes.c,
babel.h,
bblmacs.h,
bblmast.h,
bbltyp.h,
block.c,
bndord.c,
bo.c,
buildct.c,
combine.c,
convert.c,
delatms.c,
delh2o.c,
element.lis,
filesrch.c,
fileutil.c,
gastchg.c,
gauss.hdr,
htoend.c,
int2cart.c,
intcart.c,
menus.c,
miniums.c,
molwt.c,
new.lis,
nodummy.c,
orient.c,
precip.c,
printbad.c,
progress.c,
psgvb.hdr,
quanta.lis,
rdalch.c,
rdampout.c,
rdbalst.c,
rdbgf.c,
rdboogie.c,
rdc3d.c,
rdcacao.c,
rdcadpac.c,
rdcharmm.c,
rdcsd.c,
rddock.c,
rddpdb.c,
rdelmnts.c,
rdfdat.c,
rdfeat.c,
rdfract.c,
rdg96.c,
rdgamout.c,
rdgauout.c,
rdgzmat.c,
rdhin.c,
rdinsite.c,
rdint.c,
rdirc.c,
rdisis.c,
rdm3d.c,
rdmacmod.c,
rdmacmol.c,
rdmdl.c,
rdmicro.c,
rdmm2.c,
rdmm2in.c,
rdmm3.c,
rdmolen.c,
rdmopac.c,
rdmopcrt.c,
rdpcmod.c,
rdpdb.c,
rdprep.c,
rdpsgout.c,
rdpsgvin.c,
rdquanta.c,
rdschak.c,
rdshelx.c,
rdsmiles.c,
rdspart.c,
rdspmm.c,
rdspsemi.c,
rdsybmol.c,
rdsybyl.c,
rdtypes.c,
rdunichm.c,
rdwiz.c,
rdxed.c,
rdxyz.c,
renum.c,
report.c,
rings.c,
ringutil.c,
sets.c,
smilesto.c,
spline.c,
strngutl.c,
tokenst.c,
tosmiles.c,
tree.c,
typbybo.c,
types.lis,
umslist.c,
utils.c,
vectors.c,
wralch.c,
wrbalst.c,
wrbgf.c,
wrbmin.c,
wrbox.c,
wrc3d.c,
wrcacao.c,
wrcache.c,
wrcacint.c,
wrchdrw.c,
wrcontmp.c,
wrcsr.c,
wrcssr.c,
wrdock.c,
wrdpdb.c,
wrfeat.c,
wrfh.c,
wrg96.c,
wrgamess.c,
wrgau.c,
wrgaucrt.c,
wrhin.c,
wricon.c,
wrint.c,
wrisis.c,
wrm3d.c,
wrmaccs.c,
wrmacmod.c,
wrmcmol.c,
wrmdl.c,
wrmicro.c,
wrmimic.c,
wrmiv.c,
wrmm2.c,
wrmm3.c,
wrmopac.c,
wrpcmod.c,
wrpdb.c,
wrpsgv.c,
wrpsgvz.c,
wrsmiles.c,
wrspart.c,
wrsybmol.c,
wrsybyl.c,
wrtinker.c,
wrtorlst.c,
wrunichm.c,
wrwiz.c,
wrxed.c,
wrxyz.c
|
|
|
/****
This file is part of the Babel Program
Copyright (C) 1992-96 W. Patrick Walters and Matthew T. Stahl
All Rights Reserved
All Rights Reserved
All Rights Reserved
All Rights Reserved
For more information please contact:
babel@mercury.aichem.arizona.edu
-------------------------------------------------------------------------------
FILE : rdpcmod.c
AUTHOR(S) : Abby Parrill
DATE : 6-94
PURPOSE : Read a pcmodel file into the UMS
*****/
#include "bbltyp.h"
#include "bblmacs.h"
int read_pcmodel(FILE *file1, ums_type *mol)
{
char pcmod_line[BUFF_SIZE];
int i; /* dummy variable for undesired sections in record */
char temp[BUFF_SIZE]; /* temporary storage for pcmodel atom type */
int column;
while (fgets(pcmod_line, sizeof(pcmod_line), file1) != NULL)
{
if (strstr(pcmod_line,"NA"))
break;
}
sscanf(pcmod_line, "%*s %d", &Atoms);
initialize_ums(&mol);
column = locate_input_type("PCM");
while (fgets(pcmod_line, sizeof(pcmod_line), file1) != NULL)
{
if (EQn(pcmod_line, "AT", 2)) /* find atom records */
{
sscanf(pcmod_line,"%*s %d ",&i);
get_token(temp,pcmod_line,",: \n\t",3);
Atomic_number(i) = get_input_type(i,column,temp,Type(i),dummy);
get_token(temp,pcmod_line,",: \n\t",4);
X(i) = atof(temp);
get_token(temp,pcmod_line,",: \n\t",5);
Y(i) = atof(temp);
get_token(temp,pcmod_line,",: \n\t",6);
Z(i) = atof(temp);
get_pcmod_bonds(pcmod_line,mol,i);
}
if (strchr(pcmod_line,'}'))
{
break;
}
}
build_connection_table(mol);
return(TRUE);
}
void get_pcmod_bonds(char *the_line, ums_type *mol, int i)
{
char *start, *old_start;
int done = FALSE;
char delims[] = ", \t\n";
int tokens,j,k;
char temp[BUFF_SIZE];
start = strchr(the_line,'B');
old_start = start;
old_start++;
while ((start != '\0') && (!done))
{
switch(*start)
{
case 'S' :
case 'C' :
case '\n' :
*start = '\0';
done = TRUE;
break;
default :
start++;
}
}
tokens = count_tokens(old_start,delims);
Valence(i) = tokens/2;
k = 0;
for (j = 1; j < (2 * Valence(i)); j+=2)
{
get_token(temp,old_start,delims,j);
Connection(i,k) = atoi(temp);
get_token(temp,old_start,delims,j+1);
BO(i,k) = atoi(temp);
k++;
}
}
|