valSPH
 All Classes Files Functions Variables
GaussianKernel.h
Go to the documentation of this file.
1 
10 #ifndef __GaussianKernel_h__
11 #define __GaussianKernel_h__
12 
13 
14 #include <vector>
15 
16 #include "Kernel.h"
17 
18 
19 using namespace std;
20 
21 
22 class GaussianKernel : public Kernel {
23 
24 
25  private:
26 
27 
28  public:
29 
30 
34  GaussianKernel ();
35 
36 
46  double dAlphaEvaluate (vector<int> alpha, vector<double> q, double h);
47 
48 
52  ~GaussianKernel ();
53 
54 
55 };
56 
57 
58 #endif