]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSRawAnalyzerPeakFinderComponent.h
update of data handling classes for SSD calibration
[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
8 #include "AliHLTPHOSRawAnalyzerComponent.h"
9
10 class AliHLTPHOSRawAnalyzerPeakFinderComponent: public AliHLTPHOSRawAnalyzerComponent
11 {
12  public:
13   AliHLTPHOSRawAnalyzerPeakFinderComponent();
14   virtual ~AliHLTPHOSRawAnalyzerPeakFinderComponent();
15
16   virtual int Deinit();
17   virtual const char* GetComponentID();
18   virtual AliHLTComponent* Spawn();
19  private:
20   Bool_t LoadPFVector(); 
21   Bool_t LoadPFVector(int startindex, int Nsamples, int tau, int fs);
22   AliHLTPHOSRawAnalyzerPeakFinderComponent(const AliHLTPHOSRawAnalyzerPeakFinderComponent & ); 
23   AliHLTPHOSRawAnalyzerPeakFinderComponent & operator = (const AliHLTPHOSRawAnalyzerPeakFinderComponent)
24     {
25       return *this;
26     };
27
28 };
29
30
31
32 #endif