Select Git revision
-
Oliver Bock authored
* Otherwise they'll mess up the x axis (by piling up on it, spilling)
Oliver Bock authored* Otherwise they'll mess up the x axis (by piling up on it, spilling)
plotdata.h 1005 B
#ifndef PLOTDATA_H
#define PLOTDATA_H
#include <QObject>
#include <QVector>
#include <QString>
#include "common.h"
class PlotData : public QObject
{
Q_OBJECT
public:
PlotData();
// let's make these private and add getters/setters later :-p
QVector<double> m_dataLHO;
QVector<double> m_dataLLO;
QVector<double> m_dataVirgo;
QVector<double> m_dataKAGRA;
QVector<double> m_dataLI;
double m_ampLHO;
double m_ampLLO;
double m_ampVirgo;
double m_ampKAGRA;
double m_ampLI;
double m_phiLHO;
double m_phiLLO;
double m_phiVirgo;
double m_phiKAGRA;
double m_phiLI;
double m_dtLHO;
double m_dtLLO;
double m_dtVirgo;
double m_dtKAGRA;
double m_dtLI;
QString m_colorLHO;
QString m_colorLLO;
QString m_colorVirgo;
QString m_colorKAGRA;
QString m_colorLI;
bool m_enabledLHO;
bool m_enabledLLO;
bool m_enabledVirgo;
bool m_enabledKAGRA;
bool m_enabledLI;
};
#endif // PLOTDATA_H