File indexing completed on 2025-01-18 09:57:36
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef GAUDIKERNEL_CLASSID_H
0012 #define GAUDIKERNEL_CLASSID_H
0013
0014
0015 #include "GaudiKernel/Kernel.h"
0016
0017
0018 typedef unsigned int CLID;
0019
0020
0021
0022
0023
0024 static const CLID CLID_NULL = 0;
0025 static const CLID CLID_Catalog = 3;
0026
0027 static const CLID CLID_Run = 100;
0028
0029 static const CLID CLID_ObjectVector = 1 << 17;
0030 static const CLID CLID_ObjectList = 1 << 18;
0031 static const CLID CLID_Any = 0x0000FFFF;
0032
0033 static const CLID CLID_StatisticsFile = 40;
0034 static const CLID CLID_StatisticsDirectory = 41;
0035
0036
0037 static const CLID CLID_H1D = 32;
0038 static const CLID CLID_H1DVar = 33;
0039 static const CLID CLID_ProfileH = 34;
0040 static const CLID CLID_ProfileHVar = 35;
0041 static const CLID CLID_H2D = 36;
0042 static const CLID CLID_H2DF = 37;
0043 static const CLID CLID_H2DVar = 38;
0044 static const CLID CLID_ProfileH2 = 39;
0045 static const CLID CLID_H3D = 50;
0046 static const CLID CLID_H3DF = 51;
0047 static const CLID CLID_H3DVar = 52;
0048
0049
0050 static const CLID CLID_NTupleFile = CLID_StatisticsFile;
0051 static const CLID CLID_NTupleDirectory = CLID_StatisticsDirectory;
0052 static const CLID CLID_RowWiseTuple = 42;
0053 static const CLID CLID_ColumnWiseTuple = 43;
0054
0055
0056
0057
0058
0059 const long TEST_StorageType = 0x00;
0060
0061 const long SICB_StorageType = 0x01;
0062 const long ROOT_StorageType = 0x02;
0063 const long OBJY_StorageType = 0x03;
0064 const long ESC_StorageType = 0x04;
0065 const long CDF_StorageType = 0x05;
0066 const long HBOOK_StorageType = 0x06;
0067 const long XML_StorageType = 0x07;
0068 const long DBOOMS_StorageType = 0x08;
0069 const long CONDDB_StorageType = 0x09;
0070 const long ACCESS_StorageType = 0x0a;
0071 const long EXCEL_StorageType = 0x0b;
0072 const long TEXTJET_StorageType = 0x0c;
0073 const long SQLSERVER_StorageType = 0x0d;
0074 const long MYSQL_StorageType = 0x0e;
0075 const long ORACLE_StorageType = 0x0f;
0076 const long XMLSTRING_StorageType = 0x10;
0077 const long POOL_StorageType = 0x100;
0078 const long POOL_ROOT_StorageType = 0x200;
0079 const long POOL_ROOTKEY_StorageType = 0x201;
0080 const long POOL_ROOTTREE_StorageType = 0x202;
0081 const long POOL_ACCESS_StorageType = 0x400;
0082 const long POOL_MYSQL_StorageType = 0x800;
0083 const long POOL_ORACLE_StorageType = 0x900;
0084 const long RAWDATA_StorageType = 0xA000000;
0085 const long RAWDESC_StorageType = 0xC000000;
0086 const long MBM_StorageType = 0xB000000;
0087
0088
0089 const long GiGaKine_StorageType = 0x32;
0090 const long GiGaGeom_StorageType = 0x33;
0091 const long GiGaTraj_StorageType = 0x34;
0092 const long GiGaHits_StorageType = 0x35;
0093
0094 #endif