Blame view

src/ParamOutputImpl/Plot/InstantPlot/PlotFunction.hh 6.26 KB
99ff615c   Menouard AZIB   Change nbEchantil...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#ifndef PLOTFUNCTION_HH_
#define PLOTFUNCTION_HH_

// includes boost
#include <boost/shared_ptr.hpp>

#include "NodeCfg.hh"
#include "PanelPlotOutput.hh"
#include "PlPlotUtil.hh"
#include "PlotFunctionNode.hh"
#include "plotFunctionElements/Abscisse.hh"
#include <climits>

#include "DefaultTimeAxisDecorator.hh"

#include "TimeAxisDecorator.hh"

#include "plplot/plplot.h"
#include "plplot/plplotP.h"
#include "plplot/plstream.h"
#include <map>

#include "plplot/plstream.h"

extern "C"
{
#include <plplot/qsastime.h>
}

5a638eb1   Menouard AZIB   Adding comments
31
32
33
34
/**
 * @brief Id pour l'axe X qui sera crée
 *
 */
99ff615c   Menouard AZIB   Change nbEchantil...
35
#define X_AXIS_ID "x_axis_id"
5a638eb1   Menouard AZIB   Adding comments
36
37
38
39
/**
 * @brief Id pour l'axe Y qui sera crée
 *
 */
99ff615c   Menouard AZIB   Change nbEchantil...
40
41
42
43
44
45
46
47
#define Y_AXIS_ID ""

namespace plot
{

    class PlotFunction : public PanelPlotOutput
    {
    public:
5a638eb1   Menouard AZIB   Adding comments
48
49
50
51
        /**
         * @brief enum to represent the type of fucntion to apply for plotfunction feature
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
52
53
54
        enum Function
        {
            NONE,
5a638eb1   Menouard AZIB   Adding comments
55
            AVG,
99ff615c   Menouard AZIB   Change nbEchantil...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
            FFT,
            SUM
        };

        PlotFunction(AMDA::Parameters::ParameterManager &manager,
                     boost::shared_ptr<Panel> panel, TimeAxisDecorator *timeAxisDecorator = new DefaultTimeAxisDecorator());
        virtual ~PlotFunction();

        /**
         * @overload plot::PanelPlotOutput
         */
        virtual const std::string typeName()
        {
            return PlotFunction_NODENAME;
        }

99ff615c   Menouard AZIB   Change nbEchantil...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
        void setAbscisse(Abscisse abscisse_)
        {
            abscisse = abscisse_;
        };

        Abscisse getAbscisse()
        {
            return abscisse;
        };

        Function getFunction()
        {
            return function;
        };

        void setFunction(Function function_)
        {
            function = function_;
        };

347ee32b   Menouard AZIB   Change ParamNbPoi...
92
        void setParamsNbPoints(std::vector<std::string> paramsNbPoints_)
99ff615c   Menouard AZIB   Change nbEchantil...
93
        {
347ee32b   Menouard AZIB   Change ParamNbPoi...
94
            paramsNbPoints = paramsNbPoints_;
99ff615c   Menouard AZIB   Change nbEchantil...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
        };

        void setAbscisseScale(Axis::Scale scale)
        {
            abscisseScale = scale;
        };

        Axis::Scale getAbscisseScale()
        {
            return abscisseScale;
        };

        Axis::Scale getOrdonneeScale()
        {
            return ordonneeScale;
        };

        void setOrdonneeScale(Axis::Scale scale)
        {
            ordonneeScale = scale;
        };
        static QSASConfig *qsasconfig;

        void setTimeAxisDecorator(std::shared_ptr<TimeAxisDecorator> pDecorator_)
        {
            _xdecoratorPtr = pDecorator_;
        }

        std::shared_ptr<TimeAxisDecorator> getTimeAxisDecorator()
        {
            return _xdecoratorPtr;
        }

    protected:
        /**
         *@brief Draw the serie of a parameter component on plot.
         */
        virtual void
        drawSeries(double startDate, double stopDate, int intervalIndex, std::string pParamId,
                   SeriesProperties &pSerie,
                   AMDA::Common::ParameterIndexComponent pParamIndex,
                   ParameterAxes &param, bool moreThanOneSerieForAxis);

        virtual void preparePlotArea(double startTime, double stopTime, int intervalIndex);
        /**
         * @brief Get original id of the concerned parameter (for the plot) then add it to the usedParametersId_ and store it in originalParamId
         *
         * @param usedParametersId_
         */
        virtual void createParameters(std::list<std::string> &usedParametersId_);
        /**
         * @brief draw the plot for the current time interval
         */
        virtual bool draw(double startTime, double stopTime, int intervalIndex,
                          bool isFirstInterval, bool isLastInterval);

99ff615c   Menouard AZIB   Change nbEchantil...
151
152
153
    private:
        void configureSeriesAxis();
        void configureAxisLegend();
5a638eb1   Menouard AZIB   Adding comments
154
155
156
157
158
159
160
        /**
         * @brief Afficher sur le plot the starting date
         *
         * @param _timeFormat le format
         * @param startTime le start time envoyé depuis le l'ihm
         * @param stopTime le stop time envoyé depuis le l'ihm
         */
99ff615c   Menouard AZIB   Change nbEchantil...
161
        void drawStartDate(std::string _timeFormat, double startTime, double stopTime);
5a638eb1   Menouard AZIB   Adding comments
162
163
164
165
        /**
         * @brief Créer un axe Y pour accueillir les valeurs calculées de l'axe Y
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
166
        void createYAxis();
5a638eb1   Menouard AZIB   Adding comments
167
168
169
170
        /**
         * @brief Créer un axe X pour accueillir les valeurs calculées de l'axe X
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
171
        void createXAxis();
5a638eb1   Menouard AZIB   Adding comments
172
173
174
175
176
177
        /**
         * @brief Get the Min Max de xValuesMap et yValuesMap
         *
         * @param minToFill la variable qui store la valeur minimale
         * @param maxToFill la variable qui store la valeur maximale
         */
99ff615c   Menouard AZIB   Change nbEchantil...
178
        void getMinMax(std::map<std::string, std::vector<double>>, double *minToFill, double *maxToFill);
5a638eb1   Menouard AZIB   Adding comments
179
180
181
182
183
184
185
186
187
        /**
         * @brief Appliquer le plotfunction soit FFT, SUM, ou AVG pour chaque pseudo-paramètre
         *
         * @param pParamIndex index of pseudo paramètre
         * @param ParameterData qui contient toute les données des paramètres
         * @param id id pseudo param
         * @param param_id id du paramètre
         */
        void compute(AMDA::Common::ParameterIndexComponent pParamIndex, plot::ParameterData data, std::string id, std::string param_id);
99ff615c   Menouard AZIB   Change nbEchantil...
188

5a638eb1   Menouard AZIB   Adding comments
189
190
191
192
        /**
         * @brief Une map pour stocker les valeurs calculées de l'axe X associés aux pseudo paramètres crées localement
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
193
        std::map<std::string, std::vector<double>> xValuesMap;
5a638eb1   Menouard AZIB   Adding comments
194
195
196
197
        /**
         * @brief Une map pour stocker les valeurs calculées de l'axe Y associés aux pseudo paramètres crées localement
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
198
        std::map<std::string, std::vector<double>> yValuesMap;
5a638eb1   Menouard AZIB   Adding comments
199
200
201
202
        /**
         * @brief Type de function envoyée par l'IHM
         *  @see Function
         */
99ff615c   Menouard AZIB   Change nbEchantil...
203
        Function function;
5a638eb1   Menouard AZIB   Adding comments
204
205
206
207
        /**
         * @brief Un vecteur qui associe l'id du vrai paramètre et le nb points choisi par l'ihm pour appliquer FFT
         *
         */
347ee32b   Menouard AZIB   Change ParamNbPoi...
208
        std::vector<std::string> paramsNbPoints;
5a638eb1   Menouard AZIB   Adding comments
209
210
211
212
213
        /**
         * @brief Type d'abscisse en cas de FFT
         * @see Abscisse
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
214
        Abscisse abscisse;
5a638eb1   Menouard AZIB   Adding comments
215
216
217
218
        /**
         * @brief Scale of abscisse
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
219
        Axis::Scale abscisseScale;
5a638eb1   Menouard AZIB   Adding comments
220
221
222
223
        /**
         * @brief Scale for ordonnée
         *
         */
99ff615c   Menouard AZIB   Change nbEchantil...
224
225
        Axis::Scale ordonneeScale;
        std::shared_ptr<TimeAxisDecorator> _xdecoratorPtr;
99ff615c   Menouard AZIB   Change nbEchantil...
226
227
228
    };
}
#endif