29 #ifndef CDPL_CHEM_REACTOR_HPP
30 #define CDPL_CHEM_REACTOR_HPP
220 void editAtoms()
const;
221 void editBonds()
const;
223 void editStereoProperties()
const;
225 void editProdAtomStereoDescriptor(
const Atom*,
Atom*)
const;
226 void editProdBondStereoDescriptor(
const Bond*,
Bond*)
const;
228 template <
typename T>
236 Atom* getMappedTgtProdAtom(
const Atom*)
const;
237 Bond* getMappedTgtProdBond(
const Bond*)
const;
239 typedef std::pair<std::size_t, std::size_t> IDPair;
241 struct IDPairLessCmpFunc
244 bool operator()(
const IDPair&,
const IDPair&)
const;
247 typedef std::pair<const Atom*, const Atom*> AtomPair;
248 typedef std::pair<const Bond*, const Bond*> BondPair;
249 typedef std::map<std::size_t, const Atom*> IDAtomMap;
250 typedef std::map<IDPair, const Bond*, IDPairLessCmpFunc> IDPairBondMap;
251 typedef std::map<const Atom*, Atom*> AtomMap;
252 typedef std::map<const Bond*, Bond*> BondMap;
253 typedef std::vector<AtomPair> AtomPairList;
254 typedef std::vector<BondPair> BondPairList;
259 IDAtomMap reacAtomsToDelete;
260 IDAtomMap prodAtomsToCreate;
261 IDPairBondMap reacBondsToDelete;
262 IDPairBondMap prodBondsToCreate;
263 AtomPairList ptnAtomMapping;
264 BondPairList ptnBondMapping;
265 AtomMap tgtAtomMapping;
266 BondMap tgtBondMapping;
Declaration of type CDPL::Util::BitSet.
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::ReactionSubstructureSearch.
Definition of class CDPL::Chem::Reaction.
Safe, type checked container for arbitrary data of variable type.
Definition: Any.hpp:60
Unique lookup key for control-parameter and property values.
Definition: LookupKey.hpp:54
Data structure for the common storage of related atom to atom and bond to bond mappings.
Definition: AtomBondMapping.hpp:55
Abstract base class representing a chemical atom and its bonded neighborhood.
Definition: Atom.hpp:57
Abstract base class representing a chemical bond between two Chem::Atom instances.
Definition: Bond.hpp:54
Abstract base class representing a mutable molecular graph that owns its atoms and bonds.
Definition: Molecule.hpp:53
Reaction-level analogue of Chem::SubstructureSearch that locates atom/bond mappings of a query reacti...
Definition: ReactionSubstructureSearch.hpp:70
boost::indirect_iterator< ABMappingList::const_iterator, const AtomBondMapping > ConstMappingIterator
A constant random access iterator used to iterate over the stored atom/bond mapping objects.
Definition: ReactionSubstructureSearch.hpp:83
boost::indirect_iterator< ABMappingList::iterator, AtomBondMapping > MappingIterator
A mutable random access iterator used to iterate over the stored atom/bond mapping objects.
Definition: ReactionSubstructureSearch.hpp:78
Abstract base class for chemical reactions composed of role-tagged Chem::Molecule components.
Definition: Reaction.hpp:59
Applies a Chem::Reaction template to the reactant components of a target Chem::Reaction to generate t...
Definition: Reactor.hpp:61
ReactionSiteIterator begin()
Returns a mutable iterator pointing to the beginning of the stored reaction-site data objects.
ReactionSubstructureSearch::ConstMappingIterator ConstReactionSiteIterator
A constant random access iterator used to iterate over the perceived reaction-sites.
Definition: Reactor.hpp:77
Reactor & operator=(const Reactor &)=delete
ConstReactionSiteIterator begin() const
Returns a constant iterator pointing to the beginning of the stored reaction-site data objects.
bool findReactionSites(Reaction &rxn_target)
Perceives all possible reaction-sites on the reactants of the given reaction target where the specifi...
AtomBondMapping ReactionSite
Stores information about perceived reaction-sites.
Definition: Reactor.hpp:67
ReactionSiteIterator getReactionSitesEnd()
Returns a mutable iterator pointing to the end of the stored reaction-site data objects.
ConstReactionSiteIterator getReactionSitesEnd() const
Returns a constant iterator pointing to the end of the stored reaction-site data objects.
ReactionSiteIterator end()
Returns a mutable iterator pointing to the end of the stored reaction-site data objects.
Reactor()
Constructs and initializes a Reactor instance.
Reactor(const Reaction &rxn_pattern)
Constructs and initializes a Reactor instance for the specified reaction pattern.
Reactor(const Reactor &)=delete
void performReaction(const ReactionSite &rxn_site)
Performs a transformation of the target reactants to corresponding products at the specified reaction...
ReactionSubstructureSearch::MappingIterator ReactionSiteIterator
A mutable random access iterator used to iterate over the perceived reaction-sites.
Definition: Reactor.hpp:72
const ReactionSite & getReactionSite(std::size_t idx) const
Returns a const reference to the stored reaction-site data object at index idx.
ConstReactionSiteIterator getReactionSitesBegin() const
Returns a constant iterator pointing to the beginning of the stored reaction-site data objects.
void setReactionPattern(const Reaction &rxn_pattern)
Allows to specify a new reaction pattern for the transformation of reactants to products.
ReactionSiteIterator getReactionSitesBegin()
Returns a mutable iterator pointing to the beginning of the stored reaction-site data objects.
ConstReactionSiteIterator end() const
Returns a constant iterator pointing to the end of the stored reaction-site data objects.
std::size_t getNumReactionSites() const
Returns the number of recorded reactions-sites in the last call to findReactionSites().
ReactionSite & getReactionSite(std::size_t idx)
Returns a non-const reference to the stored reaction-site data object at index idx.
constexpr unsigned int T
Specifies Hydrogen (Tritium).
Definition: AtomType.hpp:67
boost::dynamic_bitset BitSet
Dynamic bitset class.
Definition: BitSet.hpp:46
The namespace of the Chemical Data Processing Library.