]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerCrudeComponent.cxx
Basic functionality of the HLT components is achieved, The components runs without...
[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 #include "AliHLTPHOSRawAnalyzerCrudeComponent.h"
18 #include "AliHLTPHOSRawAnalyzerCrude.h"
19
20 //ClassImp(AliHLTPHOSRawAnalyzerCrudeComponent) 
21 AliHLTPHOSRawAnalyzerCrudeComponent gAliHLTPHOSRawAnalyzerCrudeComponent;
22
23 AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent()
24 {
25   analyzerPtr = new AliHLTPHOSRawAnalyzerCrude();
26
27
28 AliHLTPHOSRawAnalyzerCrudeComponent::~AliHLTPHOSRawAnalyzerCrudeComponent()
29 {
30
31 }
32
33
34 AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent(const AliHLTPHOSRawAnalyzerCrudeComponent & ):AliHLTPHOSRawAnalyzerComponent()
35 {
36
37 }
38
39 const char* 
40 AliHLTPHOSRawAnalyzerCrudeComponent::GetComponentID()
41 {
42   return "PhosRawCrude";
43 }
44
45 AliHLTComponent*
46 AliHLTPHOSRawAnalyzerCrudeComponent::Spawn()
47 {
48   return new AliHLTPHOSRawAnalyzerCrudeComponent;
49 }