00001 ////////////////////////////////////////////////////////////////////////////////////////////////// 00002 /*! \file NumericPropagator.cpp 00003 * \brief Implementation of the Numeric Propagator class. 00004 * \author $Author: cakinli $ 00005 * \version $Revision: 1.1.1.1 $ 00006 * \date $Date: 2005/04/26 17:40:56 $ 00007 *////////////////////////////////////////////////////////////////////////////////////////////////// 00008 /* 00009 * 00010 */ 00011 ////////////////////////////////////////////////////////////////////////////////////////////////// 00012 00013 #include "NumericPropagator.h" 00014 namespace O_SESSAME { 00015 00016 NumericPropagator::NumericPropagator() 00017 { 00018 00019 } 00020 00021 NumericPropagator::~NumericPropagator() 00022 { 00023 00024 } 00025 00026 void NumericPropagator::Propagate(const vector<ssfTime> &_propTime, const Vector &_orbitInitConditions, const Vector &_attInitConditions) 00027 { 00028 00029 } 00030 00031 } // close namespace O_SESSAME 00032 00033 // Do not change the comments below - they will be added automatically by CVS 00034 /***************************************************************************** 00035 * $Log: NumericPropagator.cpp,v $ 00036 * Revision 1.1.1.1 2005/04/26 17:40:56 cakinli 00037 * Adding OpenSESSAME to DSACSS distrib to capture fixed version. 00038 * 00039 * Revision 1.8 2003/05/20 17:55:35 nilspace 00040 * Updated comments, also now use derived CombinedNumericProp. 00041 * 00042 * Revision 1.7 2003/05/13 18:54:04 nilspace 00043 * Fixed comments & various propagate functions. 00044 * 00045 * Revision 1.6 2003/04/30 14:45:35 nilspace 00046 * Set the OrbitStateObject() and AttitudeStateObject() in the Propagate() function. 00047 * 00048 * Revision 1.5 2003/04/29 20:56:03 nilspace 00049 * Updated to work. 00050 * 00051 * Revision 1.4 2003/04/27 22:04:33 nilspace 00052 * Created the namespace O_SESSAME. 00053 * 00054 * Revision 1.3 2003/04/25 13:43:52 nilspace 00055 * Updated to actually work. Still needs verification. 00056 * 00057 * Revision 1.1 2003/04/08 22:49:56 nilspace 00058 * Initial Submission. 00059 * 00060 ******************************************************************************/