Go to the source code of this file.
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const ContoursError &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const FunctionMinimum &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const LASymMatrix &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const LAVector &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MinimumState &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MinosError &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MnGlobalCorrelationCoeff &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MnMachinePrecision &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MnUserCovariance &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MnUserParameters &) |
|
std::ostream & | ROOT::Minuit2::operator<< (std::ostream &, const MnUserParameterState &) |
|
◆ MN_ERROR_MSG
#define MN_ERROR_MSG |
( |
|
str | ) |
|
Value: if (MnPrint::Level() >= 0)
MN_OS <<
"Error: " << str \
<< std::endl;
Definition at line 113 of file MnPrint.h.
◆ MN_ERROR_MSG2
#define MN_ERROR_MSG2 |
( |
|
loc, |
|
|
|
str |
|
) |
| |
Value: if (MnPrint::Level() >= 0)
MN_OS <<
"Error in " << loc <<
" : " << str \
<< std::endl;
Definition at line 127 of file MnPrint.h.
◆ MN_ERROR_VAL
#define MN_ERROR_VAL |
( |
|
x | ) |
if (MnPrint::Level() >= 0) MN_OS << "Error: " << #x << " = " << (x) << std::endl; |
◆ MN_ERROR_VAL2
#define MN_ERROR_VAL2 |
( |
|
loc, |
|
|
|
x |
|
) |
| if (MnPrint::Level() >= 0) MN_OS << "Error in " << loc << " : " << #x << " = " << (x) << std::endl; |
◆ MN_INFO_MSG
#define MN_INFO_MSG |
( |
|
str | ) |
|
Value: if (MnPrint::Level() > 0)
MN_OS <<
"Info: " << str \
<< std::endl;
Definition at line 110 of file MnPrint.h.
◆ MN_INFO_MSG2
#define MN_INFO_MSG2 |
( |
|
loc, |
|
|
|
str |
|
) |
| |
Value: if (MnPrint::Level() > 0)
MN_OS <<
"Info in " << loc <<
" : " << str \
<< std::endl;
Definition at line 124 of file MnPrint.h.
◆ MN_INFO_VAL
#define MN_INFO_VAL |
( |
|
x | ) |
if (MnPrint::Level() > 0) MN_OS << "Info: " << #x << " = " << (x) << std::endl; |
◆ MN_INFO_VAL2
#define MN_INFO_VAL2 |
( |
|
loc, |
|
|
|
x |
|
) |
| if (MnPrint::Level() > 0) MN_OS << "Info in " << loc << " : " << #x << " = " << (x) << std::endl; |
◆ MN_OS