RDKit
Open-source cheminformatics and machine learning.
Contrib.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2004-2006 Rational Discovery LLC
3 //
4 // @@ All Rights Reserved @@
5 // This file is part of the RDKit.
6 // The contents are covered by the terms of the BSD license
7 // which is included in the file license.txt, found at the root
8 // of the RDKit source tree.
9 //
10 #ifndef __RD_FFCONTRIB_H__
11 #define __RD_FFCONTRIB_H__
12 
13 namespace ForceFields {
14  class ForceField;
15 
16  //! abstract base class for contributions to ForceFields
18  public:
19  friend class ForceField;
20 
22  virtual ~ForceFieldContrib() {};
23 
24  //! returns our contribution to the energy of a position
25  virtual double getEnergy(double *pos) const = 0;
26 
27  //! calculates our contribution to the gradients of a position
28  virtual void getGrad(double *pos,double *grad) const = 0;
29 
30  //! return a copy
31  virtual ForceFieldContrib *copy() const = 0;
32 
33  protected:
34  ForceField *dp_forceField; //!< our owning ForceField
35  };
36 
37 }
38 
39 #endif
abstract base class for contributions to ForceFields
Definition: Contrib.h:17
virtual double getEnergy(double *pos) const =0
returns our contribution to the energy of a position
ForceField * dp_forceField
our owning ForceField
Definition: Contrib.h:34
virtual ForceFieldContrib * copy() const =0
return a copy
A class to store forcefields and handle minimization.
Definition: ForceField.h:56
virtual void getGrad(double *pos, double *grad) const =0
calculates our contribution to the gradients of a position