Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
5 : * Timm Steinbeck <timm@kip.uni-heidelberg.de> *
6 : * for The ALICE Off-line Project. *
7 : * *
8 : * Permission to use, copy, modify and distribute this software and its *
9 : * documentation strictly for non-commercial purposes is hereby granted *
10 : * without fee, provided that the above copyright notice appears in all *
11 : * copies and that both the copyright notice and this permission notice *
12 : * appear in the supporting documentation. The authors make no claims *
13 : * about the suitability of this software for any purpose. It is *
14 : * provided "as is" without express or implied warranty. *
15 : **************************************************************************/
16 :
17 : ///////////////////////////////////////////////////////////////////////////////
18 : // //
19 : // Definitions for the HLT EMCAL components //
20 : // //
21 : ///////////////////////////////////////////////////////////////////////////////
22 :
23 : #include "AliHLTEMCALDefinitions.h"
24 :
25 :
26 6 : ClassImp(AliHLTEMCALDefinitions)
27 :
28 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkDDLRawDataType =
29 6 : AliHLTComponentDataTypeInitializer("DDL_RAW ", kAliHLTDataOriginEMCAL);
30 :
31 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkDigitDataType =
32 6 : AliHLTComponentDataTypeInitializer("DIGITTYP", kAliHLTDataOriginEMCAL);
33 :
34 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkClusterDataType =
35 6 : AliHLTComponentDataTypeInitializer("CLUSTERS", kAliHLTDataOriginEMCAL);
36 :
37 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkESDDataType =
38 6 : AliHLTComponentDataTypeInitializer("GLOBALESD", kAliHLTDataOriginEMCAL);
39 :
40 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkEMCALESDDataType =
41 6 : AliHLTComponentDataTypeInitializer("EMCALESD", kAliHLTDataOriginEMCAL);
42 :
43 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkCalibrationDataType =
44 6 : AliHLTComponentDataTypeInitializer("CALIBRAH", kAliHLTDataOriginEMCAL);
45 :
46 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkChannelDataType =
47 6 : AliHLTComponentDataTypeInitializer("CHANNELT", kAliHLTDataOriginEMCAL);
48 :
49 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkTriggerRawDigitDataType =
50 6 : AliHLTComponentDataTypeInitializer("TDIGT ", kAliHLTDataOriginEMCAL);
51 :
52 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkTriggerSTUDataType =
53 6 : AliHLTComponentDataTypeInitializer("STUT ", kAliHLTDataOriginEMCAL);
54 :
55 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkFastorDataType =
56 6 : AliHLTComponentDataTypeInitializer("FASTORT ", kAliHLTDataOriginEMCAL);
57 :
58 : const AliHLTComponentDataType AliHLTEMCALDefinitions::fgkTriggerPatchDataType =
59 6 : AliHLTComponentDataTypeInitializer("TRIGGERT", kAliHLTDataOriginEMCAL);
60 :
61 : AliHLTEMCALDefinitions::AliHLTEMCALDefinitions()
62 0 : {
63 : // see header file for class documentation
64 : // or
65 : // refer to README to build package
66 0 : }
67 :
68 : AliHLTEMCALDefinitions::~AliHLTEMCALDefinitions()
69 0 : {
70 : // see header file for class documentation
71 0 : }
|