dune-localfunctions  2.2.1
orthonormal.hh
Go to the documentation of this file.
1 #ifndef DUNE_ORTHONORMALFINITEELEMENT_HH
2 #define DUNE_ORTHONORMALFINITEELEMENT_HH
3 
8 
9 namespace Dune
10 {
26  template< unsigned int dimDomain, class D, class R,
27  class SF=R, class CF=SF >
29  : public GenericLocalFiniteElement< OrthonormalBasisFactory< dimDomain, SF, CF >,
30  DGLocalCoefficientsFactory< OrthonormalBasisFactory< dimDomain, SF, CF > >,
31  LocalL2InterpolationFactory< OrthonormalBasisFactory< dimDomain, SF, CF >,true > >
32  {
36  public:
37  using typename Base::Traits;
38 
42  unsigned int order ) DUNE_DEPRECATED
43  : Base(topologyId,order)
44  {}
45 
48  OrthonormalLocalFiniteElement ( const GeometryType &gt, unsigned int order )
49  : Base(gt, order)
50  {}
51  };
52 
53 }
54 
55 #endif