The Gaudi Framework  v30r3 (a5ef0a68)
ClassID.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_CLASSID_H
2 #define GAUDIKERNEL_CLASSID_H
3 
4 // Include files
5 #include "GaudiKernel/Kernel.h"
6 
8 typedef unsigned int CLID;
9 
10 // Definition of the Class ID's needed by the Framework itself
11 // The ID's reserved range for the framework is 0-199
12 // For other ID's refer to the EventModel.cpp file in the Event Model package
13 
14 static const CLID CLID_NULL = 0;
15 static const CLID CLID_Catalog = 3;
16 
17 static const CLID CLID_Run = 100;
18 // static const CLID CLID_Event = 110;
19 static const CLID CLID_ObjectVector = 1 << 17; // ObjectVector (bit 17 set)
20 static const CLID CLID_ObjectList = 1 << 18; // ObjectList (bit 18 set)
21 static const CLID CLID_Any = 0x0000FFFF;
22 
23 static const CLID CLID_StatisticsFile = 40;
24 static const CLID CLID_StatisticsDirectory = 41;
25 
26 // CLIDs for Histograms
27 static const CLID CLID_H1D = 32; // 1D, gravity bin, fixed binning
28 static const CLID CLID_H1DVar = 33; // 1D, gravity bin, variable binning
29 static const CLID CLID_ProfileH = 34; // 1D, profile bin, fixed binning
30 static const CLID CLID_ProfileHVar = 35; // 1D, profile bin, variable binning
31 static const CLID CLID_H2D = 36; // 2D, weighted bin, fixed binning
32 static const CLID CLID_H2DF = 37; // 2D, float weighted bin, fixed binning
33 static const CLID CLID_H2DVar = 38; // 2D, weighted bin, variable binning
34 static const CLID CLID_ProfileH2 = 39; // 2D, profile bin, fixed binnint
35 static const CLID CLID_H3D = 50; // 3D, weighted bin, fixed binning
36 static const CLID CLID_H3DF = 51; // 3D, float weighted bin, fixed binning
37 static const CLID CLID_H3DVar = 52; // 3D, weighted bin, variable binning
38 
39 // CLIDs for the NTuples
40 static const CLID CLID_NTupleFile = CLID_StatisticsFile;
41 static const CLID CLID_NTupleDirectory = CLID_StatisticsDirectory;
42 static const CLID CLID_RowWiseTuple = 42; // Row-wise N-tuple
43 static const CLID CLID_ColumnWiseTuple = 43; // Column-wise N-tuple
44 
45 // CLIDs fot the AIDA tuples
46 // static const CLID CLID_AIDATuple = 69; // AIDA Tuple
47 
48 // Data storage technique identifiers
49 const long TEST_StorageType = 0x00;
50 
51 const long SICB_StorageType = 0x01;
52 const long ROOT_StorageType = 0x02;
53 const long OBJY_StorageType = 0x03;
54 const long ESC_StorageType = 0x04;
55 const long CDF_StorageType = 0x05;
56 const long HBOOK_StorageType = 0x06;
57 const long XML_StorageType = 0x07;
58 const long DBOOMS_StorageType = 0x08;
59 const long CONDDB_StorageType = 0x09;
60 const long ACCESS_StorageType = 0x0a;
61 const long EXCEL_StorageType = 0x0b;
62 const long TEXTJET_StorageType = 0x0c;
63 const long SQLSERVER_StorageType = 0x0d;
64 const long MYSQL_StorageType = 0x0e;
65 const long ORACLE_StorageType = 0x0f;
66 const long XMLSTRING_StorageType = 0x10;
67 const long POOL_StorageType = 0x100;
68 const long POOL_ROOT_StorageType = 0x200;
69 const long POOL_ROOTKEY_StorageType = 0x201;
70 const long POOL_ROOTTREE_StorageType = 0x202;
71 const long POOL_ACCESS_StorageType = 0x400;
72 const long POOL_MYSQL_StorageType = 0x800;
73 const long POOL_ORACLE_StorageType = 0x900;
74 const long RAWDATA_StorageType = 0xA000000;
75 const long RAWDESC_StorageType = 0xC000000;
76 const long MBM_StorageType = 0xB000000;
77 
78 // define pseudo-storages for GiGa Conversion Services
79 const long GiGaKine_StorageType = 0x32; // = 50 (DEC)
80 const long GiGaGeom_StorageType = 0x33; // = 51 (DEC)
81 const long GiGaTraj_StorageType = 0x34; //
82 const long GiGaHits_StorageType = 0x35; //
83 
84 #endif // GAUDIKERNEL_CLASSID_H
const long TEST_StorageType
Definition: ClassID.h:49
const long HBOOK_StorageType
Definition: ClassID.h:56
const long GiGaTraj_StorageType
Definition: ClassID.h:81
const long GiGaGeom_StorageType
Definition: ClassID.h:80
const long DBOOMS_StorageType
Definition: ClassID.h:58
const long ACCESS_StorageType
Definition: ClassID.h:60
const long ESC_StorageType
Definition: ClassID.h:54
const long MYSQL_StorageType
Definition: ClassID.h:64
const long RAWDATA_StorageType
Definition: ClassID.h:74
const long CONDDB_StorageType
Definition: ClassID.h:59
const long POOL_MYSQL_StorageType
Definition: ClassID.h:72
const long XMLSTRING_StorageType
Definition: ClassID.h:66
const long GiGaHits_StorageType
Definition: ClassID.h:82
const long GiGaKine_StorageType
Definition: ClassID.h:79
const long POOL_ROOTKEY_StorageType
Definition: ClassID.h:69
const long POOL_ACCESS_StorageType
Definition: ClassID.h:71
const long POOL_ORACLE_StorageType
Definition: ClassID.h:73
const long ROOT_StorageType
Definition: ClassID.h:52
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
const long ORACLE_StorageType
Definition: ClassID.h:65
const long POOL_ROOT_StorageType
Definition: ClassID.h:68
const long EXCEL_StorageType
Definition: ClassID.h:61
const long XML_StorageType
Definition: ClassID.h:57
const long POOL_StorageType
Definition: ClassID.h:67
const long CDF_StorageType
Definition: ClassID.h:55
const long MBM_StorageType
Definition: ClassID.h:76
const long POOL_ROOTTREE_StorageType
Definition: ClassID.h:70
const long TEXTJET_StorageType
Definition: ClassID.h:62
const long SQLSERVER_StorageType
Definition: ClassID.h:63
const long RAWDESC_StorageType
Definition: ClassID.h:75
const long OBJY_StorageType
Definition: ClassID.h:53
const long SICB_StorageType
Definition: ClassID.h:51