Blame view

src/ParamOutputImpl/Plot/SeriesProperties.hh 5.17 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SeriesProperties.hh
 *
 *  Created on: Dec 3, 2013
 *      Author: amdadev
 */

#ifndef SERIESPROPERTIES_HH_
#define SERIESPROPERTIES_HH_

#include <iostream>
#include <cmath>
#include <string>

#include "DrawingProperties.hh"
#include "ParameterIndexesTool.hh"
2fc1f2f8   Benjamin Renard   Full rework for s...
17
#include "ParameterData.hh"
fbe3c2bb   Benjamin Renard   First commit
18
19
20
21
22
23
24
25
26
27
28

namespace plot {

/**
 * Drawing properties for a parameter series.Each parameter series
 * depict one parameter dimension (thus for a scalar parameter there should
 * be only one series). Index field of the series indicates the related parameter
 * dimension (starting at 0).
 */
class SeriesProperties: public DrawingProperties {
public:
319cf057   Benjamin Renard   Fix orbitserie in...
29
	static int AUTO_SERIES_ID;
fbe3c2bb   Benjamin Renard   First commit
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

	friend std::ostream& operator<<(std::ostream& out_,
			const SeriesProperties& lprop_);

	/*
	 * @brief Dumps properties for test.
	 */
	void dump(std::ostream& out_, std::string& prefix_);

	SeriesProperties() :
			DrawingProperties(),
			_index(-1,-1),
			_paramId(""),
			_hasXAxis(true),
			_hasYAxis(true),
			_hasZAxis(false),
			_colorSerieId(-1),
c46af5a8   Benjamin Renard   Implements multi ...
47
			_xId(-1),
fbe3c2bb   Benjamin Renard   First commit
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
			_colorParamId(""),
			_id(-1),
			_computeExpression(""),
			_computeExpressionName("")
	{
	}

	SeriesProperties(const DrawingProperties& ref_) :
			DrawingProperties(ref_),
			_index(-1,-1),
			_paramId(""),
			_hasXAxis(true),
			_hasYAxis(true),
			_hasZAxis(false),
			_colorSerieId(-1),
c46af5a8   Benjamin Renard   Implements multi ...
63
			_xId(-1),
fbe3c2bb   Benjamin Renard   First commit
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
			_colorParamId(""),
			_id(-1),
			_computeExpression(""),
			_computeExpressionName("")
	{
	}

	SeriesProperties(const SeriesProperties& pParamDrawingProperties_) :
			DrawingProperties(pParamDrawingProperties_),
			_index(pParamDrawingProperties_._index),
			_paramId(pParamDrawingProperties_._paramId),
			_hasXAxis(pParamDrawingProperties_._hasXAxis),
			_hasYAxis(pParamDrawingProperties_._hasYAxis),
			_hasZAxis(pParamDrawingProperties_._hasZAxis),
			_colorSerieId(pParamDrawingProperties_._colorSerieId),
c46af5a8   Benjamin Renard   Implements multi ...
79
			_xId(pParamDrawingProperties_._xId),
fbe3c2bb   Benjamin Renard   First commit
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
			_colorParamId(pParamDrawingProperties_._colorParamId),
			_id(pParamDrawingProperties_._id),
			_computeExpression(pParamDrawingProperties_._computeExpression),
			_computeExpressionName(pParamDrawingProperties_._computeExpressionName)
	{
	}

	SeriesProperties& operator=(const SeriesProperties& ref_) {
		DrawingProperties::operator=(ref_);
		_index = ref_._index;
		_paramId  = ref_._paramId;
		_hasYAxis = ref_._hasYAxis;
		_hasXAxis = ref_._hasXAxis;
		_hasZAxis = ref_._hasZAxis;
		_colorSerieId = ref_._colorSerieId;
c46af5a8   Benjamin Renard   Implements multi ...
95
		_xId = ref_._xId;
fbe3c2bb   Benjamin Renard   First commit
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
151
152
153
		_colorParamId = ref_._colorParamId;
		_id		  = ref_._id;
		_computeExpression	= ref_._computeExpression;
		_computeExpressionName = ref_._computeExpressionName;
		return *this;
	}

	virtual ~SeriesProperties() {
	}

	void setIndex(AMDA::Common::ParameterIndexComponent i_) {
		_index = i_;
	}

	AMDA::Common::ParameterIndexComponent getIndex() const {
		return _index;
	}

	std::string getParamId(){
		return _paramId;
	}

	void setParamId(std::string paramId_) {
		_paramId = paramId_;
	}

	bool hasXAxis() const {
		return _hasXAxis;
	}

	void setXAxis(bool hasXAxis) {
		_hasXAxis = hasXAxis;
	}

	bool hasYAxis() const {
		return _hasYAxis;
	}

	void setYAxis(bool hasYAxis) {
		_hasYAxis = hasYAxis;
	}

	bool hasZAxis() const {
		return _hasZAxis;
	}

	void setZAxis(bool hasZAxis) {
		_hasZAxis = hasZAxis;
	}

	int getColorSerieId() const {
		return _colorSerieId;
	}

	void setColorSerieId(int colorSerieId) {
		_colorSerieId = colorSerieId;
	}

c46af5a8   Benjamin Renard   Implements multi ...
154
155
156
157
158
159
160
161
	int getXId() const {
		return _xId;
	}

	void setXId(int xId) {
		_xId = xId;
	}

fbe3c2bb   Benjamin Renard   First commit
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
	std::string getColorParamId(void) {
		return _colorParamId;
	}

	void setColorParamId(std::string colorParamId) {
		_colorParamId = colorParamId;
	}

	int getId() const {
		return _id;
	}

	void setId(int id) {
		_id = id;
	}

	const std::string& getComputeExpression() const {
		return _computeExpression;
	}

	void setComputeExpression(const std::string& computeExpression) {
		_computeExpression = computeExpression;
	}

	const std::string& getComputeExpressionName() const {
		return _computeExpressionName;
	}

	void setComputeExpressionName(const std::string& computeExpressionName) {
		_computeExpressionName = computeExpressionName;
	}

2fc1f2f8   Benjamin Renard   Full rework for s...
194
195
	std::vector<AMDA::Common::ParameterIndexComponent> getIndexList(std::map<std::string, ParameterData> *pParameterValues);

fbe3c2bb   Benjamin Renard   First commit
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
private:

	/**
	 * @brief Series index definition
	 */
	AMDA::Common::ParameterIndexComponent _index;

	/**
	 * @brief Related ParamId
	 */
	std::string _paramId;

	/**
	 * @brief Flag that indicates the serie has X Axis
	 */
	bool _hasXAxis;

	/**
	 * @brief Flag that indicates the serie has Y Axis (tickplot has no Y axis)
	 */
	bool _hasYAxis;

	/**
	 * @brief Flag that indicates the serie has Z Axis (ie color axis)
	 */
	bool _hasZAxis;

	/**
	 * @brief Associated Color Serie identifier
	 */
	int _colorSerieId;

	/**
c46af5a8   Benjamin Renard   Implements multi ...
229
230
231
232
233
	 * @brief Associated X Serie identifier
	 */
	int _xId;

	/**
fbe3c2bb   Benjamin Renard   First commit
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
	 * @bried Related color param id
	 */
	std::string _colorParamId;

	/**
	 * @brief Serie identifier used by the fill element
	 */
	int _id;

	/**
	 * Compute expression used to set expression results as x values
	 * instead of parameter index
	 */
	std::string _computeExpression;

	/**
	 * Name of the compute expression.
	 * Used for legend axis
	 */
	std::string _computeExpressionName;
};

} /* namespace plot */

#endif /* SERIESPROPERTIES_HH_ */