ComputeLC.hpp

Go to the documentation of this file.
00001 #pragma ident "$Id: ComputeLC.hpp 3140 2012-06-18 15:03:02Z susancummins $"
00002 
00008 #ifndef GPSTK_COMPUTELC_HPP
00009 #define GPSTK_COMPUTELC_HPP
00010 
00011 //============================================================================
00012 //
00013 //  This file is part of GPSTk, the GPS Toolkit.
00014 //
00015 //  The GPSTk is free software; you can redistribute it and/or modify
00016 //  it under the terms of the GNU Lesser General Public License as published
00017 //  by the Free Software Foundation; either version 2.1 of the License, or
00018 //  any later version.
00019 //
00020 //  The GPSTk is distributed in the hope that it will be useful,
00021 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00022 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00023 //  GNU Lesser General Public License for more details.
00024 //
00025 //  You should have received a copy of the GNU Lesser General Public
00026 //  License along with GPSTk; if not, write to the Free Software Foundation,
00027 //  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
00028 //
00029 //  Dagoberto Salazar - gAGE ( http://www.gage.es ). 2007, 2008, 2011
00030 //
00031 //============================================================================
00032 
00033 
00034 
00035 #include "ComputeCombination.hpp"
00036 
00037 
00038 namespace gpstk
00039 {
00040 
00043 
00044 
00078    class ComputeLC : public ComputeCombination
00079    {
00080    public:
00081 
00083       ComputeLC();
00084 
00085 
00091       virtual satTypeValueMap& Process(satTypeValueMap& gData)
00092          throw(ProcessingException)
00093       { ComputeCombination::Process(gData); return gData; };
00094 
00095 
00097       virtual std::string getClassName(void) const;
00098 
00099 
00101       virtual ~ComputeLC() {};
00102 
00103 
00104    protected:
00105 
00106 
00108       virtual double getCombination( const double& obs1,
00109                                      const double& obs2 )
00110       { return ( (GAMMA_GPS*obs1 - obs2)/(DEN) ); };
00111 
00112 
00113    private:
00114 
00115 
00116       const double DEN;     // DEN = GAMMA_GPS - 1
00117 
00118 
00119    }; // End of class 'ComputeLC'
00120 
00122 
00123 }  // End of namespace gpstk
00124 
00125 #endif   // GPSTK_COMPUTELC_HPP

Generated on Fri May 24 03:31:04 2013 for GPS ToolKit Software Library by  doxygen 1.3.9.1