#ifndef FITSTATECONVERGED_H_
#define FITSTATECONVERGED_H_
//_____________________________________________________________________________
///
/// \class FitStateConverged
///
/// FitStateConverged is the converged state - Iterate calculates
/// number of planes to fit during next iteration.
///
/// \author Sergei avva@fnal.gov
///

#include "FitState.h"

class FitContext;

class FitStateConverged : public FitState {

public:
    
    ///
    /// Iterate
    ///
    void Iterate(FitContext& context) const;
    
    ///
    /// Name() - return name of the state 
    ///
    const std::string& Name() const;    
};

#endif // FITSTATECONVERGED_H_
