GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
err_mask_def.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef ERR_MASK_DEF_H
15#define ERR_MASK_DEF_H
16
17#include "typedefs.h"
18/* ++++++++++++++++++++++++++
19 * +++ err_mask_def.h +++
20 * ++++++++++++++++++++++++++
21 * RSMayer
22 * 08-Feb-1994
23 * output mask definitions
24 * last update: 10-Feb-1994:RSM, MASK__DEBUG, MASK__VERBOSE
25 * last update: 15-Feb-1994:RSM, File renamed to err_mask_def.h
26 */
27
28#define MASK__DEBUG 1 /* output for debug purpose */
29#define MASK__VERBOSE 2 /* verbose output */
30/* */
31#define MASK__PRTNULL 0x0 /* no output, i.e. output suppressed */
32#define MASK__PRTTERM 0x80000000 /* Terminal output only */
33#define MASK__PRTSLOG 0x20000000 /* Log file output */
34#define MASK__PRTT 0xa0000000 /* Terminal and log file output */
35#define MASK__PRTGLOG 0x10000000 /* not implemented */
36#define MASK__PRTPLOG 0x08000000 /* not implemented */
37#define MASK__PRTCLOG 0x04000000 /* not implemented */
38#define MASK__PRTERRL 0x40000000 /* not implemented */
39/* */
40#define MASK__PRTL 0x20000000 /* not implemented */
41#define MASK__PRTE 0xf0000000 /* not implemented */
42#define MASK__PRTG 0xb0000000 /* not implemented */
43/* */
44#define MASK__PRTNOPAD 0x00000100 /* not implemented */
45/* */
46#define MASK__PRTOPEN 1 /* not implemented */
47#define MASK__PRTCLOSE 2 /* not implemented */
48#define MASK__PRTFLUSH 4 /* not implemented */
49
50#endif