| 171 |
virtual unsigned int NFree() const { return fDim; } |
virtual unsigned int NFree() const { return fDim; } |
| 172 |
|
|
| 173 |
/// minimizer provides error and error matrix |
/// minimizer provides error and error matrix |
| 174 |
virtual bool ProvidesError() const { return true; } |
virtual bool ProvidesError() const { return false; } |
| 175 |
|
|
| 176 |
/// return errors at the minimum |
/// return errors at the minimum |
| 177 |
virtual const double * Errors() const { |
virtual const double * Errors() const { |
| 178 |
static std::vector<double> err; |
return 0; |
|
err.resize(fDim); |
|
|
return &err.front(); |
|
| 179 |
} |
} |
| 180 |
|
|
| 181 |
/** return covariance matrices elements |
/** return covariance matrices elements |
| 203 |
|
|
| 204 |
double fMinVal; |
double fMinVal; |
| 205 |
double fLSTolerance; // Line Search Tolerance |
double fLSTolerance; // Line Search Tolerance |
| 206 |
mutable std::vector<double> fValues; |
std::vector<double> fValues; |
| 207 |
//mutable std::vector<double> fErrors; |
//mutable std::vector<double> fErrors; |
| 208 |
std::vector<double> fSteps; |
std::vector<double> fSteps; |
| 209 |
std::vector<std::string> fNames; |
std::vector<std::string> fNames; |