Hi,
I’ve noticed that when using the fit option “E” to invoke Minos the verbosity level does not agree when the “Q” option is specified. Specifically a warning message about fixed parameters. The following is some example code:
TH1F *hist = new TH1F("hist","Hist",100,-1,1);
hist->FillRandom("gaus");
TF1 *fit = new TF1("gaussFit","gaus");
fit->FixParameter(1,0);
hist->Fit(fit,"EQ");
Which then results in the following message:
PARAMETER NUMBER 2 NOT A VARIABLE. IGNORED.
THERE ARE NO MINOS ERRORS TO CALCULATE.
Why is the “Q” option not suppressing this output? It is very bothersome when a fit is performed in a loop with multiple fixed parameters.
Thanks