| 77 |
#include "Math/Util.h" |
#include "Math/Util.h" |
| 78 |
|
|
| 79 |
#define MATH_INFO_MSG(loc,str) \ |
#define MATH_INFO_MSG(loc,str) \ |
| 80 |
::Info("ROOT::Math",str); |
{std::string sl = "ROOT::Math::" + std::string(loc); \ |
| 81 |
|
::Info(sl.c_str(),str);} |
| 82 |
#define MATH_WARN_MSG(loc,str) \ |
#define MATH_WARN_MSG(loc,str) \ |
| 83 |
::Warning("ROOT::Math",str); |
{std::string sl = "ROOT::Math::" + std::string(loc); \ |
| 84 |
|
::Warning(sl.c_str(),str);} |
| 85 |
#define MATH_ERROR_MSG(loc,str) \ |
#define MATH_ERROR_MSG(loc,str) \ |
| 86 |
::Error("ROOT::Math",str); |
{std::string sl = "ROOT::Math::" + std::string(loc); \ |
| 87 |
|
::Error(sl.c_str(),str);} |
| 88 |
|
|
| 89 |
# define MATH_INFO_VAL(loc,x) \ |
# define MATH_INFO_VAL(loc,x) \ |
| 90 |
{std::string sl = "ROOT::Math::" + std::string(loc); \ |
{std::string sl = "ROOT::Math::" + std::string(loc); \ |