ee299369 |
1 | #ifndef ALIEMCALRAWUTILS_H |
2 | #define ALIEMCALRAWUTILS_H |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | /* $Id$ */ |
e5bbbc4e |
7 | |
ee299369 |
8 | //_________________________________________________________________________ |
9 | // Utility Class for handling Raw data |
10 | // Does all transitions from Digits to Raw and vice versa, |
11 | // for simu and reconstruction |
12 | // |
13 | // Note: the current version is still simplified. Only |
14 | // one raw signal per digit is generated; either high-gain or low-gain |
15 | // Need to add concurrent high and low-gain info in the future |
16 | // No pedestal is added to the raw signal. |
17 | // |
18 | //*-- Author: Marco van Leeuwen (LBL) |
19 | // |
20 | #include "TObject.h" // for ROOT types |
feedcab9 |
21 | #include <TString.h> |
32cd4c24 |
22 | //#include "AliCaloRawStreamV3.h" |
23 | class AliCaloRawStreamV3; |
e5bbbc4e |
24 | class AliAltroMapping; |
ee299369 |
25 | class TGraph; |
ee299369 |
26 | class AliRawReader; |
65bdc82f |
27 | class AliEMCALGeometry; |
5e3106bc |
28 | class AliCaloCalibPedestal; |
16605c06 |
29 | class AliCaloRawAnalyzer; |
ee299369 |
30 | |
31 | class AliEMCALRawUtils : public TObject { |
32 | public: |
16605c06 |
33 | enum fitAlgorithm {kStandard = 0, kFastFit= 1, kNeuralNet = 2, kLogFit = 3, kLMS = 4, kPeakFinder = 5, kCrude = 6}; |
9f467289 |
34 | |
16605c06 |
35 | AliEMCALRawUtils(fitAlgorithm fitAlgo = kStandard); |
36 | AliEMCALRawUtils(AliEMCALGeometry *pGeometry, fitAlgorithm fitAlgo = kStandard); |
37 | virtual ~AliEMCALRawUtils(); |
9f467289 |
38 | |
65bdc82f |
39 | AliEMCALRawUtils(const AliEMCALRawUtils& rawUtils); //copy ctor |
40 | AliEMCALRawUtils& operator =(const AliEMCALRawUtils& rawUtils); |
41 | |
42 | void Digits2Raw(); |
916f1e76 |
43 | void Raw2Digits(AliRawReader *reader, TClonesArray *digitsArr, const AliCaloCalibPedestal* pedbadmap, |
44 | TClonesArray *digitsTRG=0x0); |
65bdc82f |
45 | |
82cbdfca |
46 | void AddDigit(TClonesArray *digitsArr, Int_t id, Int_t lowGain, Int_t amp, Float_t time); |
916f1e76 |
47 | void AddDigit(TClonesArray *digitsArr, Int_t id, Int_t timeSamples[], Int_t nSamples); |
ee299369 |
48 | |
49 | // Signal shape parameters |
b4133f05 |
50 | Double_t GetRawFormatHighLowGainFactor() const { return fHighLowGainFactor ;} |
09974781 |
51 | Int_t GetRawFormatOrder() const { return fOrder ; } |
b4133f05 |
52 | Double_t GetRawFormatTau() const { return fTau ; } |
09974781 |
53 | Int_t GetNoiseThreshold() const { return fNoiseThreshold; } |
54 | Int_t GetNPedSamples() const { return fNPedSamples; } |
e2c2134b |
55 | // get methods for fast fit simulation |
56 | Double_t GetPedestalValue() const {return fgPedestalValue;} |
57 | Double_t GetFEENoise() const {return fgFEENoise;} |
b4133f05 |
58 | |
4fe71e02 |
59 | Bool_t GetRemoveBadChannels() const {return fRemoveBadChannels;} |
60 | Int_t GetFittingAlgorithm() const {return fFittingAlgorithm; } |
46f1d25f |
61 | Bool_t UseFALTRO() const {return fUseFALTRO; } |
9f467289 |
62 | |
b4133f05 |
63 | void SetRawFormatHighLowGainFactor(Double_t val) {fHighLowGainFactor=val;} |
64 | void SetRawFormatOrder(Int_t val) {fOrder=val; } |
65 | void SetRawFormatTau(Double_t val) {fTau=val; } |
66 | void SetNoiseThreshold(Int_t val) {fNoiseThreshold=val; } |
67 | void SetNPedSamples(Int_t val) {fNPedSamples=val; } |
9f467289 |
68 | void SetRemoveBadChannels(Bool_t val) {fRemoveBadChannels=val; } |
4fe71e02 |
69 | void SetFittingAlgorithm(Int_t val) ; |
46f1d25f |
70 | void SetFALTROUsage(Bool_t val) {fUseFALTRO=val; } |
71 | |
e2c2134b |
72 | // set methods for fast fit simulation |
73 | void SetFEENoise(Double_t val) {fgFEENoise = val;} |
74 | void SetRawFormatTimeBins(Int_t val) {fgTimeBins = val;} |
666d993b |
75 | void SetPedestalValue(Double_t val) {fgPedestalValue = val;} |
7643e728 |
76 | |
e2c2134b |
77 | static Int_t GetRawFormatTimeBins() { return fgTimeBins ; } |
78 | static Double_t GetRawFormatTimeMax() { return fgTimeBins*fgTimeBinWidth; } |
82cbdfca |
79 | static Double_t GetRawFormatTimeBinWidth() { return fgTimeBinWidth; } |
85c25c2e |
80 | static Double_t GetRawFormatTimeBin() |
81 | { return GetRawFormatTimeMax() / GetRawFormatTimeBins(); } |
ee299369 |
82 | Double_t GetRawFormatTimeTrigger() const { return fgTimeTrigger ; } |
83 | Int_t GetRawFormatThreshold() const { return fgThreshold ; } |
84 | Int_t GetRawFormatDDLPerSuperModule() const { return fgDDLPerSuperModule ; } |
16605c06 |
85 | AliCaloRawAnalyzer *GetRawAnalyzer() const { return fRawAnalyzer;} |
86 | |
feedcab9 |
87 | virtual Option_t* GetOption() const { return fOption.Data(); } |
16605c06 |
88 | void SetOption(const Option_t* opt) { fOption = opt; } |
feedcab9 |
89 | |
ee299369 |
90 | // Signal shape functions |
9f467289 |
91 | |
507751ce |
92 | void FitRaw(const Int_t firstTimeBin, const Int_t lastTimeBin, Float_t & amp, Float_t & time, Bool_t & fitDone) const ; |
16605c06 |
93 | void FitParabola(const TGraph *gSig, Float_t & amp) const ; |
ee299369 |
94 | static Double_t RawResponseFunction(Double_t *x, Double_t *par); |
7683df1d |
95 | static Double_t RawResponseFunctionLog(Double_t *x, Double_t *par); |
6751f762 |
96 | Bool_t RawSampledResponse(Double_t dtime, Double_t damp, Int_t * adcH, Int_t * adcL, const Int_t keyErr=0) const; |
ee299369 |
97 | |
ee299369 |
98 | |
99 | private: |
100 | Double_t fHighLowGainFactor ; // high to low gain factor for the raw RO signal |
b4133f05 |
101 | Int_t fOrder ; // order of the gamma function for the RO signal |
102 | Double_t fTau ; // tau parameter of gamma function for the RO signal |
103 | Int_t fNoiseThreshold; // threshold to consider signal or noise |
104 | Int_t fNPedSamples; // number of samples to use in pedestal calculation |
ee299369 |
105 | |
b4133f05 |
106 | static const Int_t fgkOverflowCut = 950; // cut to discriminate overflowed channels |
b4133f05 |
107 | static const Int_t fgkRawSignalOverflow = 0x3FF; // maximum signal (10 bits) |
7643e728 |
108 | static Int_t fgTimeBins; // number of sampling bins of the raw RO signal |
b4133f05 |
109 | |
110 | static Double_t fgTimeTrigger ; // time of the trigger for the RO signal |
82cbdfca |
111 | static Double_t fgTimeBinWidth; // maximum sampled time of the raw RO signal |
ee299369 |
112 | static Int_t fgThreshold; // threshold |
113 | static Int_t fgDDLPerSuperModule; // number of DDL per SuperModule |
fe93d365 |
114 | static Int_t fgPedestalValue; // pedestal value for Digits2Raw |
115 | static Double_t fgFEENoise; // electronics noise in ADC units |
feedcab9 |
116 | |
9f467289 |
117 | AliEMCALGeometry* fGeom; //geometry |
118 | AliAltroMapping* fMapping[4]; //only two for now |
65bdc82f |
119 | |
feedcab9 |
120 | TString fOption; //! option passed from Reconstructor |
b4133f05 |
121 | |
9f467289 |
122 | Bool_t fRemoveBadChannels; // select if bad channels are removed before fitting |
123 | Int_t fFittingAlgorithm; // select the fitting algorithm |
46f1d25f |
124 | Bool_t fUseFALTRO; // use FALTRO and pass it to the digits |
125 | |
16605c06 |
126 | AliCaloRawAnalyzer *fRawAnalyzer; // e.g. for sample selection for fits |
9f467289 |
127 | |
46f1d25f |
128 | ClassDef(AliEMCALRawUtils,6) // utilities for raw signal fitting |
ee299369 |
129 | }; |
130 | |
131 | #endif |