![]() |
PandaRoot
|
Class where important numbers and properties of a fit can be stored. More...
#include <FitStatus.h>
Public Member Functions | |
FitStatus () | |
virtual | ~FitStatus () |
virtual FitStatus * | clone () const |
bool | isFitted () const |
Has the track been fitted? More... | |
bool | isFitConverged (bool inAllPoints=true) const |
Did the fit converge (in all Points or only partially)? More... | |
bool | isFitConvergedFully () const |
bool | isFitConvergedPartially () const |
int | getNFailedPoints () const |
bool | hasTrackChanged () const |
Has anything in the Track been changed since the fit? More... | |
bool | isTrackPruned () const |
Has the track been pruned after the fit? More... | |
double | getCharge () const |
Get the fitted charge. More... | |
double | getChi2 () const |
Get chi^2 of the fit. More... | |
double | getNdf () const |
Get the degrees of freedom of the fit. More... | |
virtual double | getPVal () const |
Get the p value of the fit. More... | |
void | setIsFitted (bool fitted=true) |
void | setIsFitConvergedFully (bool fitConverged=true) |
void | setIsFitConvergedPartially (bool fitConverged=true) |
void | setNFailedPoints (int nFailedPoints) |
void | setHasTrackChanged (bool trackChanged=true) |
void | setCharge (double charge) |
PruneFlags & | getPruneFlags () |
void | setChi2 (const double &chi2) |
void | setNdf (const double &ndf) |
virtual void | Print (const Option_t *="") const |
Protected Member Functions | |
ClassDef (FitStatus, 3) | |
Protected Attributes | |
bool | isFitted_ |
has the track been fitted? More... | |
bool | isFitConvergedFully_ |
did the fit converge with all TrackPoints? More... | |
bool | isFitConvergedPartially_ |
did the fit converge with a subset of all TrackPoints? More... | |
int | nFailedPoints_ |
Number of failed TrackPoints. More... | |
bool | trackHasChanged_ |
has anything in the Track been changed since the fit? -> fit isn't valid anymore More... | |
PruneFlags | pruneFlags_ |
Prune flags. More... | |
double | charge_ |
fitted charge More... | |
double | chi2_ |
double | ndf_ |
Class where important numbers and properties of a fit can be stored.
Definition at line 82 of file FitStatus.h.
|
inline |
Definition at line 85 of file FitStatus.h.
|
inlinevirtual |
Definition at line 92 of file FitStatus.h.
|
protected |
|
inlinevirtual |
|
inline |
|
inline |
Get chi^2 of the fit.
Definition at line 124 of file FitStatus.h.
Referenced by genfit::KalmanFitStatus::getBackwardChi2().
|
inline |
Get the degrees of freedom of the fit.
Definition at line 126 of file FitStatus.h.
Referenced by genfit::KalmanFitStatus::getBackwardNdf().
|
inline |
Definition at line 116 of file FitStatus.h.
|
inline |
Definition at line 141 of file FitStatus.h.
|
inlinevirtual |
Get the p value of the fit.
Virtual, because the fitter may use a different probability distribution.
Definition at line 132 of file FitStatus.h.
References max().
Referenced by genfit::KalmanFitStatus::getBackwardPVal().
|
inline |
Has anything in the Track been changed since the fit?
Definition at line 118 of file FitStatus.h.
|
inline |
Did the fit converge (in all Points or only partially)?
Per default, this function will only be true, if all TrackPoints (with measurements) have been used in the fit, and the fit has converged.
If one or more TrackPoints have been skipped (e.g. plane could not be constructed or extrapolation to plane failed), but the fit otherwise met the convergence criteria, isFitConverged(false) will return true.
Definition at line 108 of file FitStatus.h.
|
inline |
Definition at line 114 of file FitStatus.h.
|
inline |
Definition at line 115 of file FitStatus.h.
|
inline |
|
inline |
|
virtual |
Reimplemented in genfit::KalmanFitStatus.
|
inline |
Definition at line 139 of file FitStatus.h.
|
inline |
Definition at line 143 of file FitStatus.h.
Referenced by genfit::KalmanFitStatus::setBackwardChi2().
|
inline |
Definition at line 138 of file FitStatus.h.
|
inline |
Definition at line 135 of file FitStatus.h.
|
inline |
Definition at line 136 of file FitStatus.h.
|
inline |
Definition at line 134 of file FitStatus.h.
|
inline |
Definition at line 144 of file FitStatus.h.
References genfit::PruneFlags::Print().
Referenced by genfit::KalmanFitStatus::setBackwardNdf().
|
inline |
Definition at line 137 of file FitStatus.h.
|
protected |
fitted charge
Definition at line 162 of file FitStatus.h.
|
protected |
These are provided for the sake of the fitter, and their interpretation may vary. For the Kalman-derived fitters in particular, this corresponds to the backwards fit.
Definition at line 166 of file FitStatus.h.
|
protected |
did the fit converge with all TrackPoints?
Definition at line 152 of file FitStatus.h.
|
protected |
did the fit converge with a subset of all TrackPoints?
Definition at line 154 of file FitStatus.h.
|
protected |
has the track been fitted?
Definition at line 150 of file FitStatus.h.
|
protected |
Definition at line 167 of file FitStatus.h.
|
protected |
Number of failed TrackPoints.
Definition at line 156 of file FitStatus.h.
|
protected |
Prune flags.
Definition at line 160 of file FitStatus.h.
|
protected |
has anything in the Track been changed since the fit? -> fit isn't valid anymore
Definition at line 158 of file FitStatus.h.