CosinusProvider.cpp
30 lines
| 835 B
| text/x-c
|
CppLexer
Alexandre Leroux
|
r128 | #include "CosinusProvider.h" | ||
#include <Data/DataProviderParameters.h> | ||||
#include <Data/ScalarSeries.h> | ||||
r135 | #include <cmath> | |||
Alexandre Leroux
|
r128 | std::unique_ptr<IDataSeries> | ||
CosinusProvider::retrieveData(const DataProviderParameters ¶meters) const | ||||
{ | ||||
// Gets the timerange from the parameters | ||||
auto start = parameters.m_TStart; | ||||
auto end = parameters.m_TEnd; | ||||
// We assure that timerange is valid | ||||
if (end < start) { | ||||
std::swap(start, end); | ||||
} | ||||
// Generates scalar series containing cosinus values (one value per second) | ||||
auto scalarSeries | ||||
Alexandre Leroux
|
r177 | = std::make_unique<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{}); | ||
Alexandre Leroux
|
r128 | |||
Alexandre Leroux
|
r137 | auto dataIndex = 0; | ||
for (auto time = start; time < end; ++time, ++dataIndex) { | ||||
Alexandre Leroux
|
r128 | scalarSeries->setData(dataIndex, time, std::cos(time)); | ||
} | ||||
return scalarSeries; | ||||
} | ||||