CASM  1.1.0
A Clusters Approach to Statistical Mechanics
help.cc
Go to the documentation of this file.
1 #include "casm/completer/help.hh"
2 
3 #include <sstream>
4 
5 namespace CASM {
6 
7 std::string dry_run_help() {
8  return " dry_run: bool (optional, default=false)\n"
9  " Perform dry run.\n\n";
10 }
11 
12 std::string indent_space_help() {
13  return " indent_space: string (optional, default=6)\n"
14  " Number of spaces to indent for pretty-printing.\n\n";
15 }
16 
17 std::string coordinate_mode_help() {
18  return " coordinate_mode: string (optional, default=FRAC)\n"
19  " Coordinate mode (FRAC, CART, INTEGRAL) for printing orbits.\n\n";
20 }
21 
22 std::string orbit_print_mode_help() {
23  return " orbit_print_mode: string (optional, default=\"PROTO\")\n"
24  " Mode (FULL, PROTO) to select printing full orbits or just orbit "
25  "prototypes.\n\n";
26 }
27 
28 std::string prec_help(std::string what, int default_prec) {
29  std::stringstream ss;
30  ss << " prec: int (optional, default=" << default_prec << ")\n"
31  << " Precision for printing " << what << "\n\n";
32  return ss.str();
33 }
34 
35 std::string verbosity_help() {
36  return " verbosity: string or int (optional, default=\"standard\")\n"
37  " Verbosity of output. Options are 'none', 'quiet', 'standard', "
38  "'verbose', 'debug',\n"
39  " or an integer 0-100 (0: 'none', 100: 'debug').\n\n";
40 }
41 
42 } // namespace CASM
Main CASM namespace.
Definition: APICommand.hh:8
std::string dry_run_help()
Definition: help.cc:7
std::string coordinate_mode_help()
Definition: help.cc:17
std::string verbosity_help()
Definition: help.cc:35
std::string orbit_print_mode_help()
Definition: help.cc:22
std::string indent_space_help()
Definition: help.cc:12
std::string prec_help(std::string what, int default_prec)
Definition: help.cc:28