Elements
5.10
A C++ base framework for the Euclid Software.
|
Go to the documentation of this file.
41 return input_variable;
48 const double second)
const {
49 double tolerance = 1
e-12;
50 if (std::abs(
second) < tolerance) {
58 vector_unique_ptr->size();
static ClassExample factoryMethod(const std::int64_t source_id, const double ra)
Example factory method.
static std::string s_static_string
An example of a static string.
defines the base Elements exception class
Elements base exception class.
constexpr double e
The base of the natural logarithm .
double divideNumbers(const double first, const double second) const
Divide two double variables.
void passingUniquePointer(std::unique_ptr< std::vector< double >> vector_unique_ptr) const
Example method with a unique pointer argument.
double fundamentalTypeMethod(const double input_variable) const
Simple method example.
void passingObjectInGeneral(const std::vector< double > &input_object) const
Example method taking an object in input.