]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliCaloRawAnalyzerPeakFinder.h
update from Per Thomas - new classes for NeuralNet and FastFit + code warning fixes
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerPeakFinder.h
1 #ifndef ALICALORAWANALYZERPEAKFINDER_H
2 #define ALICALORAWANALYZERPEAKFINDER_H
3
4
5 /**************************************************************************
6  * This file is property of and copyright by                              *
7  * the Relativistic Heavy Ion Group (RHIG), Yale University, US, 2009     *
8  *                                                                        *
9  * Primary Author: Per Thomas Hille  <perthomas.hille@yale.edu>           *
10  *                                                                        *
11  * Contributors are mentioned in the code where appropriate.              *
12  * Please report bugs to p.t.hille@fys.uio.no                             *
13  *                                                                        *
14  * Permission to use, copy, modify and distribute this software and its   *
15  * documentation strictly for non-commercial purposes is hereby granted   *
16  * without fee, provided that the above copyright notice appears in all   *
17  * copies and that both the copyright notice and this permission notice   *
18  * appear in the supporting documentation. The authors make no claims     *
19  * about the suitability of this software for any purpose. It is          *
20  * provided "as is" without express or implied warranty.                  *
21  **************************************************************************/
22
23
24 // The Peak-Finder algorithm
25 // The amplitude is extracted  as a
26 // weighted sum of the samples using the 
27 // best possible weights.
28
29
30 #include "AliCaloRawAnalyzer.h"
31
32 #define MAXSTART 3
33 #define SAMPLERANGE 15
34 #define SHIF 0.5
35
36 class AliCaloBunchInfo;
37
38
39 class  AliCaloRawAnalyzerPeakFinder : public AliCaloRawAnalyzer
40 {
41  public:
42   AliCaloRawAnalyzerPeakFinder();
43   virtual ~AliCaloRawAnalyzerPeakFinder();
44   virtual AliCaloFitResults Evaluate( const vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1,  const UInt_t altrocfg2 );
45
46  private:
47   AliCaloRawAnalyzerPeakFinder( const AliCaloRawAnalyzerPeakFinder   & );
48   AliCaloRawAnalyzerPeakFinder   & operator = ( const  AliCaloRawAnalyzerPeakFinder  & );
49
50   void LoadVectors();
51   double *fPFAmpVectors[MAXSTART][SAMPLERANGE]; // Vectors for Amplitude extraction 
52   double *fPFTofVectors[MAXSTART][SAMPLERANGE]; // Vectors for TOF extraction
53
54   //  double fTof; 
55   //  double fAmp;
56
57   double fAmpA[3]; // The  amplitude of the signal (eveluate 3 times using 3 differtnt phase shifts of the input samples )
58   // double fAmp2;
59   // double fAmp3;
60
61   ClassDef( AliCaloRawAnalyzerPeakFinder, 1 )
62
63 };
64
65 #endif