Defines |
| #define | Assert(e) if (!(e)) Fatal("", kAssertMsg, _QUOTE_(e), __LINE__, __FILE__) |
| #define | Check(e) if (!(e)) Warning("", kCheckMsg, _QUOTE_(e), __LINE__, __FILE__) |
Typedefs |
| typedef void(* | ErrorHandlerFunc_t )(int level, Bool_t abort, const char *location, const char *msg) |
Functions |
| void | ErrorHandler (int level, const char *location, const char *fmt, va_list va) |
| void | DefaultErrorHandler (int level, Bool_t abort, const char *location, const char *msg) |
| ErrorHandlerFunc_t | SetErrorHandler (ErrorHandlerFunc_t newhandler) |
| ErrorHandlerFunc_t | GetErrorHandler () |
| void | Info (const char *location, const char *msgfmt,...) |
| void | Warning (const char *location, const char *msgfmt,...) |
| void | Error (const char *location, const char *msgfmt,...) |
| void | Break (const char *location, const char *msgfmt,...) |
| void | SysError (const char *location, const char *msgfmt,...) |
| void | Fatal (const char *location, const char *msgfmt,...) |
| void | AbstractMethod (const char *method) |
| void | MayNotUse (const char *method) |
Variables |
| const int | kInfo = 0 |
| const int | kWarning = 1000 |
| const int | kError = 2000 |
| const int | kBreak = 3000 |
| const int | kSysError = 4000 |
| const int | kFatal = 5000 |
| R__EXTERN const char * | kAssertMsg |
| R__EXTERN const char * | kCheckMsg |
| R__EXTERN int | gErrorIgnoreLevel |
| R__EXTERN int | gErrorAbortLevel |