Ignore:
Timestamp:
09/03/04 13:57:47 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mreport
Files:
2 edited

Legend:

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

    r4575 r4840  
    125125// --------------------------------------------------------------------------
    126126//
     127// GetAbsError [deg]
     128//
    127129// Returns the absolute deviation from the nominal position calculated
    128130// from the system error.
     131//
    129132//
    130133Double_t MReportDrive::GetAbsError() const
     
    154157    return acos(d)*TMath::RadToDeg();
    155158}
     159
     160void 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  
    2020    Double_t fCurrentAz;  // [deg] current azimuth
    2121
    22     Double_t fErrorZd;    // [?] system error in the zenith angle axis
    23     Double_t fErrorAz;    // [?] sistem error in the azimuth angle axis
     22    Double_t fErrorZd;    // [deg] system error in the zenith angle axis
     23    Double_t fErrorAz;    // [deg] sistem error in the azimuth angle axis
    2424
    2525    Int_t InterpreteBody(TString &str, Int_t ver);
     
    4444    Double_t GetAbsError() const;
    4545
     46    void Print(Option_t *o="") const;
     47
    4648    ClassDef(MReportDrive, 1) // Class for DRIVE-REPORT information
    4749};
Note: See TracChangeset for help on using the changeset viewer.