Index: trunk/FACT++/src/HeadersMagicLidar.h
===================================================================
--- trunk/FACT++/src/HeadersMagicLidar.h	(revision 18504)
+++ trunk/FACT++/src/HeadersMagicLidar.h	(revision 18505)
@@ -29,4 +29,6 @@
         float fT12;
 
+        float fCloudBaseHeight;
+
     } __attribute__((__packed__));
 }
Index: trunk/FACT++/src/magiclidar.cc
===================================================================
--- trunk/FACT++/src/magiclidar.cc	(revision 18504)
+++ trunk/FACT++/src/magiclidar.cc	(revision 18505)
@@ -112,6 +112,6 @@
                 try
                 {
-                    if (line.substr(0, 3)=="ZEN")
-                        data.fZd = stoi(line.substr(3));
+                    if (line.substr(0, 2)=="ZD")
+                        data.fZd = stoi(line.substr(2));
                     if (line.substr(0, 2)=="AZ")
                         data.fAz = stof(line.substr(2));
@@ -132,4 +132,7 @@
                     if (line.substr(0, 3)=="T12")
                         data.fT12 = stof(line.substr(3));
+
+                    if (line.substr(0, 3)=="CLB")
+                        data.fCloudBaseHeight = stof(line.substr(3));
 
                     if (line.substr(0, 4)=="HOUR")
@@ -182,4 +185,5 @@
                 << "/" << data.fT9
                 << "/" << data.fT12
+                << " H="  << data.fCloudBaseHeight/1000 << "km"
                 << " Zd="  << data.fZd  << "°"
                 << " Az="  << data.fAz  << "°";
@@ -332,14 +336,12 @@
     ConnectionDimLidar(ba::io_service& ioservice, MessageImp &imp) :
         ConnectionLidar(ioservice, imp),
-        fDimLidar("MAGIC_LIDAR/DATA", "F:1;F:1;F:1;F:1;F:1;F:1",
+        fDimLidar("MAGIC_LIDAR/DATA", "F:1;F:1;F:1;F:1;F:1;F:1;F:1",
                   "|Zd[deg]:Pointing direction zenith distance"
                   "|Az[deg]:Pointing direction azimuth"
-                  //"|CHE[km]:Cloud height"
-                  //"|COT[1]:Cloud optical transparency at 532nm"
-                  //"|PBL[100]:Planetary boundary layer normalized to 100 for clear nights"
                   "|T3[1]:Transmission below 3km normalized to 1"
                   "|T6[1]:Transmission below 6km normalized to 1"
                   "|T9[1]:Transmission below 9km normalized to 1"
-                  "|T12[1]:Transmission below 12km normalized to 1")
+                  "|T12[1]:Transmission below 12km normalized to 1"
+                  "|CLB[m]:Cloud base height")
     {
     }
