]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRawAnalyzerPeakFinderComponent.cxx
annoying ^M filtered out from source
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerPeakFinderComponent.cxx
CommitLineData
1637625c 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// Evaluation of amplitude and peak
20// position using statisticall optimal
21// weight of the samples
22// ---------------
23// ---------------
24
25
1637625c 26#include "AliHLTEMCALRawAnalyzerPeakFinderComponent.h"
1637625c 27#include "AliCaloRawAnalyzerPeakFinder.h"
28
29
30AliHLTEMCALRawAnalyzerPeakFinderComponent gAliHLTEMCALRawAnalyzerPeakFinderComponent;
31
32
1637625c 33AliHLTEMCALRawAnalyzerPeakFinderComponent::AliHLTEMCALRawAnalyzerPeakFinderComponent (): AliHLTEMCALRawAnalyzerComponent()
34{
4fad3687 35
ce6c555c 36 // constructor
bb29f0e9 37 // fAnalyzerPtr = new AliCaloRawAnalyzerPeakFinder();
4fad3687 38
1637625c 39}
40
41
1637625c 42AliHLTEMCALRawAnalyzerPeakFinderComponent::~AliHLTEMCALRawAnalyzerPeakFinderComponent()
43{
ce6c555c 44 // destructor
45 if (0 != fAnalyzerPtr)
46 {
47 delete fAnalyzerPtr;
48 fAnalyzerPtr = 0;
49 }
1637625c 50}
51
2e4f62d1 52int
53AliHLTEMCALRawAnalyzerPeakFinderComponent::DoInit(int argc, const char** argv)
54{
55 fAnalyzerPtr = new AliCaloRawAnalyzerPeakFinder();
56 return AliHLTCaloRawAnalyzerComponentv3::DoInit(argc, argv);
57}
58
59
ce6c555c 60int
61AliHLTEMCALRawAnalyzerPeakFinderComponent::DoDeinit()
62{
63 //comment
64 if (0 != fAnalyzerPtr)
65 {
66 delete fAnalyzerPtr;
67 fAnalyzerPtr = 0;
68 }
69
70 return AliHLTEMCALRawAnalyzerComponent::DoDeinit();
71}
1637625c 72
73const char*
74AliHLTEMCALRawAnalyzerPeakFinderComponent::GetComponentID()
75{
ce6c555c 76 // component id
1637625c 77 return "EmcalRawPeakFinder";
78}
79
80
81AliHLTComponent*
82AliHLTEMCALRawAnalyzerPeakFinderComponent::Spawn()
83{
ce6c555c 84 // spawn component
1637625c 85 return new AliHLTEMCALRawAnalyzerPeakFinderComponent();
86}
87