]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerPeakFinderComponent.h
bugfix, added missing header file
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerPeakFinderComponent.h
1 #ifndef ALIHLTPHOSRAWANALYZERPEAKFINDERCOMPONENT_H
2 #define ALIHLTPHOSRAWANALYZERPEAKFINDERCOMPONENT_H
3
4 /* Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice  */ 
6
7 #include "AliHLTPHOSRawAnalyzerComponent.h"
8
9 class AliHLTPHOSRawAnalyzerPeakFinderComponent: public AliHLTPHOSRawAnalyzerComponent
10 {
11  public:
12   AliHLTPHOSRawAnalyzerPeakFinderComponent();
13   ~AliHLTPHOSRawAnalyzerPeakFinderComponent();
14   virtual const char* GetComponentID();
15   virtual AliHLTComponent* Spawn();
16   static AliHLTPHOSRawAnalyzerPeakFinderComponent gAliHLTPHOSRawAnalyzerPeakFinderComponent;
17  private:
18   Bool_t LoadPFVector(); 
19   Bool_t LoadPFVector(int startindex, int Nsamples, int tau, int fs);
20   AliHLTPHOSRawAnalyzerPeakFinderComponent(const AliHLTPHOSRawAnalyzerPeakFinderComponent & ); 
21   AliHLTPHOSRawAnalyzerPeakFinderComponent & operator = (const AliHLTPHOSRawAnalyzerPeakFinderComponent)
22     {
23       return *this;
24     };
25
26 };
27
28
29
30 #endif