]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRawAnalyzerCrudeComponent.cxx
Bug fix for https://savannah.cern.ch/bugs/?61603
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerCrudeComponent.cxx
CommitLineData
88b2ce82 1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
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#include "AliHLTEMCALRawAnalyzerCrudeComponent.h"
1637625c 19//#include "AliHLTCaloRawAnalyzerCrude.h"
20#include "AliCaloRawAnalyzerCrude.h"
21
88b2ce82 22
23AliHLTEMCALRawAnalyzerCrudeComponent gAliHLTEMCALRawAnalyzerCrudeComponent;
24
1637625c 25
26//AliHLTEMCALRawAnalyzerCrudeComponent::AliHLTEMCALRawAnalyzerCrudeComponent : AliHLTEMCALRawAnalyzerComponent()
27AliHLTEMCALRawAnalyzerCrudeComponent::AliHLTEMCALRawAnalyzerCrudeComponent() : AliHLTEMCALRawAnalyzerComponent()
88b2ce82 28{
1637625c 29 // fAnalyzerPtr = new AliHLTCaloRawAnalyzerCrude();
30 fAnalyzerPtr = new AliCaloRawAnalyzerCrude();
88b2ce82 31}
32
4d6be4cd 33
88b2ce82 34AliHLTEMCALRawAnalyzerCrudeComponent::~AliHLTEMCALRawAnalyzerCrudeComponent()
35{
36
37}
38
39
40const char*
41AliHLTEMCALRawAnalyzerCrudeComponent::GetComponentID()
42{
1637625c 43 return "EmcalRawCrude";
88b2ce82 44}
45
4d6be4cd 46
88b2ce82 47AliHLTComponent*
48AliHLTEMCALRawAnalyzerCrudeComponent::Spawn()
49{
50 return new AliHLTEMCALRawAnalyzerCrudeComponent();
51}
52