Index: trunk/MagicSoft/Mars/mreport/MReportDrive.cc
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportDrive.cc	(revision 4732)
+++ trunk/MagicSoft/Mars/mreport/MReportDrive.cc	(revision 4840)
@@ -125,6 +125,9 @@
 // --------------------------------------------------------------------------
 //
+// GetAbsError [deg]
+//
 // Returns the absolute deviation from the nominal position calculated
 // from the system error.
+//
 //
 Double_t MReportDrive::GetAbsError() const
@@ -154,2 +157,8 @@
     return acos(d)*TMath::RadToDeg();
 }
+
+void MReportDrive::Print(Option_t *o) const
+{
+    *fLog << GetDescriptor() << ": Mjd=" << fMjd << " Ra=" << fRa << " Dec=" << fDec;
+    *fLog << " dZd=" << fErrorZd << " dAz=" << fErrorAz << " D=" << GetAbsError() << endl;
+}
Index: trunk/MagicSoft/Mars/mreport/MReportDrive.h
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportDrive.h	(revision 4732)
+++ trunk/MagicSoft/Mars/mreport/MReportDrive.h	(revision 4840)
@@ -20,6 +20,6 @@
     Double_t fCurrentAz;  // [deg] current azimuth
 
-    Double_t fErrorZd;    // [?] system error in the zenith angle axis
-    Double_t fErrorAz;    // [?] sistem error in the azimuth angle axis
+    Double_t fErrorZd;    // [deg] system error in the zenith angle axis
+    Double_t fErrorAz;    // [deg] sistem error in the azimuth angle axis
 
     Int_t InterpreteBody(TString &str, Int_t ver);
@@ -44,4 +44,6 @@
     Double_t GetAbsError() const;
 
+    void Print(Option_t *o="") const;
+
     ClassDef(MReportDrive, 1) // Class for DRIVE-REPORT information
 };
