##// END OF EJS Templates
Completed README with basic informations....
Completed README with basic informations. Added SciQLop logo. Added GPLv3 license file. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r177:e7b5abd4403a
r220:da92dd478eb7
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
r120 #include "CosinusProvider.h"
#include <Data/DataProviderParameters.h>
#include <Data/ScalarSeries.h>
Add cmath header missing
r127 #include <cmath>
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r120 std::unique_ptr<IDataSeries>
CosinusProvider::retrieveData(const DataProviderParameters &parameters) const
{
Add SqpDateTime struct
r177 auto dateTime = parameters.m_Time;
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r120 // Gets the timerange from the parameters
Add SqpDateTime struct
r177 auto start = dateTime.m_TStart;
auto end = dateTime.m_TEnd;
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r120
// 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...
r164 = 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
r120
Alexandre Leroux
Add int data index in CosinusProvider
r129 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
r120 scalarSeries->setData(dataIndex, time, std::cos(time));
}
return scalarSeries;
}