Index: trunk/FACT++/src/smartfact.cc
===================================================================
--- trunk/FACT++/src/smartfact.cc	(revision 14304)
+++ trunk/FACT++/src/smartfact.cc	(revision 14305)
@@ -2020,4 +2020,5 @@
         map<Time, pair<string, float>> lightcond;
         vector<vector<float>> alt;
+        vector<vector<float>> hlc;
 
 #ifdef HAVE_NOVA
@@ -2068,5 +2069,5 @@
                 if (lc.first.size()>0)
                 {
-                    alt.push_back(lc.first);
+                    hlc.push_back(lc.first);
                     lightcond[lc.second.first] = make_pair(name, lc.second.second);
                 }
@@ -2120,5 +2121,4 @@
 
             ostringstream title;
-            title << "Alt ";
             title << fSun.fSetAstronomical.GetAsStr("%H:%M");
             title << " / ";
@@ -2134,5 +2134,6 @@
             out2 << HTML::kWhite << '\t' << Time()-now << '\n';
 
-            WriteBinaryVec(now, "hist-visibility", alt, 75, 15, title.str());
+            WriteBinaryVec(now, "hist-visibility",      alt, 75, 15, "Alt "+title.str());
+            WriteBinaryVec(now, "hist-light-condition", hlc,  1,  0, "LC "+title.str());
         }
         catch (const exception &e)
