]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRawAnalyzerCrudeComponent.cxx
Removing obsolete macros
[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 **************************************************************************/
88938cd8 18
19
20// Evaluation of amplitude using just the
21// max ADC walu - pedestal, and pek position
22// using the time index of the max
23// amplitude
24// ------------
25// ------------
26
27
88b2ce82 28#include "AliHLTEMCALRawAnalyzerCrudeComponent.h"
1637625c 29//#include "AliHLTCaloRawAnalyzerCrude.h"
30#include "AliCaloRawAnalyzerCrude.h"
31
88b2ce82 32
33AliHLTEMCALRawAnalyzerCrudeComponent gAliHLTEMCALRawAnalyzerCrudeComponent;
34
1637625c 35
36//AliHLTEMCALRawAnalyzerCrudeComponent::AliHLTEMCALRawAnalyzerCrudeComponent : AliHLTEMCALRawAnalyzerComponent()
92d9f317 37AliHLTEMCALRawAnalyzerCrudeComponent::AliHLTEMCALRawAnalyzerCrudeComponent() : AliHLTEMCALRawAnalyzerComponent( kCrude )
88b2ce82 38{
ce6c555c 39 // constructor
1637625c 40 // fAnalyzerPtr = new AliHLTCaloRawAnalyzerCrude();
92d9f317 41 // fAnalyzerPtr = new AliCaloRawAnalyzerCrude();
88b2ce82 42}
43
4d6be4cd 44
88b2ce82 45AliHLTEMCALRawAnalyzerCrudeComponent::~AliHLTEMCALRawAnalyzerCrudeComponent()
46{
ce6c555c 47 // destructor
92d9f317 48 /*
ce6c555c 49 if (0 != fAnalyzerPtr)
50 {
51 delete fAnalyzerPtr;
52 fAnalyzerPtr = 0;
53 }
92d9f317 54 */
88b2ce82 55}
56
ce6c555c 57int
58AliHLTEMCALRawAnalyzerCrudeComponent::DoDeinit()
59{
60 //comment
61 if (0 != fAnalyzerPtr)
62 {
63 delete fAnalyzerPtr;
64 fAnalyzerPtr = 0;
65 }
66
67 return AliHLTEMCALRawAnalyzerComponent::DoDeinit();
68}
88b2ce82 69
70const char*
71AliHLTEMCALRawAnalyzerCrudeComponent::GetComponentID()
72{
ce6c555c 73 // component id
1637625c 74 return "EmcalRawCrude";
88b2ce82 75}
76
4d6be4cd 77
88b2ce82 78AliHLTComponent*
79AliHLTEMCALRawAnalyzerCrudeComponent::Spawn()
80{
ce6c555c 81 // spawn component
88b2ce82 82 return new AliHLTEMCALRawAnalyzerCrudeComponent();
83}
84