@@ -0,0 +1,28 | |||
|
1 | #ifndef SCIQLOP_SCALARSERIES_H | |
|
2 | #define SCIQLOP_SCALARSERIES_H | |
|
3 | ||
|
4 | #include <Data/DataSeries.h> | |
|
5 | ||
|
6 | /** | |
|
7 | * @brief The ScalarSeries class is the implementation for a data series representing a scalar. | |
|
8 | */ | |
|
9 | class ScalarSeries : public DataSeries<1> { | |
|
10 | public: | |
|
11 | /** | |
|
12 | * Ctor | |
|
13 | * @param size the number of data the series will hold | |
|
14 | * @param xAxisUnit x-axis unit | |
|
15 | * @param valuesUnit values unit | |
|
16 | */ | |
|
17 | explicit ScalarSeries(int size, const QString &xAxisUnit, const QString &valuesUnit); | |
|
18 | ||
|
19 | /** | |
|
20 | * Sets data for a specific index. The index has to be valid to be effective | |
|
21 | * @param index the index to which the data will be set | |
|
22 | * @param x the x-axis data | |
|
23 | * @param value the value data | |
|
24 | */ | |
|
25 | void setData(int index, double x, double value) noexcept; | |
|
26 | }; | |
|
27 | ||
|
28 | #endif // SCIQLOP_SCALARSERIES_H |
@@ -0,0 +1,13 | |||
|
1 | #include <Data/ScalarSeries.h> | |
|
2 | ||
|
3 | ScalarSeries::ScalarSeries(int size, const QString &xAxisUnit, const QString &valuesUnit) | |
|
4 | : DataSeries{std::make_shared<ArrayData<1> >(size), xAxisUnit, | |
|
5 | std::make_shared<ArrayData<1> >(size), valuesUnit} | |
|
6 | { | |
|
7 | } | |
|
8 | ||
|
9 | void ScalarSeries::setData(int index, double x, double value) noexcept | |
|
10 | { | |
|
11 | xAxisData()->setData(index, x); | |
|
12 | valuesData()->setData(index, value); | |
|
13 | } |
General Comments 0
You need to be logged in to leave comments.
Login now