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 : renum.c
AUTHOR(S) : Pat Walters
DATE : 1-95
PURPOSE : routines to renumber a structure in order to produce a more reasonable
Z-matrix
******/
#include "bbltyp.h"
ums_type *renumber(ums_type *mol)
{
vect_type v;
center_at_origin(mol,&v);
find_dist_from_origin(mol);
sort_by_dist_to_origin(mol);
mol = build_new_ums(mol,Atoms);
return(mol);
}
void find_dist_from_origin(ums_type *mol)
{
int i;
coord_type origin;
origin.x = 0.0;
origin.y = 0.0;
origin.z = 0.0;
for (i = 1; i <= Atoms; i++)
{
Double(i) = distance(Point(i),origin);
}
}
void sort_by_dist_to_origin(ums_type *mol)
{
int i,j;
temp_atom_rec *temp;
temp = (temp_atom_rec *)malloc(Atoms * sizeof(temp_atom_rec));
if (!temp)
fatal_error("Error allocating memory in sort_by_dist_to_origin");
for (i = 0; i < Atoms; i++)
{
j = i + 1;
temp[i].x = X(j);
temp[i].y = Y(j);
temp[i].z = Z(j);
temp[i].num = j;
temp[i].dist = Double(j);
}
qsort(temp,Atoms,sizeof(temp_atom_rec),QSORT_PROTO sort_by_dist);
for (i = 0; i < Atoms; i++)
{
printf("%d %10.3f%10.3f%10.3f - %10.3f\n",
temp[i].num,temp[i].x,temp[i].y,temp[i].z,temp[i].dist);
}
j = 1;
for (i = 0; i < Atoms; i++)
{
if (Type(temp[i].num)[0] != 'H')
{
Redo(temp[i].num) = j;
j++;
}
}
for (i = 0; i < Atoms; i++)
{
if (Type(temp[i].num)[0] == 'H')
{
Redo(temp[i].num) = j;
j++;
}
}
}
int sort_by_dist(temp_atom_rec *a, temp_atom_rec *b)
{
if (a->dist > b->dist)
return(1);
if (a->dist < b->dist)
return(-1);
return(0);
}
|