]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/comp/AliHLTCompDefinitions.cxx
correcting printf format specifiers
[u/mrichter/AliRoot.git] / HLT / comp / AliHLTCompDefinitions.cxx
CommitLineData
c2440081 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 * for The ALICE HLT Project. *
10 * *
11 * Permission to use, copy, modify and distribute this software and its *
12 * documentation strictly for non-commercial purposes is hereby granted *
13 * without fee, provided that the above copyright notice appears in all *
14 * copies and that both the copyright notice and this permission notice *
15 * appear in the supporting documentation. The authors make no claims *
16 * about the suitability of this software for any purpose. It is *
17 * provided "as is" without express or implied warranty. *
18 **************************************************************************/
19
20///////////////////////////////////////////////////////////////////////////////
21// //
22// Definitions for the HLT COMP components //
23// //
24///////////////////////////////////////////////////////////////////////////////
25
26#include "AliHLTCompDefinitions.h"
27
28
29/** ROOT macro for the implementation of ROOT specific class methods */
30ClassImp(AliHLTCompDefinitions)
31
32/*
33general concept for data types is needed: how do we define data types
34across different libraries. Currently, all definitions have data origin
35TPC but this has to change.
36 */
37//const AliHLTComponentDataType AliHLTCompDefinitions::fgkDDLRawDataType = { sizeof(AliHLTComponentDataType), {'D','D','L','_','R','A','W',' '},kAliHLTDataOriginTPC};;
38const AliHLTComponentDataType AliHLTCompDefinitions::fgkDDLEncodedHuffmanAltroDataType = { sizeof(AliHLTComponentDataType), {'E','N','C','_','H','U','F','F'},kAliHLTDataOriginAny};;
39
40//const AliHLTComponentDataType AliHLTCompDefinitions::fgkPackedRawDataType = { sizeof(AliHLTComponentDataType), {'R','A','W','P','A','K','E','D'},kAliHLTDataOriginTPC};;
41//const AliHLTComponentDataType AliHLTCompDefinitions::fgkUnpackedRawDataType = { sizeof(AliHLTComponentDataType), {'R','A','W','U','N','P','A','K'},kAliHLTDataOriginTPC};;
42//const AliHLTComponentDataType AliHLTCompDefinitions::fgkClustersDataType = { sizeof(AliHLTComponentDataType), {'C','L','U','S','T','E','R','S'},kAliHLTDataOriginTPC};;
43//const AliHLTComponentDataType AliHLTCompDefinitions::fgkTrackSegmentsDataType = { sizeof(AliHLTComponentDataType), {'T','R','A','K','S','E','G','S'},kAliHLTDataOriginTPC};;
44//const AliHLTComponentDataType AliHLTCompDefinitions::fgkTracksDataType = { sizeof(AliHLTComponentDataType), {'T','R','A','C','K','S',' ',' '},kAliHLTDataOriginTPC};;
45
46const AliHLTComponentDataType AliHLTCompDefinitions::fgkHuffmanAltroCalDataType = { sizeof(AliHLTComponentDataType), {'C','A','L','_','H','U','F','F'},kAliHLTDataOriginAny};;