-
Notifications
You must be signed in to change notification settings - Fork 0
/
V_QChem.h
54 lines (48 loc) · 1.14 KB
/
V_QChem.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* V_QChem.h
*
* Created on: June 23, 2014
* Author: dstuck
*/
#ifndef V_QCHEM_H_
#define V_QCHEM_H_
#include "CallTinker.h"
#include "CoordUtil.h"
#include "debug.h"
#include "Potential.h"
#include "Propagator.h"
#include "Particle.h"
#include "Rho_Free.h"
#include "V_UCHO.h"
#include <math.h>
#include <iostream>
#include <vector>
#include <fstream>
#include <sstream>
//#include <algorithm>
using namespace std;
class V_QChem: public Potential {
public:
V_QChem(CoordUtil*, CoordUtil*, double, double, int, int);
virtual ~V_QChem();
double GetV(vector<Particle>, Propagator *);
double GetV(vector<Particle>);
string GetType();
CoordUtil* GetCoordUtil();
double GetVHO(vector<Particle>);
void Tokenize(const string&, vector<string>&, const string& = " ");
bool doubleTI;
double vEquib; //in kcal/mole
CoordUtil* coordKeeper;
CoordUtil* tinkerCoords;
vector<double> wQChem;
ofstream inFile;
V_UCHO harmV;
int charge;
int spin;
//DES Temp
int tempNum; //TODO: Delete this
ofstream qchemFile; //TODO: Delete this
ofstream qharmFile; //TODO: Delete this
};
#endif /* V_QCHEM_H_ */