]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/comp/AliHLTCompDefinitions.h
bugfix, follow up for #83123: two independent HLT systems with separate configuration...
[u/mrichter/AliRoot.git] / HLT / comp / AliHLTCompDefinitions.h
1 // XEmacs -*-C++-*-
2 // @(#) $Id$
3
4 #ifndef ALIHLTCOMPDEFINITIONS_H
5 #define ALIHLTCOMPDEFINITIONS_H
6 /* This file is property of and copyright by the ALICE HLT Project        * 
7  * ALICE Experiment at CERN, All rights reserved.                         *
8  * See cxx source for full Copyright notice                               */
9
10 /* AliHLTCompDefinitions
11  */
12
13 #include "AliHLTDataTypes.h"
14 #include "Rtypes.h"
15
16 class AliHLTCompDefinitions
17 {
18 public:
19   AliHLTCompDefinitions() {}
20   virtual ~AliHLTCompDefinitions() {}
21
22 //   /** DDL packed RAW data */
23 //   static const AliHLTComponentDataType fgkDDLRawDataType;    // see above
24   /** DDL entropy encoded data */
25   static const AliHLTComponentDataType fgkDDLEncodedHuffmanAltroDataType; // see above
26 //   /** packed RAW data */
27 //   static const AliHLTComponentDataType fgkPackedRawDataType;       // see above
28 //   /** unpacked RAW data */
29 //   static const AliHLTComponentDataType fgkUnpackedRawDataType;     // see above
30 //   /** cluster data */
31 //   static const AliHLTComponentDataType fgkClustersDataType;        // see above
32 //   /** track segments in local coordinates */
33 //   static const AliHLTComponentDataType fgkTrackSegmentsDataType;   // see above
34 //   /** tracks in global koordinates */
35 //   static const AliHLTComponentDataType fgkTracksDataType;          // see above
36   /** altro huffman compression table */
37   static const AliHLTComponentDataType fgkHuffmanAltroCalDataType; // see above
38
39   ClassDef(AliHLTCompDefinitions, 0);
40
41 };
42
43 #endif