ARTS  2.2.66
parameters.h
Go to the documentation of this file.
1 /* Copyright (C) 2000-2012 Stefan Buehler <sbuehler@ltu.se>
2 
3  This program is free software; you can redistribute it and/or modify it
4  under the terms of the GNU General Public License as published by the
5  Free Software Foundation; either version 2, or (at your option) any
6  later version.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16  USA. */
17 
28 #ifndef parameters_h
29 #define parameters_h
30 
31 #include "array.h"
32 #include "mystring.h"
33 
42 class Parameters {
43 public:
47  usage(),
48  helptext(),
49  help(false),
50  version(false),
51  basename(""),
52  outdir(""),
53  controlfiles(),
54  reporting(-1),
55  methods(""),
56  numthreads(0),
57  includepath(),
58  datapath(),
59  input(""),
61  describe(""),
62  groups(false),
63  plain(false),
64  docserver(0),
65  baseurl(""),
66  daemon(false),
67  gui(false)
68  { /* Nothing to be done here */ }
69 
75  bool help;
77  bool version;
120  bool groups;
122  bool plain;
128  bool daemon;
130  bool gui;
131 };
132 
133 
147 bool get_parameters(int argc, char **argv);
148 
149 
150 #endif // parameters_h
Parameters::reporting
Index reporting
This should be a two digit integer.
Definition: parameters.h:97
get_parameters
bool get_parameters(int argc, char **argv)
Get the command line parameters.
Definition: parameters.cc:76
Parameters::help
bool help
Only display the help text.
Definition: parameters.h:75
Parameters::outdir
String outdir
If this is specified (with the -o –outdir option), it is used as the base directory for the report fi...
Definition: parameters.h:86
Parameters::docserver
Index docserver
Port to use for the docserver.
Definition: parameters.h:124
Parameters
Structure to hold all command line Parameters.
Definition: parameters.h:42
Parameters::usage
String usage
Short message how to call the program.
Definition: parameters.h:71
Parameters::version
bool version
Display version information.
Definition: parameters.h:77
array.h
This file contains the definition of Array.
Parameters::gui
bool gui
Flag to run with graphical user interface.
Definition: parameters.h:130
Parameters::workspacevariables
String workspacevariables
If this is given the argument ‘all’, it simply prints a list of all workspace variables.
Definition: parameters.h:115
Array< String >
Parameters::plain
bool plain
Generate plain help out suitable for script processing.
Definition: parameters.h:122
Parameters::describe
String describe
Print the description String of the given workspace variable or method.
Definition: parameters.h:118
Parameters::helptext
String helptext
Longer message explaining the options.
Definition: parameters.h:73
my_basic_string< char >
Parameters::basename
String basename
If this is specified (with the -b –basename option), it is used as the base name for the report file ...
Definition: parameters.h:81
Parameters::Parameters
Parameters()
Default constructor.
Definition: parameters.h:46
Parameters::controlfiles
ArrayOfString controlfiles
The filenames of the controlfiles.
Definition: parameters.h:89
Parameters::groups
bool groups
Print a list of all workspace variable groups.
Definition: parameters.h:120
Parameters::daemon
bool daemon
Flag to run the docserver in the background.
Definition: parameters.h:128
Parameters::methods
String methods
If this is given the argument ‘all’, it simply prints a list of all methods.
Definition: parameters.h:101
Parameters::baseurl
String baseurl
Baseurl for the docserver.
Definition: parameters.h:126
Parameters::input
String input
This is complementary to the methods switch.
Definition: parameters.h:111
Parameters::numthreads
Index numthreads
The maximum number of threads to use.
Definition: parameters.h:103
Index
INDEX Index
The type to use for all integer numbers and indices.
Definition: matpack.h:35
Parameters::includepath
ArrayOfString includepath
List of paths to search for include files.
Definition: parameters.h:105
Parameters::datapath
ArrayOfString datapath
List of paths to search for data files.
Definition: parameters.h:107
mystring.h
This file contains the definition of String, the ARTS string class.