00001 // $Id: DbuBits.h,v 1.2 2004/11/11 15:46:07 rhatcher Exp $ 00002 00003 #ifndef DBUBITS_H 00004 #define DBUBITS_H 00005 00007 // DbuBits 00008 // 00009 // Package: DatabaseUpdater 00010 // 00011 // Concept: Common bits for Dbu tasks 00012 // 00013 // R. Hatcher 2002-04-19 00015 00016 namespace DbuBits { 00017 00018 // flag bits for "consistency" tagging 00019 // use of BIT() makes rootcint barf 00020 typedef enum EConsistencyBits { 00021 kRecCountUnverified = 0x00000001, 00022 kSawNoRunStart = 0x00000002, 00023 kSawNoRunComment = 0x00000004, 00024 kSawNoRunEnd = 0x00000008, 00025 kSawNoRunConfig = 0x00000010, 00026 kSawNoConfigFiles = 0x00000020, 00027 kInProgress = 0x10000000, 00028 00029 kDefaultConsistency = kRecCountUnverified | 00030 kSawNoRunStart | 00031 kSawNoRunComment | 00032 kSawNoRunEnd | 00033 kSawNoRunConfig | 00034 kSawNoConfigFiles | 00035 kInProgress 00036 } ConsistencyBits_t; 00037 00038 } 00039 00040 #endif // DBUBITS_H
1.3.9.1