Changeset 14935 for trunk/Mars/mreport
- Timestamp:
- 02/20/13 14:49:37 (12 years ago)
- Location:
- trunk/Mars/mreport
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mreport/MReport.h
r12776 r14935 9 9 #endif 10 10 11 namespace std 12 { 13 class fits; 14 } 11 class fits; 12 15 13 class MTime; 16 14 class MParList; … … 37 35 38 36 virtual Bool_t SetupReading(MParList &plist); 39 virtual Bool_t SetupReadingFits( std::fits &fits) { return kTRUE; }37 virtual Bool_t SetupReadingFits(fits &) { return kTRUE; } 40 38 virtual Int_t InterpreteBody(TString &str, Int_t ver); 41 39 42 40 Int_t Interprete(TString &str, const MTime &start, const MTime &stop, const Int_t ver); 43 virtual Int_t InterpreteFits(const std::fits &fits) { return kTRUE; }41 virtual Int_t InterpreteFits(const fits &) { return kTRUE; } 44 42 Bool_t CheckIdentifier(TString &str) const 45 43 { -
trunk/Mars/mreport/MReportCC.cc
r12773 r14935 255 255 } 256 256 257 Bool_t MReportWeather::SetupReadingFits( std::fits &file)257 Bool_t MReportWeather::SetupReadingFits(fits &file) 258 258 { 259 259 return -
trunk/Mars/mreport/MReportCC.h
r12773 r14935 19 19 Float_t fSolarRadiation; // [W/m^2] IR-Radiation 20 20 21 Bool_t SetupReadingFits( std::fits &fits);21 Bool_t SetupReadingFits(fits &fits); 22 22 23 23 public: -
trunk/Mars/mreport/MReportDrive.cc
r14861 r14935 88 88 } 89 89 90 Bool_t MReportDrive::SetupReadingFits( std::fits &file)90 Bool_t MReportDrive::SetupReadingFits(fits &file) 91 91 { 92 92 return … … 100 100 } 101 101 102 Int_t MReportDrive::InterpreteFits(const std::fits &fits)102 Int_t MReportDrive::InterpreteFits(const fits &fits) 103 103 { 104 104 fCurrentZd = fNominalZd - fErrorZd; -
trunk/Mars/mreport/MReportDrive.h
r12734 r14935 23 23 Double_t fErrorAz; // [deg] sistem error in the azimuth angle axis 24 24 25 Bool_t SetupReadingFits( std::fits &fits);26 Int_t InterpreteFits(const std::fits &fits);25 Bool_t SetupReadingFits(fits &fits); 26 Int_t InterpreteFits(const fits &fits); 27 27 Int_t InterpreteBody(TString &str, Int_t ver); 28 28 -
trunk/Mars/mreport/MReportFitsRead.h
r14483 r14935 17 17 #include <map> 18 18 19 namespace std 20 { 21 class fits; 22 } 19 class fits; 23 20 class THashTable; 24 21 … … 52 49 53 50 protected: 54 std::fits *fIn; //! buffered input stream (file to read from)51 fits *fIn; //! buffered input stream (file to read from) 55 52 56 53 public: -
trunk/Mars/mreport/MReportHumidity.cc
r12861 r14935 51 51 } 52 52 53 Bool_t MReportHumidity::SetupReadingFits( std::fits &file)53 Bool_t MReportHumidity::SetupReadingFits(fits &file) 54 54 { 55 55 return … … 58 58 } 59 59 60 Int_t MReportHumidity::InterpreteFits(const std::fits &fits)60 Int_t MReportHumidity::InterpreteFits(const fits &fits) 61 61 { 62 62 return kTRUE; -
trunk/Mars/mreport/MReportHumidity.h
r12861 r14935 12 12 Float_t fHumidity[4]; // H[%] Humidity sensors readout 13 13 14 Bool_t SetupReadingFits( std::fits &fits);15 Int_t InterpreteFits(const std::fits &fits);14 Bool_t SetupReadingFits(fits &fits); 15 Int_t InterpreteFits(const fits &fits); 16 16 17 17 public: -
trunk/Mars/mreport/MReportRates.cc
r12862 r14935 53 53 } 54 54 55 Bool_t MReportRates::SetupReadingFits( std::fits &file)55 Bool_t MReportRates::SetupReadingFits(fits &file) 56 56 { 57 57 return … … 66 66 } 67 67 68 Int_t MReportRates::InterpreteFits(const std::fits &fits)68 Int_t MReportRates::InterpreteFits(const fits &fits) 69 69 { 70 70 if (fElapsedTime>0 || fElapsedOnTime>0) -
trunk/Mars/mreport/MReportRates.h
r12860 r14935 18 18 Float_t fElapsedOnTime; // [s] On-time elapsed since previous report 19 19 20 Bool_t SetupReadingFits( std::fits &fits);21 Int_t InterpreteFits(const std::fits &fits);20 Bool_t SetupReadingFits(fits &fits); 21 Int_t InterpreteFits(const fits &fits); 22 22 23 23 public: -
trunk/Mars/mreport/MReportTemperatures.cc
r12861 r14935 56 56 } 57 57 58 Bool_t MReportTemperatures::SetupReadingFits( std::fits &file)58 Bool_t MReportTemperatures::SetupReadingFits(fits &file) 59 59 { 60 60 return … … 68 68 } 69 69 70 Int_t MReportTemperatures::InterpreteFits(const std::fits &fits)70 Int_t MReportTemperatures::InterpreteFits(const fits &fits) 71 71 { 72 72 return kTRUE; -
trunk/Mars/mreport/MReportTemperatures.h
r12861 r14935 17 17 Float_t fTempEthernet[4]; // [deg C] Ethernet switches temperatures top (front/back), bottom (front/back) 18 18 19 Bool_t SetupReadingFits( std::fits &fits);20 Int_t InterpreteFits(const std::fits &fits);19 Bool_t SetupReadingFits(fits &fits); 20 Int_t InterpreteFits(const fits &fits); 21 21 22 22 public:
Note:
See TracChangeset
for help on using the changeset viewer.