Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef DISPERSIONLIMITLAYER_H
00028 #define DISPERSIONLIMITLAYER_H
00029
00030 #include <QGpCoreTools.h>
00031 #include <SciFigs.h>
00032
00033 #include "QGpGuiWaveDLLExport.h"
00034
00035 namespace QGpGuiWave {
00036
00037 class QGPGUIWAVE_EXPORT DispersionLimitLayer : public LineLayer
00038 {
00039 Q_OBJECT
00040 public:
00041 DispersionLimitLayer(AxisWindow * parent);
00042 ~DispersionLimitLayer();
00043
00044 void setFrequencySampling(const SamplingParameters& fparam);
00045 void setConstantWaveNumber(int curveIndex, double k);
00046
00047 void addArrayLimits();
00048 public slots:
00049 void setArrayKmin(double k);
00050 void setArrayKmax(double k);
00051 private:
00052 Curve<Point>& curve(int index);
00053 };
00054
00055 }
00056
00057 #endif // DISPERSIONLIMITLAYER_H