Select Git revision
plotdata.cpp
-
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.cpp 479 B
#include "plotdata.h"
PlotData::PlotData() :
m_dataLHO(360*PERIODS, 0.0),
m_dataLLO(360*PERIODS, 0.0),
m_dataVirgo(360*PERIODS, 0.0),
m_dataKAGRA(360*PERIODS, 0.0),
m_dataLI(360*PERIODS, 0.0)
{
m_colorLHO = "blue";
m_colorLLO = "red";
m_colorVirgo = "green";
m_colorKAGRA = "yellow";
m_colorLI = "magenta";
m_enabledLHO = true;
m_enabledLLO = true;
m_enabledVirgo = true;
m_enabledKAGRA = true;
m_enabledLI = true;
}