Hi Petar,
In Root 2.21/03, Fons fixed a problem in Tstring::ReadToken.
At least, I checked that your above commands work correctly with
our current version 2.21/07.
Note that TMinuit has a member function TMinuit::mncomd to execute
a const char *command. There were several problems with this function.
They were fixed in 2.21/05
Christian lacunza has suggested a set of new functions in the TMinuit
class.
These functions simplify the use of the TMinuit class:
I have added TMinuit::Command(const char *command) also.
Int_t Command(const char *command);
Int_t DefineParameter( Int_t parNo, const char *name, Double_t
initVal, Double_t initErr, Double_t lowerLimit, Double_t
upperLimit );
Int_t FixParameter( Int_t parNo );
Int_t GetParameter( Int_t parNo, Double_t& current_value,
Double_t& current_error );
Int_t Migrad();
Int_t Release( Int_t parNo );
Int_t SetErrorDef( Double_t up );
Int_t SetPrintLevel( Int_t printLevel=0 );
Rene Brun