added some user output info
This commit is contained in:
parent
446049e132
commit
ef426d2a77
@ -121,14 +121,24 @@ bool PFitter::DoFit()
|
|||||||
for (unsigned int i=0; i<fCmdList.size(); i++) {
|
for (unsigned int i=0; i<fCmdList.size(); i++) {
|
||||||
switch (fCmdList[i]) {
|
switch (fCmdList[i]) {
|
||||||
case PMN_INTERACTIVE:
|
case PMN_INTERACTIVE:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command INTERACTIVE is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_CONTOURS:
|
case PMN_CONTOURS:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command CONTOURS is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_EIGEN:
|
case PMN_EIGEN:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command EIGEN is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_HESSE:
|
case PMN_HESSE:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command HESSE is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_MACHINE_PRECISION:
|
case PMN_MACHINE_PRECISION:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command MACHINE_PRECISION is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_MIGRAD:
|
case PMN_MIGRAD:
|
||||||
status = ExecuteMigrad();
|
status = ExecuteMigrad();
|
||||||
@ -140,6 +150,8 @@ bool PFitter::DoFit()
|
|||||||
status = ExecuteMinos();
|
status = ExecuteMinos();
|
||||||
break;
|
break;
|
||||||
case PMN_PLOT:
|
case PMN_PLOT:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command PLOT is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_SAVE:
|
case PMN_SAVE:
|
||||||
status = ExecuteSave();
|
status = ExecuteSave();
|
||||||
@ -150,10 +162,16 @@ bool PFitter::DoFit()
|
|||||||
status = ExecuteSimplex();
|
status = ExecuteSimplex();
|
||||||
break;
|
break;
|
||||||
case PMN_USER_COVARIANCE:
|
case PMN_USER_COVARIANCE:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command USER_COVARIANCE is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_USER_PARAM_STATE:
|
case PMN_USER_PARAM_STATE:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command USER_PARAM_STATE is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
case PMN_PRINT:
|
case PMN_PRINT:
|
||||||
|
cout << endl << "**WARNING** from PFitter::DoFit() : the command PRINT is not yet implemented.";
|
||||||
|
cout << endl;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cout << endl << "**PANIC ERROR**: PFitter::DoFit(): You should never have reached this point" << endl;
|
cout << endl << "**PANIC ERROR**: PFitter::DoFit(): You should never have reached this point" << endl;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user