29 #ifndef CDPL_PHARM_FEATUREGENERATOR_HPP
30 #define CDPL_PHARM_FEATUREGENERATOR_HPP
Type declaration of a generic wrapper class for storing user-defined Chem::Atom 3D coordinates functi...
Definition of the preprocessor macro CDPL_PHARM_API.
#define CDPL_PHARM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of vector data types.
Abstract base class for data structures that represent chemical structures as molecular graphs.
Definition: MolecularGraph.hpp:60
Abstract base class for generators that perceive one type of pharmacophore feature (e....
Definition: FeatureGenerator.hpp:58
FeatureGenerator & operator=(const FeatureGenerator &gen)
Copy assignment operator.
FeatureGenerator(const FeatureGenerator &gen)
Constructs a copy of the FeatureGenerator instance gen.
virtual void generate(const Chem::MolecularGraph &molgraph, Pharmacophore &pharm)=0
Perceives pharmacophore features and adds them to the pharmacophore pharm.
virtual SharedPointer clone() const =0
Creates a deep copy of the FeatureGenerator instance.
virtual ~FeatureGenerator()
Virtual destructor.
Definition: FeatureGenerator.hpp:74
virtual void setAtom3DCoordinatesFunction(const Chem::Atom3DCoordinatesFunction &func)
Specifies a function for the retrieval of atom 3D coordinates.
std::shared_ptr< FeatureGenerator > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated FeatureGenerator instances.
Definition: FeatureGenerator.hpp:64
const Chem::Atom3DCoordinatesFunction & getAtom3DCoordinatesFunction() const
Returns the function that was registered for the retrieval of atom 3D coordinates.
FeatureGenerator()
Constructs the FeatureGenerator instance.
Abstract base class for mutable containers of Pharm::Feature instances representing a pharmacophore m...
Definition: Pharmacophore.hpp:52
std::function< const Math::Vector3D &(const Chem::Atom &)> Atom3DCoordinatesFunction
Generic wrapper class used to store a user-defined Chem::Atom 3D coordinates function.
Definition: Atom3DCoordinatesFunction.hpp:43
The namespace of the Chemical Data Processing Library.