00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #include "typedefs.h" 00017 /* ++++++++++++++++++++++++++ 00018 * +++ err_mask_def.h +++ 00019 * ++++++++++++++++++++++++++ 00020 * RSMayer 00021 * 08-Feb-1994 00022 * output mask definitions 00023 * last update: 10-Feb-1994:RSM, MASK__DEBUG, MASK__VERBOSE 00024 * last update: 15-Feb-1994:RSM, File renamed to err_mask_def.h 00025 */ 00026 00027 #define MASK__DEBUG 1 /* output for debug purpose */ 00028 #define MASK__VERBOSE 2 /* verbose output */ 00029 /* */ 00030 #define MASK__PRTNULL 0x0 /* no output, i.e. output suppressed */ 00031 #define MASK__PRTTERM 0x80000000 /* Terminal output only */ 00032 #define MASK__PRTSLOG 0x20000000 /* Log file output */ 00033 #define MASK__PRTT 0xa0000000 /* Terminal and log file output */ 00034 #define MASK__PRTGLOG 0x10000000 /* not implemented */ 00035 #define MASK__PRTPLOG 0x08000000 /* not implemented */ 00036 #define MASK__PRTCLOG 0x04000000 /* not implemented */ 00037 #define MASK__PRTERRL 0x40000000 /* not implemented */ 00038 /* */ 00039 #define MASK__PRTL 0x20000000 /* not implemented */ 00040 #define MASK__PRTE 0xf0000000 /* not implemented */ 00041 #define MASK__PRTG 0xb0000000 /* not implemented */ 00042 /* */ 00043 #define MASK__PRTNOPAD 0x00000100 /* not implemented */ 00044 /* */ 00045 #define MASK__PRTOPEN 1 /* not implemented */ 00046 #define MASK__PRTCLOSE 2 /* not implemented */ 00047 #define MASK__PRTFLUSH 4 /* not implemented */ 00048 00049 //----------------------------END OF GO4 SOURCE FILE ---------------------