Index: /trunk/FACT++/src/makeplots.cc
===================================================================
--- /trunk/FACT++/src/makeplots.cc	(revision 17653)
+++ /trunk/FACT++/src/makeplots.cc	(revision 17654)
@@ -45,10 +45,10 @@
     po::options_description control("Smart FACT");
     control.add_options()
-        ("ra",        var<double>(), "Source right ascension")
-        ("dec",       var<double>(), "Source declination")
+        //("ra",        var<double>(), "Source right ascension")
+        //("dec",       var<double>(), "Source declination")
         ("date-time", var<string>(), "SQL time (UTC)")
         ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database.")
-        ("max-current", var<double>(75), "Maximum current to display in other plots.")
-        ("max-zd", var<double>(75), "Maximum zenith distance to display in other plots")
+        ("max-current", var<double>(100), "Maximum current to display in other plots.")
+        ("max-zd", var<double>(50), "Maximum zenith distance to display in other plots")
         ("no-limits", po_switch(), "Switch off limits in plots")
         ;
@@ -75,5 +75,6 @@
         "twilight which is 12deg below horizon.\n"
         "\n"
-        "Usage: makeplots sql-datetime [--ra={ra} --dec={dec}]\n";
+        "Usage: makeplots sql-datetime\n";
+//        "Usage: makeplots sql-datetime [--ra={ra} --dec={dec}]\n";
     cout << endl;
 }
@@ -90,9 +91,9 @@
         return 127;
 
-    if (conf.Has("ra")^conf.Has("dec"))
-    {
-        cout << "ERROR - Either --ra or --dec missing." << endl;
-        return 1;
-    }
+//    if (conf.Has("ra")^conf.Has("dec"))
+//    {
+//        cout << "ERROR - Either --ra or --dec missing." << endl;
+//        return 1;
+//    }
 
     // ------------------ Eval config ---------------------
@@ -359,4 +360,10 @@
     c4.SaveAs((t+"-MoonDist.root").c_str());
 
+    c1.Print((t+".pdf(").c_str(), "pdf");
+    c2.Print((t+".pdf" ).c_str(), "pdf");
+    c3.Print((t+".pdf" ).c_str(), "pdf");
+    c4.Print((t+".pdf" ).c_str(), "pdf");
+    c5.Print((t+".pdf)").c_str(), "pdf");
+
     return 0;
 }
