Line data Source code
1 : //-*- Mode: C++ -*-
2 : // $Id$
3 :
4 : #ifndef ALIHLTTRDDEFINITIONS_H
5 : #define ALIHLTTRDDEFINITIONS_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 : /* AliHLTTRDDefinitions
11 : */
12 :
13 : #include "AliHLTDataTypes.h"
14 : #include "Rtypes.h"
15 :
16 : ///////////////////////////////////////////////////////////////////////////////
17 : // //
18 : // The HLT definitions for TRD //
19 : // //
20 : // //
21 : ///////////////////////////////////////////////////////////////////////////////
22 :
23 :
24 0 : class AliHLTTRDDefinitions
25 : {
26 :
27 : public:
28 : AliHLTTRDDefinitions();
29 : virtual ~AliHLTTRDDefinitions();
30 :
31 : static const AliHLTComponentDataType fgkDigitsDataType; // TRD digits
32 : static const AliHLTComponentDataType fgkClusterDataType; // Cluster
33 : static const AliHLTComponentDataType fgkHiLvlClusterDataType; // Cluster for offline comparation
34 : static const AliHLTComponentDataType fgkTracksDataType; // Stand Alone tracks
35 : static const AliHLTComponentDataType fgkOnlineDataType; // Online tracking data
36 : static const AliHLTComponentDataType fgkHiLvlTracksDataType; // Stand Alone tracks for offline comparation
37 : static const AliHLTComponentDataType fgkMCMtrackletDataType; // MCM tracklet Data
38 : static const AliHLTComponentDataType fgkMCMcalibrationDataType; // MCM Calibration data
39 : static const AliHLTComponentDataType fgkCalibrationDataType; // Calibration with TRDtracks
40 : static const AliHLTComponentDataType fgkEORCalibrationDataType;//Calibration end of run
41 :
42 : static const AliHLTComponentDataType fgkSimpleIntegerDataType;//Sample
43 :
44 6 : ClassDef(AliHLTTRDDefinitions, 0)
45 :
46 : };
47 :
48 : #endif
|