29 #ifndef CDPL_CHEM_REACTION_HPP
30 #define CDPL_CHEM_REACTION_HPP
61 class ConstComponentAccessor;
62 class ComponentAccessor;
375 ConstComponentAccessor(
const ComponentAccessor& accessor):
376 reaction(accessor.reaction), compRole(accessor.compRole) {}
377 ConstComponentAccessor(
const Reaction* rxn,
unsigned int role):
378 reaction(rxn), compRole(role) {}
380 const Molecule& operator()(std::size_t idx)
const;
382 bool operator==(
const ConstComponentAccessor& accessor)
const;
385 const Reaction* reaction;
386 unsigned int compRole;
392 friend class Reaction;
393 friend class ConstComponentAccessor;
396 ComponentAccessor(Reaction* rxn,
unsigned int role):
397 reaction(rxn), compRole(role) {}
399 Molecule& operator()(std::size_t idx)
const;
401 bool operator==(
const ComponentAccessor& accessor)
const;
405 unsigned int compRole;
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::Util::IndexedElementIterator.
Definition of class CDPL::Base::PropertyContainer.
Base class providing methods for the storage and lookup of object properties.
Definition: PropertyContainer.hpp:75
Abstract base class representing a mutable molecular graph that owns its atoms and bonds.
Definition: Molecule.hpp:53
Abstract base class for chemical reactions composed of role-tagged Chem::Molecule components.
Definition: Reaction.hpp:59
std::function< void(Reaction &, const Reaction &)> CopyPostprocessingFunction
Type of a functor invoked after a reaction copy operation to post-process the target reaction (first ...
Definition: Reaction.hpp:88
Util::IndexedElementIterator< Molecule, ComponentAccessor > ComponentIterator
A mutable random access iterator used to iterate over the components of the reaction.
Definition: Reaction.hpp:78
ConstComponentIterator getComponentsEnd() const
Returns a constant iterator pointing to the end of the reaction components.
static void registerCopyPostprocessingFunction(const CopyPostprocessingFunction &func)
Registers a global post-processing function invoked after every reaction copy operation.
virtual const Molecule & getComponent(std::size_t idx, unsigned int role) const =0
Returns a const reference to the reaction component at index idx in the list of components with the s...
virtual std::size_t getNumComponents() const =0
Returns the number of reaction components.
virtual void removeComponent(std::size_t idx)=0
Removes the reaction component at the specified index.
ComponentIterator end()
Returns a mutable iterator pointing to the end of the reaction components.
virtual void clear()=0
Removes all components and clears all properties of the reaction.
ConstComponentIterator getComponentsBegin(unsigned int role) const
Returns a constant iterator pointing to the beginning of the reaction components with the specified r...
ComponentIterator getComponentsBegin(unsigned int role)
Returns a mutable iterator pointing to the beginning of the reaction components with the specified ro...
void invokeCopyPostprocessingFunctions(const Reaction &src_rxn)
Invokes all registered copy post-processing functions with *this as the target reaction and src_rxn a...
std::shared_ptr< Reaction > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated Reaction instances.
Definition: Reaction.hpp:62
virtual void swapComponentRoles(unsigned int role1, unsigned int role2)=0
Swaps the reaction roles of the component sets specified by role1 and role2.
ComponentIterator getComponentsEnd(unsigned int role)
Returns a mutable iterator pointing to the end of the reaction components with the specified role.
ConstComponentIterator getComponentsEnd(unsigned int role) const
Returns a constant iterator pointing to the end of the reaction components with the specified role.
virtual const Molecule & getComponent(std::size_t idx) const =0
Returns a const reference to the reaction component at index idx.
ComponentIterator getComponentsBegin()
Returns a mutable iterator pointing to the beginning of the reaction components.
Util::IndexedElementIterator< const Molecule, ConstComponentAccessor > ConstComponentIterator
A constant random access iterator used to iterate over the components of the reaction.
Definition: Reaction.hpp:73
virtual std::size_t getComponentIndex(const Molecule &mol) const =0
Returns the index of the specified reaction component.
virtual bool containsComponent(const Molecule &mol) const =0
Tells whether the specified molecule is a component of this reaction.
virtual Molecule & getComponent(std::size_t idx, unsigned int role)=0
Returns a non-const reference to the reaction component at index idx in the list of components with t...
ConstComponentIterator getComponentsBegin() const
Returns a constant iterator pointing to the beginning of the reaction components.
virtual std::size_t getNumComponents(unsigned int role) const =0
Returns the number of reaction components with the specified role.
virtual void removeComponents(unsigned int role)=0
Removes all components with the specified role.
virtual Molecule & getComponent(std::size_t idx)=0
Returns a non-const reference to the reaction component at index idx.
ConstComponentIterator end() const
Returns a constant iterator pointing to the end of the reaction components.
ComponentIterator getComponentsEnd()
Returns a mutable iterator pointing to the end of the reaction components.
virtual SharedPointer clone() const =0
Creates a copy of the current reaction state.
ConstComponentIterator begin() const
Returns a constant iterator pointing to the beginning of the reaction components.
virtual ~Reaction()
Virtual destructor.
Definition: Reaction.hpp:93
virtual void removeComponent(std::size_t idx, unsigned int role)=0
Removes the reaction component at index idx in the list of components with the specified role.
ComponentIterator begin()
Returns a mutable iterator pointing to the beginning of the reaction components.
virtual Molecule & addComponent(unsigned int role)=0
Creates a new reaction component with the specified role.
Reaction & operator=(const Reaction &rxn)
Replaces the current set of reaction components and properties by a copy of the components and proper...
virtual void copy(const Reaction &rxn)=0
Replaces the current set of reaction components and properties by a copy of the components and proper...
virtual unsigned int getComponentRole(const Molecule &mol) const =0
Returns the reaction role of the specified component.
ComponentIterator removeComponent(const ComponentIterator &it)
Removes the reaction component specified by the iterator it.
STL compatible random access iterator for container elements accessible by index.
Definition: IndexedElementIterator.hpp:125
GridEquality< E1, E2 >::ResultType operator==(const GridExpression< E1 > &e1, const GridExpression< E2 > &e2)
Tells whether the grid expressions e1 and e2 are element-wise equal.
Definition: GridExpression.hpp:579
The namespace of the Chemical Data Processing Library.