]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/AliHLTDataTypes.cxx
minor correction (documentation)
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTDataTypes.cxx
1 // $Id$
2
3 /**************************************************************************
4  * This file is property of and copyright by the ALICE HLT Project        * 
5  * ALICE Experiment at CERN, All rights reserved.                         *
6  *                                                                        *
7  * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no>        *
8  *                  Timm Steinbeck <timm@kip.uni-heidelberg.de>           *
9  *                  Jochen Thaeder <thaeder@kip.uni-heidelberg.de>        *
10  *                  for The ALICE HLT Project.                            *
11  *                                                                        *
12  * Permission to use, copy, modify and distribute this software and its   *
13  * documentation strictly for non-commercial purposes is hereby granted   *
14  * without fee, provided that the above copyright notice appears in all   *
15  * copies and that both the copyright notice and this permission notice   *
16  * appear in the supporting documentation. The authors make no claims     *
17  * about the suitability of this software for any purpose. It is          *
18  * provided "as is" without express or implied warranty.                  *
19  **************************************************************************/
20
21 /** @file   AliHLTDataTypes.cxx
22     @author Matthias Richter, Timm Steinbeck, Jochen Thaeder
23     @date   
24     @brief  Implementation of data types. */
25
26 #include "AliHLTDataTypes.h"
27
28 // those types can not be implemented in the header files as rootcint
29 // can not cope with the type id and origin defines.
30
31 /** data to file exchange subscriber */
32 const AliHLTComponentDataType kAliHLTDataTypeFXSCalib = {
33   sizeof(AliHLTComponentDataType),
34   kAliHLTFXSCalibDataTypeID,
35   kAliHLTDataOriginOut
36 };
37
38 /** DDL list data type */
39 const AliHLTComponentDataType kAliHLTDataTypeDDL  = {
40   sizeof(AliHLTComponentDataType),
41   kAliHLTDDLDataTypeID,
42   kAliHLTDataOriginOut
43 };
44
45 /** SOR data type */
46 const AliHLTComponentDataType kAliHLTDataTypeSOR  = {
47   sizeof(AliHLTComponentDataType),
48   kAliHLTSORDataTypeID,
49   kAliHLTDataOriginPrivate
50 };
51
52 /** EOR data type */
53 const AliHLTComponentDataType kAliHLTDataTypeEOR  = {
54   sizeof(AliHLTComponentDataType),
55   kAliHLTEORDataTypeID,
56   kAliHLTDataOriginPrivate
57 };