-
Notifications
You must be signed in to change notification settings - Fork 0
/
V_Tinker.h
40 lines (35 loc) · 857 Bytes
/
V_Tinker.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* V_Tinker.h
*
* Created on: Sep 7, 2012
* Author: dstuck
*/
#ifndef V_TINKER_H_
#define V_TINKER_H_
#include "CallTinker.h"
#include "CoordUtil.h"
#include "debug.h"
#include "Potential.h"
#include "Propagator.h"
#include "Particle.h"
#include "Rho_Free.h"
#include <math.h>
#include <iostream>
#include <vector>
using namespace std;
class V_Tinker: public Potential {
public:
V_Tinker(CoordUtil*, double, double);
virtual ~V_Tinker();
double GetV(vector<Particle>, Propagator *);
double GetV(vector<Particle>);
double GetVCart(vector< vector <double> >);
string GetType();
CoordUtil* GetCoordUtil();
void Tokenize(const string&, vector<string>&, const string& = " ");
double vEquib; //in kcal/mole
std::string tinkPrmFileName;
CoordUtil* coordKeeper;
vector<double> wTinker;
};
#endif /* V_TINKER_H_ */