00001 // $Id: MolFileStereochem.h 499 2008-01-30 14:53:04Z glandrum $ 00002 // 00003 // Copyright (C) 2004-2006 Rational Discovery LLC 00004 // 00005 // @@ All Rights Reserved @@ 00006 // 00007 #ifndef _RD_MOL_FILE_STEREOCHEM_H_ 00008 #define _RD_MOL_FILE_STEREOCHEM_H_ 00009 00010 #include <GraphMol/RDKitBase.h> 00011 00012 namespace RDKit { 00013 void DetectAtomStereoChemistry(RWMol &mol, const Conformer *conf); 00014 void DetectBondStereoChemistry(ROMol &mol, const Conformer *conf); 00015 void WedgeMolBonds(ROMol &mol, const Conformer *conf); 00016 INT_MAP_INT pickBondsToWedge(const ROMol &mol); 00017 Bond::BondDir DetermineBondWedgeState(const Bond *bond, 00018 const INT_MAP_INT &wedgeBonds, 00019 const Conformer *conf); 00020 00021 } 00022 #endif
1.5.3