|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_PHARM_PARALLELPIPIINTERACTIONSCORE_HPP
30 #define CDPL_PHARM_PARALLELPIPIINTERACTIONSCORE_HPP
51 static constexpr
double DEF_MAX_H_DISTANCE = 2.8;
52 static constexpr
double DEF_MIN_V_DISTANCE = 3.0;
53 static constexpr
double DEF_MAX_V_DISTANCE = 5.5;
54 static constexpr
double DEF_MAX_ANGLE = 20.0;
72 double max_h_dist = DEF_MAX_H_DISTANCE,
double max_ang = DEF_MAX_ANGLE);
103 #endif // CDPL_PHARM_PARALLELPIPIINTERACTIONSCORE_HPP
Definition of the preprocessor macro CDPL_PHARM_API.
FeatureInteractionScore.
Definition: FeatureInteractionScore.hpp:50
#define CDPL_PHARM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of the class CDPL::Pharm::FeatureInteractionScore.
double operator()(const Math::Vector3D &ftr1_pos, const Feature &ftr2) const
std::shared_ptr< ParallelPiPiInteractionScore > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated ParallelPiPiInteractionScore inst...
Definition: ParallelPiPiInteractionScore.hpp:59
CVector< double, 3 > Vector3D
A bounded 3 element vector holding floating point values of type double.
Definition: Vector.hpp:1637
std::function< double(double)> AngleScoringFunction
Definition: ParallelPiPiInteractionScore.hpp:62
void setDistanceScoringFunction(const DistanceScoringFunction &func)
ParallelPiPiInteractionScore(double min_v_dist=DEF_MIN_V_DISTANCE, double max_v_dist=DEF_MAX_V_DISTANCE, double max_h_dist=DEF_MAX_H_DISTANCE, double max_ang=DEF_MAX_ANGLE)
Constructs a ParallelPiPiInteractionScore functor with the specified constraints.
double getMaxVDistance() const
double operator()(const Feature &ftr1, const Feature &ftr2) const
ParallelPiPiInteractionScore.
Definition: ParallelPiPiInteractionScore.hpp:48
The namespace of the Chemical Data Processing Library.
double getMaxHDistance() const
void setAngleScoringFunction(const AngleScoringFunction &func)
std::function< double(double)> DistanceScoringFunction
Definition: ParallelPiPiInteractionScore.hpp:61
double getMinVDistance() const
Feature.
Definition: Feature.hpp:48
double getMaxAngle() const