Class documentation of Concepts

Loading...
Searching...
No Matches
integral.hh
Go to the documentation of this file.
1
8#ifndef geomIntegral_hh
9#define geomIntegral_hh
10
11
12namespace concepts {
13
14 // ******************************************************* IntegrationCell **
15
25 public:
29 enum intFormType { ZERO, ONE, TWO, THREE };
30
34 struct intPoint {
35 Real3d coord;
36 Real intermediate;
37 };
38
41 virtual ~IntegrationCell() {}
56 virtual bool quadraturePoint(uint i, intPoint& p, intFormType form = ZERO,
57 bool localCoord = false) const = 0;
58 };
59
60} // namespace concepts
61
62#endif // geomIntegral_hh
IntegrationCell()
Constructor.
Definition integral.hh:40
virtual bool quadraturePoint(uint i, intPoint &p, intFormType form=ZERO, bool localCoord=false) const =0
double Real
Definition typedefs.hh:39
Set< F > makeSet(uint n, const F &first,...)
Definition set.hh:320