13#include <unordered_map>
22 virtual const char *what()
const noexcept;
37 parser(
const bool &enable_column_output);
51 const std::string &description,
52 const std::string &default_val);
59 void add_argument(
const std::string &argument,
bool required);
68 const std::string &description,
79 const std::string &description,
80 const std::string &default_val,
93 void add_input(
const std::vector<std::string> &input);
106 template <
typename T = std::
string>
110 if constexpr (std::is_same<T, std::string>::value)
114 else if constexpr (std::is_same<T, int>::value)
116 return std::stoi(value);
118 else if constexpr (std::is_same<T, unsigned int>::value)
120 return std::stoul(value);
122 else if constexpr (std::is_same<T, double>::value)
124 return std::stod(value);
126 else if constexpr (std::is_same<T, bool>::value)
129 return lower ==
"true";
133 return static_cast<T
>(value);
157 std::string argument;
158 std::string description;
159 std::optional<std::string> value;
160 std::string default_val =
"";
167 KeyValue(
const std::string &Key,
const std::string &Value)
174 std::vector<std::pair<std::string, Options>> mOrderedArguments;
175 std::unordered_map<std::string, Options> mRequiredArguments;
176 std::unordered_map<std::string, Options> mOptionalArguments;
178 bool extra_column_output =
false;
197 void add_input(
const std::vector<KeyValue> &input);
205 std::string
to_lower(
const std::string &input)
const;
207 KeyValue get_key_value(
const std::string &input);
The parser class provides the argument parser for the CLI and JSON methods. This is case insensitive.
Definition parser.h:34
void add_input(const std::vector< std::string > &input)
add_input Add the vector with each input as it is given in the CLI in the form "--argument=value".
Definition parser.cpp:195
bool all_required_set() const
all_required_set Check ifs all required parameter are set.
Definition parser.cpp:226
std::string get_value_as_string(const std::string &argument) const
get_value Get the value for the required parameter.
Definition parser.cpp:333
T get_value(const std::string &argument) const
get_value Get the value for the required parameter.
Definition parser.h:107
void print_help() const
print_help Prints the header and the arguments with their description.
Definition parser.cpp:250
std::string to_lower(const std::string &input) const
get_key_value Converts the CLI input in the form "--argName=value" into a key value pair.
Definition parser.cpp:440
void set_help_header(const std::string &header)
set_help_header Sets the header which is printed in print_help()
Definition parser.cpp:389
bool mHelpAlreadyPrinted
Helper to avoid multiple prints of the help output.
Definition parser.h:213
void check_required_parameters() const
check_required_parameters Calls all_required_set() and throws a parserException if not all required p...
Definition parser.cpp:241
void add_subtext(const std::string &subtext)
add_subtext add subtext to description column
Definition parser.cpp:187
void add_json_input(const std::string &filename)
add_json_input Add the input parameters with a json file.
Definition parser.cpp:365
void enable_minimizer_options()
enable_minimizer_options Enables the options regarding the minimizer.
Definition parser.cpp:95
void add_argument_only_display(const std::string &argument, const std::string &description, const std::string &default_val)
add_argument Silently adds a new argument for the parser options.
Definition parser.cpp:111
void add_argument(const std::string &argument, bool required)
add_argument Silently adds a new argument for the parser options.
Definition parser.cpp:124
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24