#include <openbabel/obiter.h>
Public Member Functions | |
OBMolAtomDFSIter () | |
OBMolAtomDFSIter (OBMol *mol, int StartIndex=1) | |
OBMolAtomDFSIter (OBMol &mol, int StartIndex=1) | |
OBMolAtomDFSIter (const OBMolAtomDFSIter &ai) | |
~OBMolAtomDFSIter () | |
OBMolAtomDFSIter & | operator= (const OBMolAtomDFSIter &ai) |
operator bool () const | |
OBMolAtomDFSIter & | operator++ () |
OBMolAtomDFSIter | operator++ (int) |
OBAtom * | operator-> () const |
OBAtom & | operator* () const |
OBAtom * | next () |
This class provides a depth-first search ordering of atoms. When one connected component is exhausted, the iterator will start at another until all atoms are visited. No guarantee is made as to the ordering of iteration through connected components.
The iterator maintains an internal stack and list of visited atoms. As such it may not be appropriate for memory-constrained situations when iterating through large molecules.
Use of this iterator has been made significantly easier by a series of macros in the obiter.h header file:
\#define FOR_DFS_OF_MOL(a,m) for( OBMolAtomDFSIter a(m); a; ++a )
Here is an example:
#include <openbabel/obiter.h> #include <openbabel/mol.h> OBMol mol; FOR_DFS_OF_MOL(a, mol) { // The variable a behaves like OBAtom* when used with -> and * but // but needs to be explicitly converted when appearing as a parameter // in a function call - use &*a }
OBMolAtomDFSIter | ( | ) | [inline] |
OBMolAtomDFSIter | ( | OBMol * | mol, | |
int | StartIndex = 1 | |||
) |
OBMolAtomDFSIter | ( | OBMol & | mol, | |
int | StartIndex = 1 | |||
) |
OBMolAtomDFSIter | ( | const OBMolAtomDFSIter & | ai | ) |
~OBMolAtomDFSIter | ( | ) | [inline] |
OBMolAtomDFSIter & operator= | ( | const OBMolAtomDFSIter & | ai | ) |
operator bool | ( | ) | const [inline] |
OBMolAtomDFSIter & operator++ | ( | ) |
Preincrement -- advance to the next atom in the DFS list and return.
Referenced by OBMolAtomDFSIter::operator++().
OBMolAtomDFSIter operator++ | ( | int | ) |
Postincrement -- return the current atom and advance to the next atom.
OBAtom* operator-> | ( | ) | const [inline] |
OBAtom& operator* | ( | ) | const [inline] |
OBAtom* next | ( | ) | [inline] |
Referenced by OBMolAtomDFSIter::operator++().