GENFIT  Rev:NoNumberAvailable
Public Member Functions | Protected Attributes | List of all members
genfit::KalmanFitStatus Class Reference

FitStatus for use with AbsKalmanFitter implementations. More...

#include <KalmanFitStatus.h>

Inheritance diagram for genfit::KalmanFitStatus:
Inheritance graph
Collaboration diagram for genfit::KalmanFitStatus:
Collaboration graph

Public Member Functions

 KalmanFitStatus ()
 
virtual ~KalmanFitStatus ()
 
virtual FitStatusclone () const
 
unsigned int getNumIterations () const
 
bool isFittedWithDaf () const
 
bool isFittedWithReferenceTrack () const
 
double getTrackLen () const
 
double getForwardChi2 () const
 
double getBackwardChi2 () const
 
double getForwardNdf () const
 
double getBackwardNdf () const
 
double getForwardPVal () const
 
double getBackwardPVal () const
 
void setNumIterations (unsigned int numIterations)
 
void setIsFittedWithDaf (bool fittedWithDaf=true)
 
void setIsFittedWithReferenceTrack (bool fittedWithReferenceTrack=true)
 
void setTrackLen (double trackLen)
 
void setForwardChi2 (double fChi2)
 
void setBackwardChi2 (double bChi2)
 
void setForwardNdf (double fNdf)
 
void setBackwardNdf (double bNdf)
 
virtual void Print (const Option_t *="") const
 
- Public Member Functions inherited from genfit::FitStatus
 FitStatus ()
 
virtual ~FitStatus ()
 
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)
 
PruneFlagsgetPruneFlags ()
 
void setChi2 (const double &chi2)
 
void setNdf (const double &ndf)
 

Protected Attributes

unsigned int numIterations_
 
bool fittedWithDaf_
 
bool fittedWithReferenceTrack_
 
double trackLen_
 
double fChi2_
 
double fNdf_
 
double fPval_
 
- Protected Attributes inherited from genfit::FitStatus
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_
 

Additional Inherited Members

- Protected Member Functions inherited from genfit::FitStatus
 ClassDef (FitStatus, 3)
 

Detailed Description

FitStatus for use with AbsKalmanFitter implementations.

Definition at line 36 of file KalmanFitStatus.h.

Constructor & Destructor Documentation

◆ KalmanFitStatus()

genfit::KalmanFitStatus::KalmanFitStatus ( )
inline

Definition at line 40 of file KalmanFitStatus.h.

Referenced by clone().

◆ ~KalmanFitStatus()

virtual genfit::KalmanFitStatus::~KalmanFitStatus ( )
inlinevirtual

Definition at line 44 of file KalmanFitStatus.h.

Member Function Documentation

◆ clone()

virtual FitStatus* genfit::KalmanFitStatus::clone ( ) const
inlinevirtual

Reimplemented from genfit::FitStatus.

Definition at line 46 of file KalmanFitStatus.h.

References KalmanFitStatus().

◆ getBackwardChi2()

double genfit::KalmanFitStatus::getBackwardChi2 ( ) const
inline

Definition at line 53 of file KalmanFitStatus.h.

References genfit::FitStatus::getChi2().

◆ getBackwardNdf()

double genfit::KalmanFitStatus::getBackwardNdf ( ) const
inline

Definition at line 55 of file KalmanFitStatus.h.

References genfit::FitStatus::getNdf().

◆ getBackwardPVal()

double genfit::KalmanFitStatus::getBackwardPVal ( ) const
inline

Definition at line 58 of file KalmanFitStatus.h.

References genfit::FitStatus::getPVal().

Referenced by Print(), and genfit::DAF::processTrackWithRep().

◆ getForwardChi2()

double genfit::KalmanFitStatus::getForwardChi2 ( ) const
inline

Definition at line 52 of file KalmanFitStatus.h.

References fChi2_.

◆ getForwardNdf()

double genfit::KalmanFitStatus::getForwardNdf ( ) const
inline

Definition at line 54 of file KalmanFitStatus.h.

References fNdf_.

◆ getForwardPVal()

double genfit::KalmanFitStatus::getForwardPVal ( ) const
inline

Definition at line 57 of file KalmanFitStatus.h.

References fChi2_, and fNdf_.

Referenced by Print(), and genfit::DAF::processTrackWithRep().

◆ getNumIterations()

unsigned int genfit::KalmanFitStatus::getNumIterations ( ) const
inline

Definition at line 48 of file KalmanFitStatus.h.

References numIterations_.

◆ getTrackLen()

double genfit::KalmanFitStatus::getTrackLen ( ) const
inline

Definition at line 51 of file KalmanFitStatus.h.

References trackLen_.

◆ isFittedWithDaf()

bool genfit::KalmanFitStatus::isFittedWithDaf ( ) const
inline

Definition at line 49 of file KalmanFitStatus.h.

References fittedWithDaf_.

◆ isFittedWithReferenceTrack()

bool genfit::KalmanFitStatus::isFittedWithReferenceTrack ( ) const
inline

Definition at line 50 of file KalmanFitStatus.h.

References fittedWithReferenceTrack_.

◆ Print()

void genfit::KalmanFitStatus::Print ( const Option_t *  = "") const
virtual

◆ setBackwardChi2()

void genfit::KalmanFitStatus::setBackwardChi2 ( double  bChi2)
inline

◆ setBackwardNdf()

void genfit::KalmanFitStatus::setBackwardNdf ( double  bNdf)
inline

◆ setForwardChi2()

void genfit::KalmanFitStatus::setForwardChi2 ( double  fChi2)
inline

◆ setForwardNdf()

void genfit::KalmanFitStatus::setForwardNdf ( double  fNdf)
inline

◆ setIsFittedWithDaf()

void genfit::KalmanFitStatus::setIsFittedWithDaf ( bool  fittedWithDaf = true)
inline

Definition at line 61 of file KalmanFitStatus.h.

References fittedWithDaf_.

Referenced by genfit::DAF::processTrackWithRep().

◆ setIsFittedWithReferenceTrack()

void genfit::KalmanFitStatus::setIsFittedWithReferenceTrack ( bool  fittedWithReferenceTrack = true)
inline

◆ setNumIterations()

void genfit::KalmanFitStatus::setNumIterations ( unsigned int  numIterations)
inline

◆ setTrackLen()

void genfit::KalmanFitStatus::setTrackLen ( double  trackLen)
inline

Definition at line 63 of file KalmanFitStatus.h.

References trackLen_.

Referenced by genfit::KalmanFitterRefTrack::prepareTrack().

Member Data Documentation

◆ fChi2_

double genfit::KalmanFitStatus::fChi2_
protected

Definition at line 79 of file KalmanFitStatus.h.

Referenced by getForwardChi2(), getForwardPVal(), Print(), and setForwardChi2().

◆ fittedWithDaf_

bool genfit::KalmanFitStatus::fittedWithDaf_
protected

Definition at line 74 of file KalmanFitStatus.h.

Referenced by isFittedWithDaf(), Print(), and setIsFittedWithDaf().

◆ fittedWithReferenceTrack_

bool genfit::KalmanFitStatus::fittedWithReferenceTrack_
protected

◆ fNdf_

double genfit::KalmanFitStatus::fNdf_
protected

Definition at line 80 of file KalmanFitStatus.h.

Referenced by getForwardNdf(), getForwardPVal(), Print(), and setForwardNdf().

◆ fPval_

double genfit::KalmanFitStatus::fPval_
protected

Definition at line 81 of file KalmanFitStatus.h.

◆ numIterations_

unsigned int genfit::KalmanFitStatus::numIterations_
protected

Definition at line 73 of file KalmanFitStatus.h.

Referenced by getNumIterations(), Print(), and setNumIterations().

◆ trackLen_

double genfit::KalmanFitStatus::trackLen_
protected

Definition at line 77 of file KalmanFitStatus.h.

Referenced by getTrackLen(), Print(), and setTrackLen().


The documentation for this class was generated from the following files: