-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rho_HO.h
36 lines (30 loc) · 798 Bytes
/
Rho_HO.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
/*
* RhoHO.h
*
* Created on: May 17, 2012
* Author: dstuck
*/
#ifndef RHOHO_H_
#define RHOHO_H_
#include <math.h>
#include <iostream>
#include "Propagator.h"
#include "debug.h"
using namespace std;
class Rho_HO: public Propagator {
public:
Rho_HO(vector<double>, int, int=0);
Rho_HO(double, int);
virtual ~Rho_HO();
double GetRho(vector<Particle>, vector<Particle>, double);
double ModifyPotential(vector<Particle>);
double Estimate(vector<Particle>, vector<Particle>, double, int);
vector<double> GetSpringLength(vector<Particle>, double);
vector<double> GetLevyMean(Particle, Particle, double, double, int);
double GetLevySigma(double, double, int);
string GetType();
vector<double> omega;
int lowFrozModes;
int highFrozModes;
};
#endif /* RHOHO_H_ */