Re: Minuit printout

Rene Brun (Rene.Brun@cern.ch)
Tue, 28 Jul 1998 16:24:21 +0200


Nikolai Yu. Zaitsev wrote:
>
> Dear Rooters,
>
> Does anybody now how to switch-off the TMinuit print-out?
>
> Thanks fro help,
> Nikolai.

If you use functions such as TH1::Fit or TGraph::Fit, you can use
the option "Q" (Quiet) to remove the Minuit print-out.
example
hist->Fit("gaus","Q");

If you use TMinuit directly, you can set the print level
via TMinuit::mnexcm. Example
Double_t arglist[5];
arglist[0] = 0;
Int_t ierr = 0;
gMinuit->mnexcm("SET PRINT",arglist,1,ierr);

For more details, do:
gMinuit->mnhelp("*");
gMinuit->mnhelp("SET");

Rene Brun