Index: trunk/MagicSoft/Mars/mpointing/MPointingPos.h
===================================================================
--- trunk/MagicSoft/Mars/mpointing/MPointingPos.h	(revision 3374)
+++ trunk/MagicSoft/Mars/mpointing/MPointingPos.h	(revision 3544)
@@ -12,7 +12,7 @@
     Double_t fAz;  // [deg] Azimuth
 
-    Double_t fRa;  // [deg] Right ascension
-    Double_t fHa;  // [deg] Houre angle
-    Double_t fDec; // [deg] Declination
+    Double_t fRa;  // [rad] Right ascension
+    Double_t fHa;  // [rad] Hour angle
+    Double_t fDec; // [rad] Declination
 
 public:
@@ -26,6 +26,9 @@
     void SetSkyPosition(Double_t ra, Double_t dec, Double_t ha=0) { fRa=ra; fDec=dec; fHa=ha; }
 
-    Double_t GetZd() const { return fZd; }
-    Double_t GetAz() const { return fAz; }
+    Double_t GetZd() const  { return fZd; }
+    Double_t GetAz() const  { return fAz; }
+
+    Double_t GetRa() const  { return fRa; }
+    Double_t GetDec() const { return fDec; }
 
     ClassDef(MPointingPos, 1) //Container storing the (corrected) telescope pointing position
Index: trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc
===================================================================
--- trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc	(revision 3374)
+++ trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc	(revision 3544)
@@ -134,4 +134,5 @@
     case MRawRunHeader::kRTData:
         fPosition->SetLocalPosition(fReport->GetNominalZd(), fReport->GetNominalAz());
+        fPosition->SetSkyPosition(fReport->GetRa()*TMath::DegToRad()/15, fReport->GetDec()*TMath::DegToRad());
         return kTRUE;
 
