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