help="Job manager name (one of %s) (%%default)."
% (', '.join(MANAGERS)),
default=MANAGERS[0])
- parser.add_option("--logx", dest="logx",
- help="Use a log scale for the x range.",
- default=False, action="store_true")
- parser.add_option("--logy", dest="logy",
- help="Use a log scale for the y range.",
+ parser.add_option("-C","--use_cache", dest="use_cache",
+ help="Use cached simulations if they exist (vs. running new simulations) (%default)",
default=False, action="store_true")
parser.add_option("-d","--cache-dir", dest="cache_dir",
metavar="STRING",
parser.add_option("-P","--plot-residuals", dest="plot_residuals",
help="Generate residual difference plots for each point in the plot range.",
default=False, action="store_true")
+ parser.add_option("--logx", dest="logx",
+ help="Use a log scale for the x range.",
+ default=False, action="store_true")
+ parser.add_option("--logy", dest="logy",
+ help="Use a log scale for the y range.",
+ default=False, action="store_true")
parser.add_option("-c","--contour-plot", dest="contour_plot",
help="Select contour plot (vs. the default pseudocolor plot).",
default=False, action="store_true")
- parser.add_option("-C","--use_cache", dest="use_cache",
- help="Use cached simulations if they exist (vs. running new simulations) (%default)",
- default=False, action="store_true")
options,args = parser.parse_args()
initial_params = [float(p) for p in options.initial_params.split(",")]
param_ranges = parse_param_ranges_string(options.param_range)