##// END OF EJS Templates
Merge branch 'feature/TimeWidgetInUse' into develop
Merge branch 'feature/TimeWidgetInUse' into develop

File last commit:

r191:e7b5abd4403a
r194:435054a2a67e merge
Show More
CosinusProvider.cpp
32 lines | 871 B | text/x-c | CppLexer
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 #include "CosinusProvider.h"
#include <Data/DataProviderParameters.h>
#include <Data/ScalarSeries.h>
Add cmath header missing
r135 #include <cmath>
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 std::unique_ptr<IDataSeries>
CosinusProvider::retrieveData(const DataProviderParameters &parameters) const
{
Add SqpDateTime struct
r191 auto dateTime = parameters.m_Time;
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 // Gets the timerange from the parameters
Add SqpDateTime struct
r191 auto start = dateTime.m_TStart;
auto end = dateTime.m_TEnd;
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128
// 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
Replaces QString unit by a new struct...
r177 = std::make_unique<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{});
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128
Alexandre Leroux
Add int data index in CosinusProvider
r137 auto dataIndex = 0;
for (auto time = start; time < end; ++time, ++dataIndex) {
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 scalarSeries->setData(dataIndex, time, std::cos(time));
}
return scalarSeries;
}