]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSRawAnalyzerPeakFinder.h
minors
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSRawAnalyzerPeakFinder.h
CommitLineData
ee7849e6 1#ifndef ALIHLTPHOSRAWANALYZERPEAKFINDER_H
2#define ALIHLTPHOSRAWANALYZERPEAKFINDER_H
0a211711 3/* Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
cbab66dd 6#include <Rtypes.h>
7#include "TObject.h"
8#include "AliHLTPHOSRawAnalyzer.h"
9
cbab66dd 10class AliHLTPHOSRawAnalyzerPeakFinder : public AliHLTPHOSRawAnalyzer
11{
12 public:
13 AliHLTPHOSRawAnalyzerPeakFinder();
14 AliHLTPHOSRawAnalyzerPeakFinder(const AliHLTPHOSRawAnalyzerPeakFinder & );
15 AliHLTPHOSRawAnalyzerPeakFinder & operator = (const AliHLTPHOSRawAnalyzerPeakFinder)
16 {
17 return *this;
18 }
cbab66dd 19 virtual ~AliHLTPHOSRawAnalyzerPeakFinder();
68d9caee 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);
cbab66dd 23 private:
68d9caee 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;
cbab66dd 28
29 ClassDef(AliHLTPHOSRawAnalyzerPeakFinder, 2)
30
31 };
32
33#endif