![]() |
Chemical Data Processing Library Python API - Version 1.4.0
|
Constraint functor that accepts a pair of features whose 3D-position distance lies within a configured [min, max] interval. More...
Inheritance diagram for CDPL.Pharm.FeatureDistanceConstraint:Public Member Functions | |
| None | __init__ (FeatureDistanceConstraint constr) |
Initializes a copy of the FeatureDistanceConstraint instance constr. More... | |
| None | __init__ (float min_dist, float max_dist) |
Constructs a FeatureDistanceConstraint functor with a minimum feature distance of min_dist and maximum distance of max_dist. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| float | getMinDistance () |
| Returns the currently configured minimum feature pair distance. More... | |
| float | getMaxDistance () |
| Returns the currently configured maximum feature pair distance. More... | |
| FeatureDistanceConstraint | assign (FeatureDistanceConstraint constr) |
Replaces the current state of self with a copy of the state of the FeatureDistanceConstraint instance constr. More... | |
| bool | __call__ (Feature ftr1, Feature ftr2) |
| Tests whether the 3D-position distance between ftr1 and ftr2 lies within the configured [min, max] interval. More... | |
Properties | |
| objectID = property(getObjectID) | |
| minDistance = property(getMinDistance) | |
| maxDistance = property(getMaxDistance) | |
Constraint functor that accepts a pair of features whose 3D-position distance lies within a configured [min, max] interval.
| None CDPL.Pharm.FeatureDistanceConstraint.__init__ | ( | FeatureDistanceConstraint | constr | ) |
Initializes a copy of the FeatureDistanceConstraint instance constr.
| constr | The FeatureDistanceConstraint instance to copy. |
| None CDPL.Pharm.FeatureDistanceConstraint.__init__ | ( | float | min_dist, |
| float | max_dist | ||
| ) |
Constructs a FeatureDistanceConstraint functor with a minimum feature distance of min_dist and maximum distance of max_dist.
| min_dist | The minimum feature pair distance. |
| max_dist | The maximum feature pair distance. |
Reimplemented in CDPL.Pharm.HydrophobicInteractionConstraint, and CDPL.Pharm.IonicInteractionConstraint.
| int CDPL.Pharm.FeatureDistanceConstraint.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python FeatureDistanceConstraint instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b thus cannot tell reliably whether the two FeatureDistanceConstraint instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID().
| float CDPL.Pharm.FeatureDistanceConstraint.getMinDistance | ( | ) |
Returns the currently configured minimum feature pair distance.
| float CDPL.Pharm.FeatureDistanceConstraint.getMaxDistance | ( | ) |
Returns the currently configured maximum feature pair distance.
| FeatureDistanceConstraint CDPL.Pharm.FeatureDistanceConstraint.assign | ( | FeatureDistanceConstraint | constr | ) |
Replaces the current state of self with a copy of the state of the FeatureDistanceConstraint instance constr.
| constr | The FeatureDistanceConstraint instance to copy. |
Tests whether the 3D-position distance between ftr1 and ftr2 lies within the configured [min, max] interval.
| ftr1 | The first feature. |
| ftr2 | The second feature. |
True if the constraint is satisfied, and False otherwise.