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