spatial_reconstruction1d.hpp
Go to the documentation of this file.
1 
6 #ifndef SPATIAL_RECONSTRUCTION_1D_HPP
7 #define SPATIAL_RECONSTRUCTION_1D_HPP 1
8 
9 #include <vector>
10 #include "../common/hydrodynamic_variables.hpp"
11 
12 using std::vector;
13 
16 {
17 public:
18 
30  virtual Primitive operator()
31  (vector<double> const& vp,
32  vector<Primitive> const& hv,
33  double interface_speed,
34  size_t i, int dir,double dt) const = 0;
35 
36  virtual ~SpatialReconstruction1D(void);
37 };
38 
39 #endif // SPATIAL_RECONSTRUCTION_1D_HPP
Base class for spatial reconstruction.
Primitive hydrodynamic variables.