Skip to content
Snippets Groups Projects
Select Git revision
  • antenna-patterns
  • qt5-qopenglwidget
  • license-demo
  • master default protected
  • isolated
  • isolated-fixedprofile
  • release_1.1
  • press-conference
  • rim-only
  • release_1.0
10 results

plotdata.cpp

Blame
  • 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;
    }