71d7c760 |
1 | // $Id$ |
2 | |
3 | /************************************************************************** |
4 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
5 | * * |
6 | * Authors: Matthias Richter <Matthias.Richter@ift.uib.no> * |
7 | * Timm Steinbeck <timm@kip.uni-heidelberg.de> * |
8 | * for The ALICE Off-line Project. * |
9 | * * |
10 | * Permission to use, copy, modify and distribute this software and its * |
11 | * documentation strictly for non-commercial purposes is hereby granted * |
12 | * without fee, provided that the above copyright notice appears in all * |
13 | * copies and that both the copyright notice and this permission notice * |
14 | * appear in the supporting documentation. The authors make no claims * |
15 | * about the suitability of this software for any purpose. It is * |
16 | * provided "as is" without express or implied warranty. * |
17 | **************************************************************************/ |
18 | |
19 | /////////////////////////////////////////////////////////////////////////////// |
20 | // // |
21 | // Definitions for the HLT TPC components // |
22 | // // |
23 | /////////////////////////////////////////////////////////////////////////////// |
24 | |
25 | #include "AliHLTTPCDefinitions.h" |
26 | |
27 | |
96bda103 |
28 | /** ROOT macro for the implementation of ROOT specific class methods */ |
71d7c760 |
29 | ClassImp(AliHLTTPCDefinitions) |
30 | |
96bda103 |
31 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkDDLPackedRawDataType = { sizeof(AliHLTComponentDataType), {'D','D','L','_','R','W','P','K'},{'T','P','C',' '}};; |
32 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkPackedRawDataType = { sizeof(AliHLTComponentDataType), {'R','A','W','P','A','K','E','D'},{'T','P','C',' '}};; |
33 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkUnpackedRawDataType = { sizeof(AliHLTComponentDataType), {'R','A','W','U','N','P','A','K'},{'T','P','C',' '}};; |
34 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkClustersDataType = { sizeof(AliHLTComponentDataType), {'C','L','U','S','T','E','R','S'},{'T','P','C',' '}};; |
35 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkVertexDataType = { sizeof(AliHLTComponentDataType), {'V','E','R','T','E','X',' ',' '},{'T','P','C',' '}};; |
36 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkTrackSegmentsDataType = { sizeof(AliHLTComponentDataType), {'T','R','A','K','S','E','G','S'},{'T','P','C',' '}};; |
37 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkTracksDataType = { sizeof(AliHLTComponentDataType), {'T','R','A','C','K','S',' ',' '},{'T','P','C',' '}};; |
71d7c760 |
38 | |
02d01bbf |
39 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkCalibPedestalDataType = { sizeof(AliHLTComponentDataType), {'C','A','L','_','P','E','D',' '},{'T','P','C',' '}};; |
40 | const AliHLTComponentDataType AliHLTTPCDefinitions::fgkCalibSignalDataType = { sizeof(AliHLTComponentDataType), {'C','A','L','_','S','I','G',' '},{'T','P','C',' '}};; |
41 | |
42 | |
2a083ac4 |
43 | AliHLTTPCDefinitions::AliHLTTPCDefinitions() |
44 | { |
96bda103 |
45 | // see header file for class documentation |
46 | // or |
47 | // refer to README to build package |
48 | // or |
49 | // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt |
2a083ac4 |
50 | } |
51 | |
52 | AliHLTTPCDefinitions::~AliHLTTPCDefinitions() |
53 | { |
96bda103 |
54 | // see header file for class documentation |
2a083ac4 |
55 | } |
56 | |
71d7c760 |
57 | |