BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
amberEvaluation.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 // $Id: amberEvaluation.h,v 1.3.18.2 2007/06/17 07:02:21 oliver Exp $
4 //
5 // Author:
6 //
7 //
8 
9 #ifndef BALL_STRUCTURE_DOCKING_AMBEREVALUATION_H
10 #define BALL_STRUCTURE_DOCKING_AMBEREVALUATION_H
11 
12 #ifndef BALL_STRUCTURE_FORCEFIELDEVALUATION_H
14 #endif
15 
16 #ifndef BALL_MOLMEC_AMBER_AMBER_H
17 # include <BALL/MOLMEC/AMBER/amber.h>
18 #endif
19 
20 namespace BALL
21 {
27  {
28  public:
29 
30  // Default constructor.
32  ;
33 
35  ;
36 
37  AmberEvaluation(AmberFF& ff, Options& option)
38  ;
39 
40  virtual ~AmberEvaluation()
41  ;
42 
45  void setForceField(ForceField& ff)
46  ;
47 
48  void setOptions(const Options& options)
49  ;
50 
51  ForceField& getForceField()
52  ;
53 
54  const ForceField& getForceField() const
55  ;
56 
57  Options& getOptions()
58  ;
59 
60  const Options& getOptions() const
61  ;
62 
63  };
64 }
65 #endif