A class for setting an example for Doxygen documentation. More...
#include <CorrelatedGaussianObservables.h>
A class for setting an example for Doxygen documentation.
This class shows how different members of a class and the class itself can be documneted in Doxygen.
Definition at line 28 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
Public Member Functions | |
| void | AddObs (Observable &Obs_i) |
| A method to add observables to the list of Doxygen. More... | |
| void | ComputeCov (gslpp::matrix< double > Corr) |
| Computes the covariance matrix for the Doxygen set. More... | |
| DoxyExample (std::string name_i) | |
| The default constructor. More... | |
| DoxyExample (const DoxyExample &orig) | |
| The copy constructor. More... | |
| gslpp::matrix< double > | getCov () const |
| A get method to access the covariance matrix of the Doxygen. More... | |
| std::string | getName () const |
| A get method to access the name of the Doxygen set. More... | |
| std::vector< Observable > | getObs () const |
| A get method to access the vector of observables that are defined in one Doxygen set. More... | |
| void | setName (std::string name) |
| A set method to fix the name of the set of Doxygen. More... | |
| virtual | ~DoxyExample () |
| The default destructor. More... | |
Private Attributes | |
| gslpp::matrix< double > * | Cov |
| std::string | name |
| std::vector< Observable > | Obs |
| DoxyExample::DoxyExample | ( | std::string | name_i | ) |
The default constructor.
| [in] | name_i | a given name for the set of Doxygen observables |
Definition at line 10 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.cpp.
| DoxyExample::DoxyExample | ( | const DoxyExample & | orig | ) |
The copy constructor.
Definition at line 15 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.cpp.
|
virtual |
The default destructor.
Definition at line 22 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.cpp.
| void DoxyExample::AddObs | ( | Observable & | Obs_i | ) |
A method to add observables to the list of Doxygen.
| obs_i | reference to an object of type Observable() |
Definition at line 28 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.cpp.
| void DoxyExample::ComputeCov | ( | gslpp::matrix< double > | Corr | ) |
Computes the covariance matrix for the Doxygen set.
| Corr | the correlation matrix for the Doxygen set |
Definition at line 33 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.cpp.
|
inline |
A get method to access the covariance matrix of the Doxygen.
| the | covariance matrix |
Definition at line 91 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
inline |
A get method to access the name of the Doxygen set.
Definition at line 73 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
inline |
A get method to access the vector of observables that are defined in one Doxygen set.
Definition at line 64 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
inline |
A set method to fix the name of the set of Doxygen.
| name | the name |
Definition at line 82 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
private |
The covariance matrix.
Definition at line 98 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
private |
The name of the correlated Gaussian Observables set.
Definition at line 99 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.
|
private |
A vector of observables whose correlation will be calculated.
Definition at line 97 of file doc/Developer Support/Doxygen Support/CorrelatedGaussianObservables.h.