Changeset 4840 for trunk/MagicSoft/Mars/mreport
- Timestamp:
- 09/03/04 13:57:47 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mreport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreport/MReportDrive.cc
r4575 r4840 125 125 // -------------------------------------------------------------------------- 126 126 // 127 // GetAbsError [deg] 128 // 127 129 // Returns the absolute deviation from the nominal position calculated 128 130 // from the system error. 131 // 129 132 // 130 133 Double_t MReportDrive::GetAbsError() const … … 154 157 return acos(d)*TMath::RadToDeg(); 155 158 } 159 160 void MReportDrive::Print(Option_t *o) const 161 { 162 *fLog << GetDescriptor() << ": Mjd=" << fMjd << " Ra=" << fRa << " Dec=" << fDec; 163 *fLog << " dZd=" << fErrorZd << " dAz=" << fErrorAz << " D=" << GetAbsError() << endl; 164 } -
trunk/MagicSoft/Mars/mreport/MReportDrive.h
r4575 r4840 20 20 Double_t fCurrentAz; // [deg] current azimuth 21 21 22 Double_t fErrorZd; // [ ?] system error in the zenith angle axis23 Double_t fErrorAz; // [ ?] sistem error in the azimuth angle axis22 Double_t fErrorZd; // [deg] system error in the zenith angle axis 23 Double_t fErrorAz; // [deg] sistem error in the azimuth angle axis 24 24 25 25 Int_t InterpreteBody(TString &str, Int_t ver); … … 44 44 Double_t GetAbsError() const; 45 45 46 void Print(Option_t *o="") const; 47 46 48 ClassDef(MReportDrive, 1) // Class for DRIVE-REPORT information 47 49 };
Note:
See TracChangeset
for help on using the changeset viewer.