#include <FitStateFinal.h>
Inheritance diagram for FitStateFinal:

Public Member Functions | |
| void | Iterate (FitContext &context) const |
| const std::string & | Name () const |
Definition at line 17 of file FitStateFinal.h.
|
|
Iterate Implements FitState. Definition at line 44 of file FitStateFinal.cxx. References FitContext::fTimesConverged, and MSG. 00045 {
00046 if ( context.fTimesConverged != 0 ) {
00047 MSG("FitTrackSA",Msg::kInfo) << "Fit Successful!\n";
00048 } else {
00049 MSG("FitTrackSA",Msg::kInfo) << "Fit Failed!\n";
00050 }
00051 }
|
|
|
Name() - return name of the state Implements FitState. Definition at line 57 of file FitStateFinal.cxx. 00058 {
00059 return FINAL_FIT_STATE;
00060 }
|
1.3.9.1