Templatized a function and removed its duplicate, plus minor optimization.
[PaGMO.git] / AstroToolbox / Pl_Eph_An.h
blob2d00af3d7a95fb5b980d62812f15b9ae419e2ae3
1 // ------------------------------------------------------------------------ //
2 // This source file is part of the 'ESA Advanced Concepts Team's //
3 // Space Mechanics Toolbox' software. //
4 // //
5 // The source files are for research use only, //
6 // and are distributed WITHOUT ANY WARRANTY. Use them on your own risk. //
7 // //
8 // Copyright (c) 2004-2007 European Space Agency //
9 // ------------------------------------------------------------------------ //
11 #ifndef PL_EPH_AN_H
12 #define PL_EPH_AN_H
14 #include <vector>
16 using namespace std;
18 void Planet_Ephemerides_Analytical (const double, const int, double*, double*);
20 void Custom_Eph(const double, const double, const double[], double*, double*);
22 #endif