]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliCaloRawAnalyzer.h
several changes: 1) check for overflow before fitting, not using fit results 2) keep...
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzer.h
1 #ifndef ALICALORAWANALYZER_H
2 #define ALICALORAWANALYZER_H
3 /**************************************************************************
4  * This file is property of and copyright by                              *
5  * the Relatvistic Heavy Ion Group (RHIG), Yale University, US, 2009      *
6  *                                                                        *
7  * Primary Author: Per Thomas Hille <p.t.hille@fys.uio.no>                *
8  *                                                                        *
9  * Contributors are mentioned in the code where appropriate.              *
10  * Please report bugs to p.t.hille@fys.uio.no                             *
11  *                                                                        *
12  * Permission to use, copy, modify and distribute this software and its   *
13  * documentation strictly for non-commercial purposes is hereby granted   *
14  * without fee, provided that the above copyright notice appears in all   *
15  * copies and that both the copyright notice and this permission notice   *
16  * appear in the supporting documentation. The authors make no claims     *
17  * about the suitability of this software for any purpose. It is          *
18  * provided "as is" without express or implied warranty.                  *
19  **************************************************************************/
20
21
22 //Base class for extraction 
23 //of signal amplitude and peak position
24 //From CALO Calorimeter RAW data
25
26
27 #include "Rtypes.h"
28 #include "TObject.h"
29
30 #define MAXSAMPLES 1008 //CRAP PTH
31
32 #include <vector>
33
34 class AliCaloBunchInfo;
35 class AliCaloFitResults;
36
37 class  AliCaloRawAnalyzer : public TObject
38 {
39  public:
40   AliCaloRawAnalyzer(const char *name="AliCaloRawAnalyzer", const char *nameshort="RawAna");
41   virtual ~AliCaloRawAnalyzer();
42   virtual AliCaloFitResults Evaluate( const std::vector<AliCaloBunchInfo> &bunchvector, 
43                                       const UInt_t altrocfg1,  const UInt_t altrocfg2 );
44  
45   void PrintBunches( const std::vector<AliCaloBunchInfo> &bunchvector ) const;
46   void PrintBunch( const AliCaloBunchInfo &bunch ) const ;
47
48   virtual int PreFitEvaluateSamples( const std::vector<AliCaloBunchInfo>  &bunchvector, 
49                                      const UInt_t altrocfg1,  const UInt_t altrocfg2, Int_t & index, 
50                                      Float_t & maxf, short & maxamp, short & maxampindex, Float_t & ped, int & first, int & last);
51   void SetTimeConstraint(const int min, const int max );
52   void SetVerbose(bool verbose = true){ fVerbose = verbose; };
53   void SetIsZeroSuppressed(const bool iszs = true) { fIsZerosupressed = iszs; } ;
54   void SetAmpCut(const Float_t cut) { fAmpCut = cut ; } ;
55   void SetFitArrayCut(const Int_t cut) { fFitArrayCut = cut ; } ;
56   void SetNsampleCut(const Int_t cut) { fNsampleCut = cut ; } ;
57   void SetOverflowCut(const Int_t cut) { fOverflowCut = cut ; } ;
58   void SetNsamplePed(const Int_t i) { fNsamplePed = i ; } ;
59
60   bool GetIsZeroSuppressed() const { return fIsZerosupressed;} ;
61   Float_t GetAmpCut() const { return fAmpCut; } ;
62   Int_t GetFitArrayCut() const { return fFitArrayCut; } ;
63   Int_t GetNsampleCut() const { return fNsampleCut; } ;
64   Int_t GetOverflowCut() const { return fOverflowCut; } ;
65   Int_t GetNsamplePed() const { return fNsamplePed; } ;
66
67   // access to array info
68   Double_t GetReversed(const int i) const { return fReversed[i]; }
69   const char * GetAlgoName() const { return fName;  };
70   const char * GetAlgoAbbr() const { return fNameShort;  };
71
72   Double_t CalculateChi2(const Double_t amp, const Double_t time,
73                          const Int_t first, const Int_t last,
74                          const Double_t adcErr=1, 
75                          const Double_t tau=2.35);
76
77   void CalculateMeanAndRMS(const Int_t first, const Int_t last,
78                            Double_t & mean, Double_t & rms);
79
80  protected:
81   short Max( const AliCaloBunchInfo *const bunch, int *const maxindex) const;
82   UShort_t Max(const UShort_t *data, const int length ) const;
83   bool CheckBunchEdgesForMax( const AliCaloBunchInfo *const bunch) const;
84   bool IsInTimeRange( const int maxindex ) const;
85   Float_t  ReverseAndSubtractPed( const AliCaloBunchInfo *bunch, const UInt_t altrocfg1,  const UInt_t altrocfg2, double *outarray ) const;
86   int  SelectBunch( const std::vector<AliCaloBunchInfo> &bunchvector, short *const maxampbin, short *const maxamplitude ) const;
87   virtual void SelectSubarray( const Double_t *fData, const int length, const short maxindex, int *const  first, int *const last ) const;
88   Float_t EvaluatePedestal(const UShort_t * const data, const int length ) const;
89   
90   Double_t fReversed[MAXSAMPLES]; //Reversed sequence of samples (pedestalsubtracted)
91
92   // private:
93   int fMinTimeIndex; //The timebin of the max signal value must be between fMinTimeIndex and fMaxTimeIndex
94   int fMaxTimeIndex; //The timebin of the max signal value must be between fMinTimeIndex and fMaxTimeIndex
95   int fFitArrayCut;  //Cut on ADC value (after ped. subtraction) for signals used for fit
96   Float_t fAmpCut;   //Max ADC - pedestal must be higher than this befor attemting to extract the amplitude 
97   int fNsampleCut;   //Minimum number of sample require before attemting to extract signal parameters 
98   int fOverflowCut; // value when ADC starts to saturate
99   int fNsamplePed;   //Number of samples used for pedestal calculation (first in bunch) 
100   bool fIsZerosupressed; //Wether or not the data is zeros supressed, by default its assumed that the baseline is also subtracted if set to true
101   bool fVerbose;     //Print debug information to std out if set to true
102
103   char fName[256]; // Name of the algorithm
104   char fNameShort[256]; // Abbrevation for the name
105
106   ClassDef(AliCaloRawAnalyzer, 2)  
107
108 };
109
110 #endif