Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/***************************************************************************
File : Fit.cpp
Project : QtiPlot
--------------------------------------------------------------------
Copyright : (C) 2007 by Ion Vasilief
Email (use @ for *) : ion_vasilief*yahoo.fr
Description : Abstract base class for data analysis operations
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#include "Filter.h"
#include "LegendWidget.h"
#include "ColorBox.h"
#include "Table.h"
#include "FunctionCurve.h"
#include "PlotCurve.h"
#include "MultiLayer.h"
#include <QApplication>
#include <QMessageBox>
#include <QLocale>
#include <gsl/gsl_sort.h>
Filter::Filter( ApplicationWindow *parent, Graph *g, const QString& name)
: QObject( parent)
{
init();
setObjectName(name);
d_graph = g;
d_output_graph = g;
}
Filter::Filter( ApplicationWindow *parent, Table *t, const QString& name)
: QObject( parent, name)
{
init();
setObjectName(name);
d_table = t;
}
void Filter::init()
{
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of qtiplot's Filter is not ApplicationWindow as expected.");
}
d_n = 0;
d_curveColorIndex = 1;
d_tolerance = 1e-4;
d_points = 100;
d_max_iterations = 1000;
d_curve = 0;
d_prec = app->fit_output_precision;
d_init_err = false;
d_sort_data = true;
d_min_points = 2;
d_explanation = objectName();
d_graph = 0;
d_result_table = 0;
d_output_graph = 0;
d_graphics_display = true;
d_y_col_name = QString::null;
}
void Filter::setInterval(double from, double to)
{
if (!d_curve){
QMessageBox::critical(dynamic_cast<ApplicationWindow *>(parent()), tr("MantidPlot") + " - " + tr("Error"),
tr("Please assign a curve first!"));
return;
}
setDataFromCurve (d_curve->title().text(), from, to);
}
void Filter::setDataCurve(int curve, double start, double end)
{
if (d_n > 0)
{//delete previousely allocated memory
delete[] d_x;
delete[] d_y;
}
d_init_err = false;
d_curve = d_graph->curve(curve);
if (d_sort_data)
d_n = sortedCurveData(d_curve, start, end, &d_x, &d_y);
else
d_n = curveData(d_curve, start, end, &d_x, &d_y);
if (d_n == -1){
QMessageBox::critical(dynamic_cast<ApplicationWindow *>(parent()), tr("MantidPlot") + " - " + tr("Error"),
tr("Several data points have the same x value causing divisions by zero, operation aborted!"));
d_init_err = true;
return;
}else if (d_n < d_min_points){
QMessageBox::critical(dynamic_cast<ApplicationWindow *>(parent()), tr("MantidPlot") + " - " + tr("Error"),
tr("You need at least %1 points in order to perform this operation!").arg(d_min_points));
d_init_err = true;
return;
}
d_from = start;
d_to = end;
}
int Filter::curveIndex(const QString& curveTitle, Graph *g)
{
if (curveTitle.isEmpty()){
QMessageBox::critical(dynamic_cast<ApplicationWindow *>(parent()), tr("MantidPlot - Filter Error"),
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
tr("Please enter a valid curve name!"));
d_init_err = true;
return -1;
}
if (g){
d_graph = g;
d_output_graph = g;
}
if (!d_graph){
d_init_err = true;
return -1;
}
return d_graph->curveIndex(curveTitle);
}
bool Filter::setDataFromCurve(const QString& curveTitle, Graph *g)
{
int index = curveIndex(curveTitle, g);
if (index < 0){
d_init_err = true;
return false;
}
d_graph->range(index, &d_from, &d_to);
setDataCurve(index, d_from, d_to);
return true;
}
bool Filter::setDataFromCurve(const QString& curveTitle, double from, double to, Graph *g)
{
int index = curveIndex(curveTitle, g);
if (index < 0){
d_init_err = true;
return false;
}
setDataCurve(index, from, to);
return true;
}
void Filter::setColor(const QString& colorName)
{
QColor c = QColor(colorName);
if (colorName == "green")
c = QColor(Qt::green);
else if (colorName == "darkYellow")
c = QColor(Qt::darkYellow);
if (!ColorBox::isValidColor(c)){
QMessageBox::critical(dynamic_cast<ApplicationWindow *>(parent()), tr("MantidPlot - Color Name Error"),
tr("The color name '%1' is not valid, a default color (red) will be used instead!").arg(colorName));
d_curveColorIndex = 1;
return;
}
d_curveColorIndex = ColorBox::colorIndex(c);
}
void Filter::showLegend()
{
if (!d_output_graph)
return;
LegendWidget* legend = d_output_graph->legend();
LegendWidget* l = d_output_graph->newLegend(legendInfo());
if (legend)
l->move(QPoint(legend->x(), legend->y() + legend->height() + 20));
}
bool Filter::run()
{
if (d_init_err)
return false;
if (d_n < 0){
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of Filter is not ApplicationWindow as expected.");
}
QMessageBox::critical(app, tr("MantidPlot") + " - " + tr("Error"),
tr("You didn't specify a valid data set for this operation!"));
return false;
}
QApplication::setOverrideCursor(Qt::WaitCursor);
output();//data analysis and output
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of Filter is not ApplicationWindow as expected.");
}
app->updateLog(logInfo());
QApplication::restoreOverrideCursor();
return true;
}
void Filter::output()
{
QVarLengthArray<double> X(d_points), Y(d_points);
calculateOutputData(X.data(), Y.data()); //does the data analysis
addResultCurve(X.data(), Y.data());
}
int Filter::sortedCurveData(QwtPlotCurve *c, double start, double end, double **x, double **y)
{
if (!c)
return 0;
int i_start = 0, i_end = 0;
int n = curveRange(c, start, end, &i_start, &i_end);
(*x) = new double[n];
(*y) = new double[n];
double *xtemp = new double[n];
double *ytemp = new double[n];
int j=0;
for (int i = i_start; i <= i_end; i++){
xtemp[j] = c->x(i);
ytemp[j++] = c->y(i);
}
size_t *p = new size_t[n];
gsl_sort_index(p, xtemp, 1, n);
for (int i=0; i<n; i++){
(*x)[i] = xtemp[p[i]];
(*y)[i] = ytemp[p[i]];
}
delete[] xtemp;
delete[] ytemp;
delete[] p;
return n;
}
int Filter::curveData(QwtPlotCurve *c, double start, double end, double **x, double **y)
{
if (!c)
return 0;
int i_start = 0, i_end = 0;
int n = curveRange(c, start, end, &i_start, &i_end);
(*x) = new double[n];
(*y) = new double[n];
int j=0;
for (int i = i_start; i <= i_end; i++){
(*x)[j] = c->x(i);
(*y)[j++] = c->y(i);
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
return n;
}
int Filter::curveRange(QwtPlotCurve *c, double start, double end, int *iStart, int *iEnd)
{
if (!c)
return 0;
int n = c->dataSize();
int i_start = 0, i_end = n;
if (c->x(0) < c->x(n-1)){
for (int i = 0; i < n; i++){
if (c->x(i) >= start){
i_start = i;
break;
}
}
for (int i = n-1; i >= 0; i--){
if (c->x(i) <= end){
i_end = i;
break;
}
}
} else {
for (int i = 0; i < n; i++){
if (c->x(i) <= end){
i_start = i;
break;
}
}
for (int i = n-1; i >= 0; i--){
if (c->x(i) >= start){
i_end = i;
break;
}
}
}
*iStart = QMIN(i_start, i_end);
*iEnd = QMAX(i_start, i_end);
n = abs(i_end - i_start) + 1;
return n;
}
QwtPlotCurve* Filter::addResultCurve(double *x, double *y)
{
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of Filter is not ApplicationWindow as expected.");
}
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
QLocale locale = app->locale();
const QString tableName = app->generateUniqueName(QString(objectName()));
QString dataSet;
if (d_curve)
dataSet = d_curve->title().text();
else
dataSet = d_y_col_name;
d_result_table = app->newHiddenTable(tableName, d_explanation + " " + tr("of") + " " + dataSet, d_points, 2);
for (int i=0; i<d_points; i++){
d_result_table->setText(i, 0, locale.toString(x[i], 'e', app->d_decimal_digits));
d_result_table->setText(i, 1, locale.toString(y[i], 'e', app->d_decimal_digits));
}
DataCurve *c = 0;
if (d_graphics_display){
c = new DataCurve(d_result_table, tableName + "_1", tableName + "_2");
c->setData(x, y, d_points);
c->setPen(QPen(ColorBox::color(d_curveColorIndex), 1));
if (!d_output_graph)
d_output_graph = createOutputGraph()->activeGraph();
d_output_graph->insertPlotItem(c, Graph::Line);
d_output_graph->updatePlot();
}
return dynamic_cast<QwtPlotCurve*>(c);
}
void Filter::enableGraphicsDisplay(bool on, Graph *g)
{
d_graphics_display = on;
if (on){
if (g)
d_output_graph = g;
else
d_output_graph = createOutputGraph()->activeGraph();
}
}
MultiLayer * Filter::createOutputGraph()
{
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of Filter is not ApplicationWindow as expected.");
}
MultiLayer *ml = app->newGraph(objectName() + tr("Plot"));
d_output_graph = ml->activeGraph();
return ml;
}
bool Filter::setDataFromTable(Table *t, const QString& xColName, const QString& yColName, int startRow, int endRow)
{
d_init_err = true;
if (!t)
return false;
int xcol = t->colIndex(xColName);
int ycol = t->colIndex(yColName);
if (xcol < 0 || ycol < 0)
return false;
if (t->columnType(xcol) != Table::Numeric || t->columnType(ycol) != Table::Numeric)
return false;
startRow--; endRow--;
if (startRow < 0 || startRow >= t->numRows())
startRow = 0;
if (endRow < 0 || endRow >= t->numRows())
endRow = t->numRows() - 1;
int from = QMIN(startRow, endRow);
int to = QMAX(startRow, endRow);
int r = abs(to - from) + 1;
QVector<double> X(r), Y(r);
int size = 0;
for (int i = from; i<=to; i++ ){
QString xval = t->text(i, xcol);
QString yval = t->text(i, ycol);
if (!xval.isEmpty() && !yval.isEmpty()){
bool valid_data = true;
X[size] = t->locale().toDouble(xval, &valid_data);
Y[size] = t->locale().toDouble(yval, &valid_data);
if (valid_data)
size++;
}
}
if (size < d_min_points){
ApplicationWindow *app = dynamic_cast<ApplicationWindow *>(this->parent());
if (!app) {
throw std::logic_error("Parent of Filter is not ApplicationWindow as expected.");
}
QMessageBox::critical(app, tr("MantidPlot") + " - " + tr("Error"),
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
tr("You need at least %1 points in order to perform this operation!").arg(d_min_points));
return false;
}
if (d_n > 0){//delete previousely allocated memory
delete[] d_x;
delete[] d_y;
}
d_graph = 0;
d_curve = 0;
d_n = size;
d_init_err = false;
d_table = t;
d_y_col_name = t->colName(ycol);
X.resize(d_n);
Y.resize(d_n);
d_from = X[0];
d_to = X[d_n-1];
d_x = new double[d_n];
d_y = new double[d_n];
for (int i = 0; i < d_n; i++){
d_x[i] = X[i];
d_y[i] = Y[i];
}
if (d_sort_data){
size_t *p = new size_t[d_n];
gsl_sort_index(p, X.data(), 1, d_n);
for (int i=0; i<d_n; i++){
Roman Tolchenov
committed
d_x[i] = X[static_cast<int>(p[i])];
d_y[i] = Y[static_cast<int>(p[i])];