]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCDefinitions.cxx
- abandon TPCLib backward compatibility check for AliRoot releases < v4-03
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCDefinitions.cxx
CommitLineData
71d7c760 1// $Id$
2
3/**************************************************************************
9be2600f 4 * This file is property of and copyright by the ALICE HLT Project *
5 * ALICE Experiment at CERN, All rights reserved. *
71d7c760 6 * *
9be2600f 7 * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8 * Timm Steinbeck <timm@kip.uni-heidelberg.de> *
9 * for The ALICE HLT Project. *
71d7c760 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 TPC components //
23// //
24///////////////////////////////////////////////////////////////////////////////
25
26#include "AliHLTTPCDefinitions.h"
27
28
96bda103 29/** ROOT macro for the implementation of ROOT specific class methods */
71d7c760 30ClassImp(AliHLTTPCDefinitions)
31
69347e0d 32const AliHLTComponentDataType AliHLTTPCDefinitions::fgkDDLPackedRawDataType =
33 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'D','D','L','_','R','W','P','K'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
34const AliHLTComponentDataType AliHLTTPCDefinitions::fgkDDLEncodedEntropyRawDataType =
35 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'D','D','L','E','N','C','E','N'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
36
37const AliHLTComponentDataType AliHLTTPCDefinitions::fgkPackedRawDataType =
38 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'R','A','W','P','A','K','E','D'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
39const AliHLTComponentDataType AliHLTTPCDefinitions::fgkUnpackedRawDataType =
40 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'R','A','W','U','N','P','A','K'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
41const AliHLTComponentDataType AliHLTTPCDefinitions::fgkClustersDataType =
42 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'C','L','U','S','T','E','R','S'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
43const AliHLTComponentDataType AliHLTTPCDefinitions::fgkVertexDataType =
44 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'V','E','R','T','E','X',' ',' '}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
45const AliHLTComponentDataType AliHLTTPCDefinitions::fgkTrackSegmentsDataType =
46 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'T','R','A','K','S','E','G','S'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
47const AliHLTComponentDataType AliHLTTPCDefinitions::fgkTracksDataType =
48 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'T','R','A','C','K','S',' ',' '}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
49
50const AliHLTComponentDataType AliHLTTPCDefinitions::fgkCalibPedestalDataType =
51 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'C','A','L','_','P','E','D',' '}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
52const AliHLTComponentDataType AliHLTTPCDefinitions::fgkCalibPulserDataType =
53 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'C','A','L','_','P','U','L','S'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
b1c46961 54const AliHLTComponentDataType AliHLTTPCDefinitions::fgkActivePadsDataType =
1d337632 55 (AliHLTComponentDataType){sizeof(AliHLTComponentDataType), {'A','C','T','I','V','P','A','D'}, kAliHLTDataOriginAny} | kAliHLTDataOriginTPC;
02d01bbf 56
57
2a083ac4 58AliHLTTPCDefinitions::AliHLTTPCDefinitions()
59{
96bda103 60 // see header file for class documentation
61 // or
62 // refer to README to build package
63 // or
64 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
2a083ac4 65}
66
67AliHLTTPCDefinitions::~AliHLTTPCDefinitions()
68{
96bda103 69 // see header file for class documentation
2a083ac4 70}
71
71d7c760 72