]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzer.h
JetCorrel correction of coding violations, and other style and memory consumption...
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzer.h
CommitLineData
57839add 1#ifndef ALICALORAWANALYZER_H
2#define ALICALORAWANALYZER_H
d655d7dd 3/**************************************************************************
4 * This file is property of and copyright by *
e37e3c84 5 * the Relatvistic Heavy Ion Group (RHIG), Yale University, US, 2009 *
d655d7dd 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
57839add 21
d655d7dd 22//Base class for extraction
23//of signal amplitude and peak position
57839add 24//From CALO Calorimeter RAW data
d655d7dd 25
26
27#include "Rtypes.h"
28#include "TObject.h"
d655d7dd 29
30#define MAXSAMPLES 1008 //CRAP PTH
e37e3c84 31
32//#include "AliCaloRawAnalyzer.h"
33
34//class AliCaloBunchInfo;
35
36//#include "AliCaloBunchInfo.h"
37
38
39#include <vector>
40using namespace std;
d655d7dd 41
57839add 42class AliCaloBunchInfo;
43class AliCaloFitResults;
d655d7dd 44
e37e3c84 45//class vector<AliCaloBunchInfo> ;
46
47//class vector;
d655d7dd 48
57839add 49class AliCaloRawAnalyzer : public TObject
d655d7dd 50{
51 public:
48a2e3eb 52 AliCaloRawAnalyzer(const char *name="AliCaloRawAnalyzer", const char *nameshort="RawAna");
57839add 53 virtual ~AliCaloRawAnalyzer();
e37e3c84 54 virtual AliCaloFitResults Evaluate( const vector<AliCaloBunchInfo> &bunchvector,
55 const UInt_t altrocfg1, const UInt_t altrocfg2 );
d655d7dd 56
57839add 57 void PrintBunches( const vector<AliCaloBunchInfo> &bunchvector ) const;
58 void PrintBunch( const AliCaloBunchInfo &bunch ) const ;
d655d7dd 59
e37e3c84 60 virtual int PreFitEvaluateSamples( const vector<AliCaloBunchInfo> &bunchvector,
61 const UInt_t altrocfg1, const UInt_t altrocfg2, Int_t & index,
62 Float_t & maxf, short & maxamp, short & maxampindex, Float_t & ped, int & first, int & last);
d655d7dd 63 void SetTimeConstraint(const int min, const int max );
64 void SetVerbose(bool verbose = true){ fVerbose = verbose; };
65 void SetIsZeroSuppressed(const bool iszs = true) { fIsZerosupressed = iszs; } ;
66 void SetAmpCut(const Float_t cut) { fAmpCut = cut ; } ;
57839add 67 void SetFitArrayCut(const Int_t cut) { fFitArrayCut = cut ; } ;
68 void SetNsampleCut(const Int_t cut) { fNsampleCut = cut ; } ;
f57baa2d 69 void SetNsamplePed(const Int_t i) { fNsamplePed = i ; } ;
70
71 bool GetIsZeroSuppressed() const { return fIsZerosupressed;} ;
72 Float_t GetAmpCut() const { return fAmpCut; } ;
73 Int_t GetFitArrayCut() const { return fFitArrayCut; } ;
74 Int_t GetNsampleCut() const { return fNsampleCut; } ;
75 Int_t GetNsamplePed() const { return fNsamplePed; } ;
57839add 76
77 // access to array info
78 Double_t GetReversed(const int i) const { return fReversed[i]; }
e37e3c84 79 const char * GetAlgoName() const { return fName; };
48a2e3eb 80 const char * GetAlgoAbbr() const { return fNameShort; };
d655d7dd 81
82 protected:
57839add 83 short Max( const AliCaloBunchInfo *const bunch, int *const maxindex) const;
d655d7dd 84 UShort_t Max(const UShort_t *data, const int length ) const;
85 bool IsInTimeRange( const int maxindex ) const;
57839add 86 Float_t ReverseAndSubtractPed( const AliCaloBunchInfo *bunch, const UInt_t altrocfg1, const UInt_t altrocfg2, double *outarray ) const;
87 int SelectBunch( const vector<AliCaloBunchInfo> &bunchvector, short *const maxampbin, short *const maxamplitude ) const;
e37e3c84 88 virtual void SelectSubarray( const Double_t *fData, const int length, const short maxindex, int *const first, int *const last ) const;
57839add 89 Float_t EvaluatePedestal(const UShort_t * const data, const int length ) const;
d655d7dd 90
91 Double_t fReversed[MAXSAMPLES]; //Reversed sequence of samples (pedestalsubtracted)
92
93 // private:
94 int fMinTimeIndex; //The timebin of the max signal value must be between fMinTimeIndex and fMaxTimeIndex
95 int fMaxTimeIndex; //The timebin of the max signal value must be between fMinTimeIndex and fMaxTimeIndex
96 int fFitArrayCut; //Cut on ADC value (after ped. subtraction) for signals used for fit
97 Float_t fAmpCut; //Max ADC - pedestal must be higher than this befor attemting to extract the amplitude
98 int fNsampleCut; //Minimum number of sample require before attemting to extract signal parameters
f57baa2d 99 int fNsamplePed; //Number of samples used for pedestal calculation (first in bunch)
d655d7dd 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
57839add 102
e37e3c84 103 char fName[256]; // Name of the algorithm
48a2e3eb 104 char fNameShort[256]; // Abbrevation for the name
e37e3c84 105
f57baa2d 106 ClassDef(AliCaloRawAnalyzer, 2)
e37e3c84 107
d655d7dd 108};
109
110#endif