OSFEG-C++  1.4.6
OpenSF Error Generation Library
Harmonic.h
1 /*
2  * openSF Error Generation Libraries (OSFEG)
3  * Deimos Space, S.L.U.
4  *
5  * This file is part of OSFEG. OSFEG is free software; you can redistribute it
6  * and/or modify it under the terms of the 'ESA Software Community Licence Permissive' as
7  * published by the European Space Agency; either version 2.4 of the License,
8  * or (at your option) any later version. You should have received a
9  * copy of the 'ESA Software Community Licence Permissive - v2.4' along with this program
10  * or one can be found at <http://eop-cfi.esa.int/index.php/docs-and-mission-data/licensing-documents>.
11  *
12  * Header file for Harmonic class.
13  *
14  */
15 
16 #ifndef HARMONIC_H
17 #define HARMONIC_H
18 
19 #include "Analytical.h"
20 
32 class Harmonic: public Analytical
33 {
34 private:
47  double getSinusoidal(double time);
48 
63  double getTangent(double time);
64 
65 public:
73  double getValue(double time);
74 
80  Harmonic(string type);
81 
82 };
83 
84 #endif // HARMONIC_H
Definition: Analytical.h:30
string type
Type of value (currently only "Float")
Definition: Analytical.h:33
Definition: Harmonic.h:33
Harmonic(string type)
double getValue(double time)