Index: trunk/FACT++/src/calcsource.cc
===================================================================
--- trunk/FACT++/src/calcsource.cc	(revision 19070)
+++ trunk/FACT++/src/calcsource.cc	(revision 19071)
@@ -34,12 +34,16 @@
         ("create",         po_switch(),               "Create the table if it does not yet exist")
         ("update",         po_switch(),               "Update the table.position instead of inserting it (disables drop, create and delete)")
-        ("no-insert",      po_switch(),               "Does not insert or update any data to any table")
-        ("dry-run",        po_switch(),               "Skip any query which changes the databse (might result in consecutive failures)")
         ("ra",             var<double>(),             "Right ascension of the source (use together with --dec)")
         ("dec",            var<double>(),             "Declination of the source (use together with --ra)")
         ("focal-dist",     var<double>(4889.),        "Focal distance of the camera in millimeter")
-        ("verbose,v",      var<uint16_t>(1),          "Verbosity (0: quiet, 1: default, 2: more, 3, ...)")
+        ;
+
+    po::options_description debug("Debug options");
+    debug.add_options()
+        ("no-insert",      po_switch(),               "Does not insert or update any data to any table")
+        ("dry-run",        po_switch(),               "Skip any query which changes the databse (might result in consecutive failures)")
         ("print-meta",     po_switch(),               "Print meta-queries (DROP, CREATE, DELETE, SELECT)")
         ("print-insert",   po_switch(),               "Print the INSERT/UPDATE queries")
+        ("verbose,v",      var<uint16_t>(1),          "Verbosity (0: quiet, 1: default, 2: more, 3, ...)")
         ;
 
@@ -48,4 +52,5 @@
 
     conf.AddOptions(control);
+    conf.AddOptions(debug);
     conf.SetArgumentPositions(p);
 }
