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