Changeset 7188 for trunk/MagicSoft/Mars/mreport
- Timestamp:
- 07/13/05 19:06:26 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mreport
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreport/MReportCC.cc
r7026 r7188 31 31 // From here maily weather station data is decoded such as 32 32 // 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 // 33 39 // 34 40 ////////////////////////////////////////////////////////////////////////////// … … 74 80 Int_t len; 75 81 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", 77 83 &fTemperature, &fSolarRadiation, &fWindSpeed, 78 &fHumidity, & len);79 if (n!= 4)84 &fHumidity, &fUPSStatus, &fDifRubGPS, &len); 85 if (n!=6) 80 86 { 81 87 *fLog << warn << "WARNING - Wrong number of arguments." << endl; -
trunk/MagicSoft/Mars/mreport/MReportCC.h
r7027 r7188 14 14 Float_t fSolarRadiation; // [W/m^2] IR-Radiation 15 15 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 16 19 Int_t InterpreteBody(TString &str, Int_t ver); 17 20 … … 26 29 void Print(Option_t *opt) const; 27 30 28 ClassDef(MReportCC, 1) // Class for CC-REPORT information31 ClassDef(MReportCC, 2) // Class for CC-REPORT information 29 32 }; 30 33 -
trunk/MagicSoft/Mars/mreport/MReportCamera.cc
r6962 r7188 568 568 return kCONTINUE; 569 569 570 if (ver > gkActiveLoadControlVersNum)570 if (ver >= gkActiveLoadControlVersNum) 571 571 { 572 572 if (!InterpreteActiveLoad(str))
Note:
See TracChangeset
for help on using the changeset viewer.