File indexing completed on 2025-08-05 08:18:24
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include "KalmanFitStatus.h"
0022
0023 #include "IO.h"
0024
0025 namespace genfit {
0026
0027 void KalmanFitStatus::Print(const Option_t*) const
0028 {
0029 FitStatus::Print();
0030 if (fittedWithDaf_) printOut << " track has been fitted with DAF,";
0031 if (fittedWithReferenceTrack_) printOut << " track has been fitted with reference track,";
0032 if (isFitted_) {
0033 printOut << " numIterations = " << numIterations_ << ", ";
0034 printOut << "track length = " << trackLen_ << ", ";
0035 printOut << "fChi2 = " << fChi2_ << ", ";
0036 printOut << "bChi2 = " << FitStatus::getChi2() << ", ";
0037 printOut << "fNdf = " << fNdf_ << ", ";
0038 printOut << "bNdf = " << FitStatus::getNdf() << ", ";
0039 printOut << "fPVal = " << getForwardPVal() << ", ";
0040 printOut << "bPVal = " << getBackwardPVal() << "\n";
0041 }
0042 printOut << "\n";
0043 }
0044
0045 }