Blame view

src/ParamOutputImpl/Plot/ParameterAxes.hh 6.25 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * ParameterAxes.hh
 *
 *  Created on: 21 nov. 2013
 *      Author: guillaume
 */

#ifndef PARAMETERAXES_HH_
#define PARAMETERAXES_HH_

#include <iostream>
#include <iterator>
#include <string>
#include <vector>

#include "SeriesProperties.hh"
#include "XSeriesProperties.hh"
1248af2b   Erdogan Furkan   Refactored, all w...
18
#include "HistogramSeriesProperties.hh"
fbe3c2bb   Benjamin Renard   First commit
19
20
#include "DrawingProperties.hh"
#include "SpectroProperties.hh"
793c4351   Hacene SI HADJ MOHAND   creation de class...
21
#include "SauvaudProperties.hh"
e257cfb9   Benjamin Renard   First implementat...
22
#include "IntervalsProperties.hh"
fbe3c2bb   Benjamin Renard   First commit
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "ColorSeriesProperties.hh"
#include "Parameter.hh"
#include "ParameterData.hh"

namespace plot {

/**
 * holds all properties related to a parameter.
 * series properties field is hidden in this class, because we have to check
 * for inclusion of the same serie (same index) twice.
 */
class ParameterAxes {
public:
	friend std::ostream& operator<<(std::ostream& out_,
			const ParameterAxes& prop_);
	/*
	 * Dumps properties for test.
	 */
	void dump(std::ostream& out_, std::string& prefix_);

	ParameterAxes() :
			_originalParamId(""),
			_defaultProperties(),
			_ySeriesProperties(),
05089f4a   Erdogan Furkan   #11376 - Done.
47
			_histogramSeriesProperties(),
fbe3c2bb   Benjamin Renard   First commit
48
			_spectroPropertiesPtr(nullptr),
5953671a   Erdogan Furkan   For now
49
			_sauvaudPropertiesPtr(nullptr),
e257cfb9   Benjamin Renard   First implementat...
50
			_intervalsPropertiesPtr(nullptr),
fbe3c2bb   Benjamin Renard   First commit
51
52
53
54
55
56
57
58
59
			_colorSeriesProperties()
	{

	}

	ParameterAxes(const std::string& _originalParamId) :
			_originalParamId(_originalParamId),
			_defaultProperties(),
			_ySeriesProperties(),
05089f4a   Erdogan Furkan   #11376 - Done.
60
			_histogramSeriesProperties(),
fbe3c2bb   Benjamin Renard   First commit
61
			_spectroPropertiesPtr(nullptr),
5953671a   Erdogan Furkan   For now
62
			_sauvaudPropertiesPtr(nullptr),
e257cfb9   Benjamin Renard   First implementat...
63
			_intervalsPropertiesPtr(nullptr),
fbe3c2bb   Benjamin Renard   First commit
64
65
66
67
68
69
70
71
72
			_colorSeriesProperties()
	{

	}

	ParameterAxes(const ParameterAxes& pParamAxes) :
			_originalParamId(pParamAxes._originalParamId),
			_defaultProperties(pParamAxes._defaultProperties),
			_ySeriesProperties(pParamAxes._ySeriesProperties),
05089f4a   Erdogan Furkan   #11376 - Done.
73
			_histogramSeriesProperties(pParamAxes._histogramSeriesProperties),
fbe3c2bb   Benjamin Renard   First commit
74
75
			_xSeriesProperties(pParamAxes._xSeriesProperties),
			_spectroPropertiesPtr(pParamAxes._spectroPropertiesPtr),
5953671a   Erdogan Furkan   For now
76
			_sauvaudPropertiesPtr(pParamAxes._sauvaudPropertiesPtr),
e257cfb9   Benjamin Renard   First implementat...
77
			_intervalsPropertiesPtr(pParamAxes._intervalsPropertiesPtr),
fbe3c2bb   Benjamin Renard   First commit
78
79
80
81
82
83
84
85
			_colorSeriesProperties(pParamAxes._colorSeriesProperties) {

	}

	ParameterAxes& operator=(const ParameterAxes& pParamAxes_) {
		_originalParamId = pParamAxes_._originalParamId;
		_defaultProperties = pParamAxes_._defaultProperties;
		_ySeriesProperties = pParamAxes_._ySeriesProperties;
05089f4a   Erdogan Furkan   #11376 - Done.
86
		_histogramSeriesProperties = pParamAxes_._histogramSeriesProperties;
fbe3c2bb   Benjamin Renard   First commit
87
88
		_xSeriesProperties = pParamAxes_._xSeriesProperties;
		_spectroPropertiesPtr = pParamAxes_._spectroPropertiesPtr;
5953671a   Erdogan Furkan   For now
89
		_sauvaudPropertiesPtr = pParamAxes_._sauvaudPropertiesPtr;
e257cfb9   Benjamin Renard   First implementat...
90
		_intervalsPropertiesPtr = pParamAxes_._intervalsPropertiesPtr;
fbe3c2bb   Benjamin Renard   First commit
91
92
93
94
95
96
97
98
99
100
101
102
103
104
		_colorSeriesProperties = pParamAxes_._colorSeriesProperties;
		return *this;
	}

	virtual ~ParameterAxes() {
	}

	/**
	 * add a new series properties. If a series with the same index
	 * already exist, it will be overridden.
	 * _index field of SerieProperties must have been properly set
	 * before calling this method.
	 * @param series properties to add.
	 */
2fc1f2f8   Benjamin Renard   Full rework for s...
105
	SeriesProperties* addYSerieProperties(const SeriesProperties&);
fbe3c2bb   Benjamin Renard   First commit
106
107

	/**
c46af5a8   Benjamin Renard   Implements multi ...
108
	 * adds a new X series.
fbe3c2bb   Benjamin Renard   First commit
109
110
111
112
113
114
115
116
	 * already exist, it will be overridden.
	 * _index field of SerieProperties must have been properly set
	 * before calling this method.
	 * @param series properties to add, with no drawing settings, just index and xAxis
	 */
	void addXSerieProperties(const XSeriesProperties&);

	/**
5953671a   Erdogan Furkan   For now
117
118
119
	 * adds a new histo series.
	 * @param series properties to add, with no drawing settings, just index and xAxis
	 */
1248af2b   Erdogan Furkan   Refactored, all w...
120
	void addHistogramSeriesProperties(std::shared_ptr<HistogramSeriesProperties> pHistogramProperties);
4c693aae   Erdogan Furkan   For now
121
122

	/**
fbe3c2bb   Benjamin Renard   First commit
123
124
125
	 * add a new spectro
	 */
	void addSpectroProperties(std::shared_ptr<SpectroProperties> pSPectroProperties);
793c4351   Hacene SI HADJ MOHAND   creation de class...
126
127
128
129
130
        
                    /**
	 * add a new SauvaudPlot
	 */
	void addSauvaudProperties(std::shared_ptr<SauvaudProperties> pSauvaudProperties);
fbe3c2bb   Benjamin Renard   First commit
131
132

	/**
e257cfb9   Benjamin Renard   First implementat...
133
134
135
136
137
	 * add a new intervals
	 */
	void addIntervalsProperties(std::shared_ptr<IntervalsProperties> pIntervalsProperties);

	/**
fbe3c2bb   Benjamin Renard   First commit
138
139
140
141
	 * add a new color serie
	 */
	void addColorSerieProperties(const ColorSeriesProperties&);

2fc1f2f8   Benjamin Renard   Full rework for s...
142
	std::vector<SeriesProperties>& getYSeriePropertiesList() {
fbe3c2bb   Benjamin Renard   First commit
143
144
145
		return _ySeriesProperties;
	}

c46af5a8   Benjamin Renard   Implements multi ...
146
147
148
149
150
151
	/**
	 * Get x serie properties by id
	 */
	XSeriesProperties& getXSeriePropertiesById(int id_);

	std::vector<XSeriesProperties>& getXSeriePropertiesList() {
fbe3c2bb   Benjamin Renard   First commit
152
153
154
155
156
157
		return _xSeriesProperties;
	}

	std::shared_ptr<SpectroProperties> getSpectroProperties() {
		return _spectroPropertiesPtr;
	}
793c4351   Hacene SI HADJ MOHAND   creation de class...
158
159
160
161
        
                    std::shared_ptr<SauvaudProperties> getSauvaudProperties() {
		return _sauvaudPropertiesPtr;
	}
fbe3c2bb   Benjamin Renard   First commit
162

e257cfb9   Benjamin Renard   First implementat...
163
164
165
166
	std::shared_ptr<IntervalsProperties> getIntervalsProperties() {
		return _intervalsPropertiesPtr;
	}

05089f4a   Erdogan Furkan   #11376 - Done.
167
168
169
170
171

	std::shared_ptr<HistogramSeriesProperties>& getHistogramSeriesPropertiesById(int id_);

	std::vector<std::shared_ptr<HistogramSeriesProperties>>& getHistogramSeriesPropertiesList(){return _histogramSeriesProperties;}

fbe3c2bb   Benjamin Renard   First commit
172
173
174
175
176
177
178
179
180
181
	std::vector<ColorSeriesProperties>& getColorSeriePropertiesList() {
		return _colorSeriesProperties;
	}

	/**
	 * Get the list of indexes used for a parameter
	 */
	std::vector<AMDA::Common::ParameterIndexComponent> getParamUsedIndexes(std::string paramId_);

	/**
fbe3c2bb   Benjamin Renard   First commit
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
     * Get color serie properties by id
     */
    ColorSeriesProperties& getColorSeriePropertiesById(int id_);

	DrawingProperties& getDefaultProperties() {
		return _defaultProperties;
	}

	void setDefaultProperties(const DrawingProperties& default_) {
		_defaultProperties = default_;
	}

	/**
	 * Original parameter Id
	 */
	std::string _originalParamId;

private:

	/**
	 * Common drawing properties
	 */
	DrawingProperties _defaultProperties;

	/**
	 * Y Series
	 */
2fc1f2f8   Benjamin Renard   Full rework for s...
209
	std::vector<SeriesProperties> _ySeriesProperties;
fbe3c2bb   Benjamin Renard   First commit
210
211

	/**
5953671a   Erdogan Furkan   For now
212
213
	 * Histo Series
	 */
05089f4a   Erdogan Furkan   #11376 - Done.
214
	std::vector<std::shared_ptr<HistogramSeriesProperties>> _histogramSeriesProperties;
5953671a   Erdogan Furkan   For now
215
	/**
fbe3c2bb   Benjamin Renard   First commit
216
217
	 * X Series
	 */
c46af5a8   Benjamin Renard   Implements multi ...
218
	std::vector<XSeriesProperties> _xSeriesProperties;
fbe3c2bb   Benjamin Renard   First commit
219
220
221
222
223

	/**
	 * Spectro
	 */
	std::shared_ptr<SpectroProperties> _spectroPropertiesPtr;
793c4351   Hacene SI HADJ MOHAND   creation de class...
224
225
226
227
228
        
                    /**
	 * Sauvaud
	 */
	std::shared_ptr<SauvaudProperties> _sauvaudPropertiesPtr;
fbe3c2bb   Benjamin Renard   First commit
229
230

	/**
e257cfb9   Benjamin Renard   First implementat...
231
232
233
	 * Intervals
	 */
	std::shared_ptr<IntervalsProperties> _intervalsPropertiesPtr;
e257cfb9   Benjamin Renard   First implementat...
234
	/**
fbe3c2bb   Benjamin Renard   First commit
235
236
237
238
239
240
241
242
243
	 * Color Series
	 */
	std::vector<ColorSeriesProperties> _colorSeriesProperties;
};

typedef std::vector<ParameterAxes> ParameterAxesList;

} /* namespace plot */
#endif /* PARAMETERAXES_HH_ */