Toast++  1.0.2 (r.539)
Forward and inverse modelling in optical tomography
raster_hb.h
1 // -*-C++-*-
2 
3 #ifndef __RASTER_HB_H
4 #define __RASTER_HB_H
5 
15 class STOASTLIB Raster_HanningBlob: public Raster_Blob {
16 public:
17  Raster_HanningBlob (const IVector &_bdim, const IVector &_gdim, Mesh *mesh,
18  double _sup, RDenseMatrix *bb = 0);
19 
20 protected:
21  double Value_nomask (const Point &p, int i, bool is_solidx=true) const;
22 
23 private:
24  double fac, a2, scale;
25 };
26 
27 #endif // !__RASTER_HB_H
Generic blob basis representation.
Definition: raster_bl.h:17
Finite-element mesh management.
Definition: mesh.h:145
Definition: point.h:18
virtual double Value_nomask(const Point &p, int i, bool is_solidx=true) const =0
Value of basis function b_i at point p This does not check for mesh support.
Definition: raster_hb.h:15