#ifndef FITSTATEINITIAL_H
#define FITSTATEINITIAL_H
//_____________________________________________________________________________
///
/// \class FitStateInitial 
///
///
///
/// \author Sergei avva@fnal.gov
///

#include <FitState.h>

class FitStateInitial : public FitState {

public:

    void Iterate(FitContext& context) const;

    ///
    /// Name() - return name of the state 
    ///
    const std::string& Name() const;    
};

#endif
