31voidphraseOneLine(stringstr, string commentSymbol=(string)("#")); // read and phrase one setting string like "x=1"
32voidreadFromFile(stringfilename, string commentSymbol=(string)("#")); // read in parameters from a file
33voidreadFromArguments(long argc, char * argv[], string commentSymbol=(string)("#"), long start_from=1); // read in parameter from argument list. The process starts with index="start_from".
34boolexist(stringname); // check if parameter with "name" exists
35voidsetVal(stringname, doublevalue); // set the parameter with "name" to value "value"
36doublegetVal(stringname); // return the value for parameter with "name"
37voidecho(); // print out all parameters to the screen
46 -- Bug fix: If the parameter file that is passed to the readFromFile function does not exist, the program stops instead of going into infinite loops.