#include <NCFitterTypes.h>
Public Member Functions | |
| CoordBase () | |
| CoordBase (int n) | |
| Create with n slots preallocated. | |
| CoordBase (T x, T y) | |
| Special-case constructor for 2D coordinates. | |
| std::ostream & | Print (std::ostream &os=std::cout) const |
| Helper function for the operator<< functions. | |
| T & | x () |
| Convenience accessor function. | |
| T & | y () |
| Convenience accessor function. | |
| T & | z () |
| Convenience accessor function. | |
| T | x () const |
| Convenience accessor function. | |
| T | y () const |
| Convenience accessor function. | |
| T | z () const |
| Convenience accessor function. | |
You don't want to be creating one of these explicity use CoordNDim or CoordInt
Definition at line 28 of file NCFitterTypes.h.
|
|||||||||
|
Definition at line 31 of file NCFitterTypes.h. 00031 {}
|
|
||||||||||
|
Create with n slots preallocated.
Definition at line 33 of file NCFitterTypes.h. 00033 : std::vector<T>(n){}
|
|
||||||||||||||||
|
Special-case constructor for 2D coordinates.
Definition at line 37 of file NCFitterTypes.h. 00037 {push_back(x); push_back(y);}
|
|
||||||||||
|
Helper function for the operator<< functions.
Definition at line 24 of file NCFitterTypes.cxx. Referenced by NC::Fitter::operator<<(). 00025 {
00026 os << "[ ";
00027 for(unsigned int n = 0; n < this->size(); ++n) os << this->at(n) << " ";
00028 os << "]";
00029 return os;
00030 }
|
|
|||||||||
|
Convenience accessor function.
Definition at line 45 of file NCFitterTypes.h. |
|
|||||||||
|
Convenience accessor function.
Definition at line 42 of file NCFitterTypes.h. Referenced by NC::Fitter::MarginalizeSimpleInt::EvalAtEx(), NC::Fitter::FindContourInt(), and NC::Fitter::GridSearchInt(). |
|
|||||||||
|
Convenience accessor function.
Definition at line 46 of file NCFitterTypes.h. |
|
|||||||||
|
Convenience accessor function.
Definition at line 43 of file NCFitterTypes.h. Referenced by NC::Fitter::MarginalizeSimpleInt::EvalAtEx(), NC::Fitter::FindContourInt(), and NC::Fitter::GridSearchInt(). |
|
|||||||||
|
Convenience accessor function.
Definition at line 47 of file NCFitterTypes.h. |
|
|||||||||
|
Convenience accessor function.
Definition at line 44 of file NCFitterTypes.h. |
1.3.9.1