OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
BetError.h
Go to the documentation of this file.
1 /* error.h
2  error handling definition
3 
4  Project: Beam Envelope Tracker (BET)
5 
6  Revision history
7  Date Description Programmer
8  ------------ -------------------------------------------- --------------
9  07-03-06 Created Rene Bakker
10 
11  Last Revision:
12  $Id: error.h 91 2007-05-06 17:47:45Z bakker $
13 */
14 
15 
16 #ifndef _ERROR_DEF
17 #define _ERROR_DEF
18 
19 #include <stdio.h>
20 #include <string>
21 #include <iostream>
22 
23 void initBetErrorMsg(int level = 0, const char *fbase = NULL);
24 void initBetErrorFilename(const char *fbase);
25 
26 void writeBetError(std::string err = "");
27 
28 void setBetReportLevel(int level);
29 
30 #endif
void writeBetError(std::string err)
Definition: BetError.cpp:36
void setBetReportLevel(int level)
Definition: BetError.cpp:32
void initBetErrorMsg(int level, const char *fbase)
Definition: BetError.cpp:24
void initBetErrorFilename(const char *fbase)
Definition: BetError.cpp:28