Line data Source code
1 : // $Id$
2 :
3 :
4 : /**************************************************************************
5 : * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
6 : * *
7 : * Author: Per Thomas Hille for the ALICE HLT Project. *
8 : * Contributors are mentioned in the code where appropriate. *
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 : #include "AliHLTPHOSRawAnalyzerCrudeComponent.h"
21 :
22 : //___________________________________________________________________________
23 0 : AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent() : AliHLTPHOSRawAnalyzerComponentv3(kCrude)
24 0 : {
25 :
26 0 : }
27 :
28 :
29 : //___________________________________________________________________________
30 0 : AliHLTPHOSRawAnalyzerCrudeComponent::~AliHLTPHOSRawAnalyzerCrudeComponent()
31 0 : {
32 :
33 0 : }
34 :
35 :
36 : //___________________________________________________________________________
37 0 : AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent(const AliHLTPHOSRawAnalyzerCrudeComponent & ):AliHLTPHOSRawAnalyzerComponentv3(kCrude)
38 0 : {
39 :
40 0 : }
41 :
42 :
43 : int
44 : AliHLTPHOSRawAnalyzerCrudeComponent::Deinit()
45 : {
46 0 : Logging(kHLTLogInfo, "HLT", "PHOS", ",AliHLTPHOSRawAnalyzerCrudeComponent Deinit");
47 0 : return 0;
48 : }
49 :
50 :
51 : //___________________________________________________________________________
52 : const char*
53 : AliHLTPHOSRawAnalyzerCrudeComponent::GetComponentID()
54 : {
55 0 : return "PhosRawCrude";
56 : }
57 :
58 :
59 : //___________________________________________________________________________
60 : AliHLTComponent*
61 : AliHLTPHOSRawAnalyzerCrudeComponent::Spawn()
62 : {
63 0 : return new AliHLTPHOSRawAnalyzerCrudeComponent;
64 0 : }
|