|
Penning Trap Simulation
Simulate particle behavior inside a Penning Trap
|
Implementation of the utils. More...
Go to the source code of this file.
Functions | |
| std::string | scientific_format (double d, int width, int prec) |
| Turns a double into a string written in scientific format. | |
| std::string | scientific_format (const std::vector< double > &v, int width, int prec) |
| Turns a vector of doubles into a string written in scientific format. | |
| void | m_assert (bool expr, std::string expr_str, std::string f, std::string file, int line, std::string msg) |
| Test an expression, confirm that test is ok, or abort execution. | |
| bool | arma_vector_close_to (arma::vec &a, arma::vec &b, double tol) |
| Test if two armadillo vectors are close to each other. | |
| bool | mkpath (std::string path, int mode) |
| Make path given. | |
| bool arma_vector_close_to | ( | arma::vec & | a, |
| arma::vec & | b, | ||
| double | tol = 1e-8 |
||
| ) |
| void m_assert | ( | bool | expr, |
| std::string | expr_str, | ||
| std::string | func, | ||
| std::string | file, | ||
| int | line, | ||
| std::string | msg | ||
| ) |
Test an expression, confirm that test is ok, or abort execution.
This function takes in an expression and prints an OK message if it's true, or it prints a fail message and aborts execution if it fails.
| expr | The expression to be evaluated |
| expr_str | The stringified version of the expression |
| func | The function name of the caller |
| file | The file of the caller |
| line | The line number where this function is called from |
| msg | The message to be displayed |
| bool mkpath | ( | std::string | path, |
| int | mode = 0777 |
||
| ) |
| std::string scientific_format | ( | const std::vector< double > & | v, |
| int | width = 20, |
||
| int | prec = 10 |
||
| ) |
Turns a vector of doubles into a string written in scientific format.
The code is stolen from https://github.com/anderkve/FYS3150.
| v | The vector to stringify |
| width | The reserved width of the string |
| prec | The precision of the stringified number |
| std::string scientific_format | ( | double | d, |
| int | width = 20, |
||
| int | prec = 10 |
||
| ) |
Turns a double into a string written in scientific format.
The code is stolen from https://github.com/anderkve/FYS3150.
| d | The number to stringify |
| width | The reserved width of the string |
| prec | The precision of the stringified number |