Index: /fact/tools/rootmacros/julia.C
===================================================================
--- /fact/tools/rootmacros/julia.C	(revision 14027)
+++ /fact/tools/rootmacros/julia.C	(revision 14028)
@@ -2,6 +2,9 @@
 
 #include <iostream>
+
+#define HAVE_ZLIB
 #include "fits.h"
 
+using namespace std;
 
 void julia()
@@ -14,14 +17,16 @@
 
     size_t NumberOfRows = file->GetNumRows();
-
-    unsigned long rate =0;
+    cout << NumberOfRows << endl;
+    //unsigned long rate =0;
     double time = 0;
+    float rate =0;
 
     file->SetRefAddress("TriggerRate", rate);
     file->SetRefAddress("Time", time);
-
+    
     while ( file->GetNextRow() )
     {
-        cout << "time: " << time "\t" << "rate: " << rate << endl;
+        cout << "time: " << time << "\t" << "rate: " << rate << endl;
     }
+   
 }
