BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SCORING/COMPONENTS/solvation.h
Go to the documentation of this file.
1 // ----------------------------------------------------
2 // $Maintainer: Marcel Schumann $
3 // $Authors: Marcel Schumann $
4 // ----------------------------------------------------
5 
6 #ifndef BALL_SCORING_COMPONENTS_SOLVATION_H
7 #define BALL_SCORING_COMPONENTS_SOLVATION_H
8 
10 #include <map>
11 
12 
13 namespace BALL
14 {
16  {
17  public:
19 
20  virtual void update(const AtomPairVector& pair_vector);
21 
22  virtual double updateScore();
23 
24  private:
25  AtomPairVector pair_vector_;
26 
27  protected:
28  std::map<String, double> solvation_parameters;
29  std::map<String, double> solvation_volumes;
30  };
31 }
32 
33 #endif // BALL_SCORING_COMPONENTS_SOLVATION_H
std::map< String, double > solvation_volumes
std::map< String, double > solvation_parameters
#define BALL_EXPORT
Definition: COMMON/global.h:50
std::vector< std::pair< Atom *, Atom * > > AtomPairVector