29 #ifndef CDPL_CHEM_BASICMOLECULE_HPP
30 #define CDPL_CHEM_BASICMOLECULE_HPP
35 #include <boost/iterator/indirect_iterator.hpp>
64 typedef std::vector<AtomPtr> AtomList;
65 typedef std::vector<BondPtr> BondList;
76 typedef boost::indirect_iterator<AtomList::iterator, BasicAtom>
AtomIterator;
81 typedef boost::indirect_iterator<AtomList::const_iterator, const BasicAtom>
ConstAtomIterator;
86 typedef boost::indirect_iterator<BondList::iterator, BasicBond>
BondIterator;
91 typedef boost::indirect_iterator<BondList::const_iterator, const BasicBond>
ConstBondIterator;
237 using Molecule::operator=;
250 using Molecule::operator+=;
284 template <
typename T>
285 void doCopy(
const T& mol);
287 template <
typename T>
288 void doAppend(
const T& mol);
290 void clearAtomsAndBonds();
292 void renumberAtoms(std::size_t idx);
293 void renumberBonds(std::size_t idx);
298 static void destroyAtom(
BasicAtom* atom);
299 static void destroyBond(
BasicBond* bond);
Definition of class CDPL::Chem::BasicAtom.
Definition of class CDPL::Chem::BasicBond.
Definition of the preprocessor macro CDPL_CHEM_API.
#define CDPL_CHEM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of class CDPL::Chem::Molecule.
Definition of class CDPL::Util::ObjectPool.
Abstract base class representing a chemical atom and its bonded neighborhood.
Definition: Atom.hpp:58
Default implementation of the Chem::Atom interface.
Definition: BasicAtom.hpp:57
Default implementation of the Chem::Bond interface.
Definition: BasicBond.hpp:52
Default implementation of the Chem::Molecule interface.
Definition: BasicMolecule.hpp:58
void removeAtom(std::size_t idx)
Removes the atom at the specified index.
void orderAtoms(const AtomCompareFunction &func)
Orders the atoms according to criteria implemented by the provided atom comparison function.
BasicBond & addBond(std::size_t atom1_idx, std::size_t atom2_idx)
Creates a new or returns an already existing bond between the atoms specified by atom1_idx and atom2_...
std::size_t getBondIndex(const Bond &bond) const
Returns the index of the specified bond.
const BasicBond & getBond(std::size_t idx) const
Returns a const reference to the bond at index idx.
std::shared_ptr< BasicMolecule > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated BasicMolecule instances.
Definition: BasicMolecule.hpp:71
boost::indirect_iterator< AtomList::const_iterator, const BasicAtom > ConstAtomIterator
A constant random access iterator used to iterate over the stored const Chem::BasicAtom objects.
Definition: BasicMolecule.hpp:81
void append(const MolecularGraph &molgraph)
Extends the current set of atoms and bonds by a copy of the atoms and bonds of the molecular graph mo...
boost::indirect_iterator< BondList::iterator, BasicBond > BondIterator
A mutable random access iterator used to iterate over the stored Chem::BasicBond objects.
Definition: BasicMolecule.hpp:86
bool containsBond(const Bond &bond) const
Tells whether the specified bond is part of the bond sequence.
BondIterator removeBond(const BondIterator &it)
Removes the bond specified by the iterator it.
void clear()
Removes all atoms and bonds and clears all properties of the molecule.
void append(const Molecule &mol)
Extends the current set of atoms and bonds by a copy of the atoms and bonds of the molecule mol.
BasicAtom & addAtom()
Creates a new atom and adds it to the molecule.
void removeBond(std::size_t idx)
Removes the bond at the specified index.
ConstAtomIterator getAtomsEnd() const
Returns a constant iterator pointing to the end of the stored const Chem::BasicAtom objects.
const BasicAtom & getAtom(std::size_t idx) const
Returns a const reference to the atom at index idx.
void copy(const Molecule &mol)
Replaces the current set of atoms, bonds and properties by a copy of the atoms, bonds and properties ...
void orderBonds(const BondCompareFunction &func)
Orders the bonds according to criteria implemented by the provided bond comparison function.
BasicMolecule(const Molecule &mol)
Constructs a BasicMolecule instance that is a copy of the molecule mol.
ConstBondIterator getBondsEnd() const
Returns a constant iterator pointing to the end of the stored const Chem::BasicBond objects.
std::size_t getNumAtoms() const
Returns the number of atoms.
void copy(const MolecularGraph &molgraph)
Replaces the current set of atoms, bonds and properties by a copy of the atoms, bonds and properties ...
std::size_t getAtomIndex(const Atom &atom) const
Returns the index of the specified atom.
AtomIterator removeAtom(const AtomIterator &it)
Removes the atom specified by the iterator it.
BasicMolecule & operator=(const BasicMolecule &mol)
Replaces the current set of atoms, bonds and properties by a copy of the atoms, bonds and properties ...
std::size_t getNumBonds() const
Returns the number of bonds.
void copy(const BasicMolecule &mol)
Replaces the current set of atoms, bonds and properties by a copy of the atoms, bonds and properties ...
BasicBond & getBond(std::size_t idx)
Returns a non-const reference to the bond at index idx.
boost::indirect_iterator< BondList::const_iterator, const BasicBond > ConstBondIterator
A constant random access iterator used to iterate over the stored const Chem::BasicBond objects.
Definition: BasicMolecule.hpp:91
void reserveMemoryForAtoms(std::size_t num_atoms)
Reserves memory for num_atoms atoms.
BasicAtom & getAtom(std::size_t idx)
Returns a non-const reference to the atom at index idx.
boost::indirect_iterator< AtomList::iterator, BasicAtom > AtomIterator
A mutable random access iterator used to iterate over the stored Chem::BasicAtom objects.
Definition: BasicMolecule.hpp:76
BondIterator getBondsEnd()
Returns a mutable iterator pointing to the end of the stored Chem::BasicBond objects.
MolecularGraph::SharedPointer clone() const
Creates a deep copy of the molecular graph.
BasicMolecule()
Constructs an empty BasicMolecule instance.
BasicMolecule & operator+=(const BasicMolecule &mol)
Extends the current set of atoms and bonds by a copy of the atoms and bonds of the molecule mol.
ConstAtomIterator getAtomsBegin() const
Returns a constant iterator pointing to the beginning of the stored const Chem::BasicAtom objects.
BasicMolecule(const MolecularGraph &molgraph)
Constructs a BasicMolecule instance with copies of the atoms, bonds and properties provided by the mo...
ConstBondIterator getBondsBegin() const
Returns a constant iterator pointing to the beginning of the stored const Chem::BasicBond objects.
bool containsAtom(const Atom &atom) const
Tells whether the specified atom is part of the atom sequence.
void reserveMemoryForBonds(std::size_t num_bonds)
Reserves memory for num_bonds bonds.
AtomIterator getAtomsBegin()
Returns a mutable iterator pointing to the beginning of the stored Chem::BasicAtom objects.
AtomIterator getAtomsEnd()
Returns a mutable iterator pointing to the end of the stored Chem::BasicAtom objects.
~BasicMolecule()
Destructor.
BondIterator getBondsBegin()
Returns a mutable iterator pointing to the beginning of the stored Chem::BasicBond objects.
void remove(const MolecularGraph &molgraph)
Removes atoms and bonds referenced by the molecular graph molgraph that are part of this Molecule ins...
void append(const BasicMolecule &mol)
Extends the current set of atoms and bonds by a copy of the atoms and bonds of the molecule mol.
BasicMolecule(const BasicMolecule &mol)
Constructs a BasicMolecule instance that is a copy of the molecule mol.
Abstract base class representing a chemical bond between two atoms (represented by Chem::Atom instanc...
Definition: Bond.hpp:54
Abstract base class for data structures that represent chemical structures as molecular graphs.
Definition: MolecularGraph.hpp:60
std::shared_ptr< MolecularGraph > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated MolecularGraph instances.
Definition: MolecularGraph.hpp:66
Abstract base class representing a mutable molecular graph that owns and manages its atoms and bonds.
Definition: Molecule.hpp:53
STL compatible random access iterator for container elements accessible by index.
Definition: IndexedElementIterator.hpp:125
std::shared_ptr< ObjectType > SharedObjectPointer
A smart pointer to a borrowed object that returns the object to the pool on destruction.
Definition: ObjectPool.hpp:71
constexpr unsigned int T
Specifies Hydrogen (Tritium).
Definition: AtomType.hpp:67
std::function< bool(const Atom &, const Atom &)> AtomCompareFunction
Generic wrapper class used to store a user-defined atom compare function.
Definition: AtomCompareFunction.hpp:41
std::function< bool(const Chem::Bond &, const Chem::Bond &)> BondCompareFunction
Generic wrapper class used to store a user-defined bond compare function.
Definition: BondCompareFunction.hpp:41
The namespace of the Chemical Data Processing Library.