]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerCrudeComponent.cxx
Removing this file that was added to CVS by accident
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerCrudeComponent.cxx
1
2 /**************************************************************************
3  * Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved.      *
4  *                                                                        *
5  * Author: Per Thomas Hille for the ALICE HLT Project.                    *
6  * Contributors are mentioned in the code where appropriate.              *
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 #include "AliHLTPHOSRawAnalyzerCrudeComponent.h"
19 #include "AliHLTPHOSRawAnalyzerCrude.h"
20
21 AliHLTPHOSRawAnalyzerCrudeComponent gAliHLTPHOSRawAnalyzerCrudeComponent;
22
23 //___________________________________________________________________________
24 AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent()
25 {
26   fAnalyzerPtr = new AliHLTPHOSRawAnalyzerCrude();
27
28
29 //___________________________________________________________________________
30 AliHLTPHOSRawAnalyzerCrudeComponent::~AliHLTPHOSRawAnalyzerCrudeComponent()
31 {
32
33 }
34
35 //___________________________________________________________________________
36 AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent(const AliHLTPHOSRawAnalyzerCrudeComponent & ):AliHLTPHOSRawAnalyzerComponent()
37 {
38
39 }
40
41 //___________________________________________________________________________
42 const char* 
43 AliHLTPHOSRawAnalyzerCrudeComponent::GetComponentID()
44 {
45   return "PhosRawCrude";
46 }
47
48 //___________________________________________________________________________
49 AliHLTComponent*
50 AliHLTPHOSRawAnalyzerCrudeComponent::Spawn()
51 {
52   return new AliHLTPHOSRawAnalyzerCrudeComponent;
53 }