Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
minwigglegraphlayouter.h
1 #ifndef MINWIGGLEGRAPHLAYOUTER_H
2 #define MINWIGGLEGRAPHLAYOUTER_H
3 
4 #include "graphlayouter.h"
5 
10 {
11  Q_OBJECT
12  Q_INTERFACES(INamedObject)
13 
14 public:
15  MinWiggleGraphLayouter(QObject *parent);
17 
21  QString GetName() { return "MinWiggle"; }
22 
23 private:
24  void calculateBaseLine(DataSet& dataset, QVector<double>& baseline);
25 
26 };
27 
28 #endif // MINWIGGLEGRAPHLAYOUTER_H
The data set.
Definition: dataset.h:85
Derived classes provide layouting functionality.
Definition: graphlayouter.h:11
QString GetName()
Gets the name of the algorithm to display in the GUI.
Definition: minwigglegraphlayouter.h:21
Class describes a layouting algorithm which minimizes the sum of squares of the layer slopes at each ...
Definition: minwigglegraphlayouter.h:9
Interface for objects which have a name.
Definition: namedobject.h:9