File indexing completed on 2026-06-02 08:48:22
0001 #ifndef GAUSSLEGENDRESEST_INTEGRATOR_1D_H_
0002 #define GAUSSLEGENDRESEST_INTEGRATOR_1D_H_
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "QuadratureIntegrator1D.h"
0013
0014 namespace NumA {
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 class GaussLegendreSeStIntegrator1D: public QuadratureIntegrator1D {
0025 public:
0026
0027
0028
0029
0030 GaussLegendreSeStIntegrator1D(unsigned int N = 50);
0031
0032
0033
0034 virtual ~GaussLegendreSeStIntegrator1D();
0035
0036 virtual void setN(unsigned int n);
0037
0038 virtual GaussLegendreSeStIntegrator1D* clone() const;
0039
0040 protected:
0041
0042
0043
0044
0045
0046 GaussLegendreSeStIntegrator1D(const GaussLegendreSeStIntegrator1D &other);
0047 void setNodesAndWeights();
0048 };
0049
0050 }
0051
0052 #endif