-
Notifications
You must be signed in to change notification settings - Fork 0
/
System.h
39 lines (35 loc) · 959 Bytes
/
System.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
/*
* System.h
*
* Created on: May 7, 2012
* Author: dstuck
*/
#ifndef SYSTEM_H_
#define SYSTEM_H_
#include "Particle.h"
#include <vector>
#include <string>
class PhysicsUtil;
class System {
public:
System();
virtual ~System();
// virtual void CalcEnergy() = 0; //Used internally
// virtual void CalcPotential() = 0; //Used internally
virtual void Move(vector<double>, double, int, int levyPart = 1) = 0;
virtual void Forget() = 0;
virtual void Undo() = 0;
virtual void Reset() = 0;
virtual double GetWeight() = 0;
virtual double EstimatorE() = 0;
virtual double EstimatorAnharmonicV() = 0;
virtual double GetOldWeight() = 0;
virtual vector< vector<Particle> > GetParticle() = 0;
virtual double Debug() = 0;
virtual double GetHarmonicE() = 0;
virtual void WritePartToFile(string) = 0;
virtual string GetVType() = 0;
virtual string GetRhoType() = 0;
virtual PhysicsUtil* GetPhysics() = 0;
};
#endif /* SYSTEM_H_ */