COSMOS core  1.0.2 (beta)
Comprehensive Open-architecture Solution for Mission Operations Systems
eci2kep_test.h
Go to the documentation of this file.
1 /********************************************************************
2 * Copyright (C) 2015 by Interstel Technologies, Inc.
3 * and Hawaii Space Flight Laboratory.
4 *
5 * This file is part of the COSMOS/core that is the central
6 * module for COSMOS. For more information on COSMOS go to
7 * <http://cosmos-project.com>
8 *
9 * The COSMOS/core software is licenced under the
10 * GNU Lesser General Public License (LGPL) version 3 licence.
11 *
12 * You should have received a copy of the
13 * GNU Lesser General Public License
14 * If not, go to <http://www.gnu.org/licenses/>
15 *
16 * COSMOS/core is free software: you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public License
18 * as published by the Free Software Foundation, either version 3 of
19 * the License, or (at your option) any later version.
20 *
21 * COSMOS/core is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
25 *
26 * Refer to the "licences" folder for further information on the
27 * condititons and terms to use this software.
28 ********************************************************************/
29 
30 #ifndef ECI2KEP_TEST_H
31 #define ECI2KEP_TEST_H
32 
33 #include <QWidget>
34 #include "testcontainer.h"
35 #include "ui_eci2kep_test.h"
36 
37 namespace Ui {
38 class eci2kep_test;
39 }
40 
41 class eci2kep_test : public QWidget
42 {
43  Q_OBJECT
44 
45 public:
46  explicit eci2kep_test(TestContainer *parent = 0);
47  ~eci2kep_test();
48 
49 private slots:
50  void on_comboBox_currentIndexChanged(int index);
51 
52  void on_SelectMax_clicked();
53 
54  void on_SelectMin_clicked();
55 
56 private:
57  Ui::eci2kep_test *ui;
58 
59  int test_maxErr, period_maxErr, a_maxErr, e_maxErr, h_maxErr, beta_maxErr, eta_maxErr, i_maxErr, raan_maxErr, ap_maxErr, alat_maxErr, ma_maxErr, ta_maxErr, ea_maxErr, mm_maxErr, fa_maxErr;
60  int test_minErr, period_minErr, a_minErr, e_minErr, h_minErr, beta_minErr, eta_minErr, i_minErr, raan_minErr, ap_minErr, alat_minErr, ma_minErr, ta_minErr, ea_minErr, mm_minErr, fa_minErr;
61 };
62 
63 #endif // ECI2KEP_TEST_H
Definition: eci2kep_test.h:41
Definition: testcontainer.h:44
Definition: eci2kep_test.h:37
int test_maxErr
Definition: eci2kep_test.h:59
int test_minErr
Definition: eci2kep_test.h:60
Ui::eci2kep_test * ui
Definition: eci2kep_test.h:57