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