]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRawAnalyzerCrudeComponent.cxx
ESD output for PHOS HLT (hESD) (�ystein)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerCrudeComponent.cxx
CommitLineData
ee7849e6 1
cbab66dd 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
d504c864 17
cbab66dd 18#include "AliHLTPHOSRawAnalyzerCrudeComponent.h"
ee7849e6 19#include "AliHLTPHOSRawAnalyzerCrude.h"
cbab66dd 20
ee7849e6 21AliHLTPHOSRawAnalyzerCrudeComponent gAliHLTPHOSRawAnalyzerCrudeComponent;
cbab66dd 22
d504c864 23//___________________________________________________________________________
cbab66dd 24AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent()
25{
146c463a 26 fAnalyzerPtr = new AliHLTPHOSRawAnalyzerCrude();
cbab66dd 27}
28
d504c864 29//___________________________________________________________________________
cbab66dd 30AliHLTPHOSRawAnalyzerCrudeComponent::~AliHLTPHOSRawAnalyzerCrudeComponent()
31{
32
33}
34
d504c864 35//___________________________________________________________________________
cbab66dd 36AliHLTPHOSRawAnalyzerCrudeComponent::AliHLTPHOSRawAnalyzerCrudeComponent(const AliHLTPHOSRawAnalyzerCrudeComponent & ):AliHLTPHOSRawAnalyzerComponent()
37{
38
39}
40
d504c864 41//___________________________________________________________________________
ee7849e6 42const char*
43AliHLTPHOSRawAnalyzerCrudeComponent::GetComponentID()
44{
45 return "PhosRawCrude";
46}
47
d504c864 48//___________________________________________________________________________
ee7849e6 49AliHLTComponent*
50AliHLTPHOSRawAnalyzerCrudeComponent::Spawn()
51{
52 return new AliHLTPHOSRawAnalyzerCrudeComponent;
53}