Class documentation of Concepts

Loading...
Searching...
No Matches
laguerre.hh
Go to the documentation of this file.
1
10#ifndef laguerre_hh
11#define laguerre_hh
12
13#include "basics/typedefs.hh"
14#include "shapefunction.hh"
15
16namespace concepts {
17
18 // ************************************************************** Laguerre **
19
29 class Laguerre : public ShapeFunction1D<Real> {
30 public:
37 Laguerre(const int P, const Real* xP, const int NxP);
38
39 ~Laguerre();
40 protected:
41 virtual std::ostream& info(std::ostream& os) const;
42 };
43
44 // ********************************************************* LaguerreBasis **
45
66 template<int mode>
67 class LaguerreBasis : public ShapeFunction1D<Real> {
68 public:
75 LaguerreBasis(const int P, const Real* xP, const int NxP);
76
78 protected:
79 virtual std::ostream& info(std::ostream& os) const;
80 };
81
82} // namespace concepts
83
84#endif // laguerre_hh
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
LaguerreBasis(const int P, const Real *xP, const int NxP)
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
Laguerre(const int P, const Real *xP, const int NxP)
double Real
Definition typedefs.hh:39
Set< F > makeSet(uint n, const F &first,...)
Definition set.hh:320