Changeset 6141 in ntrip for trunk/BNC/src/bncephuser.h


Ignore:
Timestamp:
Sep 13, 2014, 5:08:22 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.h

    r6140 r6141  
    3636#  include "clock_orbit_rtcm.h"
    3737}
    38 
    39 class t_corr {
    40  public:
    41   t_corr() {
    42     rao.ReSize(3);       
    43     dotRao.ReSize(3);   
    44     messageType = 0;
    45     iod         = 0;
    46     dClk        = 0.0;
    47     dotDClk     = 0.0;
    48     dotDotDClk  = 0.0;
    49     hrClk       = 0.0;
    50     rao         = 0.0;
    51     dotRao      = 0.0;
    52     eph         = 0;
    53   }
    54  
    55   ~t_corr() {}
    56 
    57   bool ready() {return tRao.valid() && tClk.valid();}
    58 
    59   static bool relevantMessageType(int msgType) {
    60     return ( msgType == COTYPE_GPSCOMBINED     ||
    61              msgType == COTYPE_GLONASSCOMBINED ||
    62              msgType == COTYPE_GPSORBIT        ||
    63              msgType == COTYPE_GPSCLOCK        ||
    64              msgType == COTYPE_GLONASSORBIT    ||
    65              msgType == COTYPE_GLONASSCLOCK    ||
    66              msgType == COTYPE_GPSHR           ||
    67              msgType == COTYPE_GLONASSHR );
    68   }
    69 
    70   t_irc readLine(const QString& line);
    71 
    72   int          messageType;
    73   QString      prn;
    74   bncTime      tClk;
    75   bncTime      tRao;
    76   int          iod;
    77   double       dClk;
    78   double       dotDClk;
    79   double       dotDotDClk;
    80   double       hrClk;
    81   ColumnVector rao;
    82   ColumnVector dotRao;
    83   const t_eph* eph;
    84 };
    8538
    8639class bncEphUser : public QObject {
Note: See TracChangeset for help on using the changeset viewer.