Index: trunk/MagicSoft/Mars/mreport/MReportCamera.cc
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportCamera.cc	(revision 3927)
+++ trunk/MagicSoft/Mars/mreport/MReportCamera.cc	(revision 4569)
@@ -379,4 +379,31 @@
 // --------------------------------------------------------------------------
 //
+// Interprete the HOT* part of the report
+//
+Bool_t MReportCamera::InterpreteHOT(TString &str)
+{
+
+    if (!CheckTag(str, "HOT "))
+        return kFALSE;
+
+    Int_t len;
+    Int_t hot;
+
+    const Int_t n=sscanf(str.Data(), "%hd %n", &hot, &len);
+    if (n!=1)
+    {
+        *fLog << warn << "WARNING - Reading information of 'HOT' section." << endl;
+        return kFALSE;
+    }
+
+    str.Remove(0, len);
+    str=str.Strip(TString::kBoth);
+    return kTRUE;
+
+}
+
+
+// --------------------------------------------------------------------------
+//
 // Interprete the CAMERA-REPORT part
 //
@@ -449,4 +476,7 @@
         return kCONTINUE;
 
+    if (!InterpreteHOT(str))
+        return kCONTINUE;
+
     if (str!="OVER")
     {
Index: trunk/MagicSoft/Mars/mreport/MReportCamera.h
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportCamera.h	(revision 3927)
+++ trunk/MagicSoft/Mars/mreport/MReportCamera.h	(revision 4569)
@@ -38,4 +38,5 @@
     Bool_t InterpreteAUX(TString &str);
     Bool_t InterpreteCAL(TString &str);
+    Bool_t InterpreteHOT(TString &str);
 
     Int_t  InterpreteBody(TString &str);
