Skip to content
Snippets Groups Projects
Select Git revision
  • 1c349df9543c0ef7b793b1f321707e63d8c77aa7
  • master default protected
  • 72-improve-docs-for_optimal_setup
  • os-path-join
  • develop-GA
  • add-higher-spindown-components
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

semi_coherent_directed_follow_up.py

Blame
  • plotdata.h 647 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;
    
        double m_ampLHO;
        double m_ampLLO;
        double m_ampVirgo;
    
        double m_phiLHO;
        double m_phiLLO;
        double m_phiVirgo;
    
        double m_dtLHO;
        double m_dtLLO;
        double m_dtVirgo;
    
        QString m_colorLHO;
        QString m_colorLLO;
        QString m_colorVirgo;
    };
    
    #endif // PLOTDATA_H