Ignore:
Timestamp:
07/13/05 19:06:26 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mreport
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReportCC.cc

    r7026 r7188  
    3131// From here maily weather station data is decoded such as
    3232// temperature, humidity, wind-speed and solar radiation
     33//
     34// Class Version 2:
     35// ----------------
     36//  +  Float_t fUPSStatus; // arbitrary units (still not properly defined)
     37//  +  Float_t fDifRubGPS; // [us] Difference between the Rubidium clock time and the time provided by the GPS receiver
     38//
    3339//
    3440//////////////////////////////////////////////////////////////////////////////
     
    7480    Int_t len;
    7581    const Int_t n=sscanf(str.Data(),
    76                          "%*f %*f %*f %*f %f %f %f %f %*f %*f %n",
     82                         "%*f %*f %*f %*f %f %f %f %f %f %f %n",
    7783                         &fTemperature, &fSolarRadiation, &fWindSpeed,
    78                          &fHumidity, &len);
    79     if (n!=4)
     84                         &fHumidity, &fUPSStatus, &fDifRubGPS, &len);
     85    if (n!=6)
    8086    {
    8187        *fLog << warn << "WARNING - Wrong number of arguments." << endl;
  • trunk/MagicSoft/Mars/mreport/MReportCC.h

    r7027 r7188  
    1414    Float_t fSolarRadiation; // [W/m^2] IR-Radiation
    1515
     16    Float_t fUPSStatus;      // arbitrary units (still not properly defined)
     17    Float_t fDifRubGPS;      // [us] Difference between the Rubidium clock time and the time provided by the GPS receiver
     18
    1619    Int_t InterpreteBody(TString &str, Int_t ver);
    1720
     
    2629    void Print(Option_t *opt) const;
    2730
    28     ClassDef(MReportCC, 1) // Class for CC-REPORT information
     31    ClassDef(MReportCC, 2) // Class for CC-REPORT information
    2932};
    3033
  • trunk/MagicSoft/Mars/mreport/MReportCamera.cc

    r6962 r7188  
    568568        return kCONTINUE;
    569569
    570     if (ver > gkActiveLoadControlVersNum)
     570    if (ver >= gkActiveLoadControlVersNum)
    571571    {
    572572         if (!InterpreteActiveLoad(str))
Note: See TracChangeset for help on using the changeset viewer.