]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/PHOS/AliHLTPHOSRawAnalyzerPeakFinder.h
minors
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerPeakFinder.h
... / ...
CommitLineData
1#ifndef ALIHLTPHOSRAWANALYZERPEAKFINDER_H
2#define ALIHLTPHOSRAWANALYZERPEAKFINDER_H
3/* Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6#include <Rtypes.h>
7#include "TObject.h"
8#include "AliHLTPHOSRawAnalyzer.h"
9
10class AliHLTPHOSRawAnalyzerPeakFinder : public AliHLTPHOSRawAnalyzer
11{
12 public:
13 AliHLTPHOSRawAnalyzerPeakFinder();
14 AliHLTPHOSRawAnalyzerPeakFinder(const AliHLTPHOSRawAnalyzerPeakFinder & );
15 AliHLTPHOSRawAnalyzerPeakFinder & operator = (const AliHLTPHOSRawAnalyzerPeakFinder)
16 {
17 return *this;
18 }
19 virtual ~AliHLTPHOSRawAnalyzerPeakFinder();
20 virtual void SetTVector(Double_t *tVect, Int_t size);
21 virtual void SetAVector(Double_t *aVect, Int_t size);
22 virtual void Evaluate(Int_t start = 0, Int_t lenght = 100);
23 private:
24 Double_t *fTVectorPtr; //[1008] /**<Peakfinder vector for TOF reconstruction*/
25 Double_t *fAVectorPtr; //[1008] /**<Peakfinder vector for Energy reconstruction*/
26 Int_t fTVectorSize;
27 Int_t fAVectorSize;
28
29 ClassDef(AliHLTPHOSRawAnalyzerPeakFinder, 2)
30
31 };
32
33#endif