]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/AliHLTEMCALRawAnalyzerLMSComponent.cxx
Removing obsolete class AliCaloRawAnalyzerLMS
[u/mrichter/AliRoot.git] / HLT / EMCAL / AliHLTEMCALRawAnalyzerLMSComponent.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 **************************************************************************/
18
19#include "AliHLTEMCALRawAnalyzerLMSComponent.h"
a8850b99 20#include "AliCaloRawAnalyzerKStandard.h"
21//#include "AliCaloRawAnalyzerLMS.h"
1637625c 22
88938cd8 23//Evaluation of Amplitude and Peak position using Least Mean Square (LMS) fit
24//-----------
25//-----------
26//-----------
27//-----------
28
29
1637625c 30AliHLTEMCALRawAnalyzerLMSComponent gAliHLTEMCALRawAnalyzerLMSComponent;
31
a8850b99 32//AliHLTEMCALRawAnalyzerLMSComponent::AliHLTEMCALRawAnalyzerLMSComponent() : AliHLTEMCALRawAnalyzerComponent(kLMS)
33AliHLTEMCALRawAnalyzerLMSComponent::AliHLTEMCALRawAnalyzerLMSComponent() : AliHLTEMCALRawAnalyzerComponent(kStandard)
1637625c 34{
35 // fAnalyzerPtr
92d9f317 36 // fAnalyzerPtr = new AliCaloRawAnalyzerLMS();
1637625c 37}
38
39
40AliHLTEMCALRawAnalyzerLMSComponent::~AliHLTEMCALRawAnalyzerLMSComponent()
41{
92d9f317 42 // delete fAnalyzerPtr;
1637625c 43}
44
45
46
47const char*
48AliHLTEMCALRawAnalyzerLMSComponent::GetComponentID()
49{
50 return "EmcalRawLms";
51}
52
53
54
55AliHLTComponent*
56AliHLTEMCALRawAnalyzerLMSComponent::Spawn()
57{
58 return new AliHLTEMCALRawAnalyzerLMSComponent();
59}
60
61
62int
63AliHLTEMCALRawAnalyzerLMSComponent::Deinit()
64{
65 return 0;
66}