Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | Static Public Attributes | List of all members
CDPL.Pharm.HydrophobicInteractionScore Class Reference

HydrophobicInteractionScore. More...

+ Inheritance diagram for CDPL.Pharm.HydrophobicInteractionScore:

Public Member Functions

None __init__ (HydrophobicInteractionScore score)
 Initializes a copy of the HydrophobicInteractionScore instance score. More...
 
None __init__ (float min_dist=2.0, float max_dist=6.0)
 Constructs a HydrophobicInteractionScore functor with a minimum hydrophobic-feature pair distance of min_dist and a maximum distance of max_dist. More...
 
- Public Member Functions inherited from CDPL.Pharm.FeatureDistanceScore
None __init__ (FeatureDistanceScore score)
 Initializes a copy of the FeatureDistanceScore instance score. More...
 
None setDistanceScoringFunction (DoubleDoubleFunctor func)
 
float getMinDistance ()
 
float getMaxDistance ()
 
FeatureDistanceScore assign (FeatureDistanceScore func)
 Replaces the current state of self with a copy of the state of the FeatureDistanceScore instance func. More...
 
- Public Member Functions inherited from CDPL.Pharm.FeatureInteractionScore
None __init__ ()
 Initializes the FeatureInteractionScore instance.
 
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
float __call__ (Feature arg2, Feature self)
 
float __call__ (Math.Vector3D arg2, Feature self)
 

Static Public Attributes

float DEF_MIN_DISTANCE = 2.0
 
float DEF_MAX_DISTANCE = 6.0
 

Additional Inherited Members

- Properties inherited from CDPL.Pharm.FeatureDistanceScore
 minDistance = property(getMinDistance)
 
 maxDistance = property(getMaxDistance)
 
- Properties inherited from CDPL.Pharm.FeatureInteractionScore
 objectID = property(getObjectID)
 

Detailed Description

HydrophobicInteractionScore.

Constructor & Destructor Documentation

◆ __init__() [1/2]

None CDPL.Pharm.HydrophobicInteractionScore.__init__ ( HydrophobicInteractionScore  score)

Initializes a copy of the HydrophobicInteractionScore instance score.

Parameters
scoreThe HydrophobicInteractionScore instance to copy.

◆ __init__() [2/2]

None CDPL.Pharm.HydrophobicInteractionScore.__init__ ( float   min_dist = 2.0,
float   max_dist = 6.0 
)

Constructs a HydrophobicInteractionScore functor with a minimum hydrophobic-feature pair distance of min_dist and a maximum distance of max_dist.

Parameters
min_distThe minimum allowed feature pair distance.
max_distThe maximum allowed feature pair distance.

Reimplemented from CDPL.Pharm.FeatureDistanceScore.