Changeset 4355 in ntrip for trunk/BNC/src/rinex/reqcanalyze.h


Ignore:
Timestamp:
Jun 24, 2012, 6:25:02 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.h

    r4350 r4355  
    5656  class t_anaObs {
    5757   public:
    58     t_anaObs(const t_obs& obsIn) :
    59       obs(obsIn), az(0.0), zen(0.0), MP1(0.0), MP2(0.0) {}
    60     t_obs  obs;
    61     double az;
    62     double zen;
    63     double MP1;
    64     double MP2;
     58    t_anaObs(int GPSWeek, double GPSWeeks) {
     59      _GPSWeek  = GPSWeek;
     60      _GPSWeeks = GPSWeeks;
     61      _MP1      = 0.0;
     62      _MP2      = 0.0;
     63    }
     64    int    _GPSWeek;
     65    double _GPSWeeks;
     66    double _MP1;
     67    double _MP2;
    6568  };
    6669
     
    7376      }
    7477    }
    75     void addObs(const t_obs& obs, const t_eph* eph, const ColumnVector& xyz);
     78    void addObs(const t_obs& obs);
    7679    QVector<t_anaObs*> anaObs;
    7780  };
    7881
    7982  void analyzeFile(t_rnxObsFile* obsFile);
    80   void analyzeMultipath(const QString& prn, const t_satStat& satStat,
     83  void analyzeMultipath(const QString& prn,
     84                        const t_satStat& satStat,
     85                        const ColumnVector& xyz,
    8186                        QVector<t_polarPoint*>* dataMP1,
    8287                        QVector<t_polarPoint*>* dataMP2);
Note: See TracChangeset for help on using the changeset viewer.