]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALRawUtils.h
Include TVector3.h because we use object of this type in the header file (cmake)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawUtils.h
CommitLineData
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"
23class AliCaloRawStreamV3;
e5bbbc4e 24class AliAltroMapping;
ee299369 25class TGraph;
26class TF1;
27class AliRawReader;
65bdc82f 28class AliEMCALGeometry;
5e3106bc 29class AliCaloCalibPedestal;
ee299369 30
31class AliEMCALRawUtils : public TObject {
32 public:
33 AliEMCALRawUtils();
5544799a 34 AliEMCALRawUtils(AliEMCALGeometry *pGeometry);
ee299369 35 virtual ~AliEMCALRawUtils();
36
65bdc82f 37 AliEMCALRawUtils(const AliEMCALRawUtils& rawUtils); //copy ctor
38 AliEMCALRawUtils& operator =(const AliEMCALRawUtils& rawUtils);
39
40 void Digits2Raw();
5e3106bc 41 void Raw2Digits(AliRawReader *reader,TClonesArray *digitsArr, AliCaloCalibPedestal* pedbadmap);
65bdc82f 42
82cbdfca 43 void AddDigit(TClonesArray *digitsArr, Int_t id, Int_t lowGain, Int_t amp, Float_t time);
ee299369 44
45 // Signal shape parameters
b4133f05 46 Double_t GetRawFormatHighLowGainFactor() const { return fHighLowGainFactor ;}
09974781 47 Int_t GetRawFormatOrder() const { return fOrder ; }
b4133f05 48 Double_t GetRawFormatTau() const { return fTau ; }
09974781 49 Int_t GetNoiseThreshold() const { return fNoiseThreshold; }
50 Int_t GetNPedSamples() const { return fNPedSamples; }
e2c2134b 51 // get methods for fast fit simulation
52 Double_t GetPedestalValue() const {return fgPedestalValue;}
53 Double_t GetFEENoise() const {return fgFEENoise;}
b4133f05 54
55 void SetRawFormatHighLowGainFactor(Double_t val) {fHighLowGainFactor=val;}
56 void SetRawFormatOrder(Int_t val) {fOrder=val; }
57 void SetRawFormatTau(Double_t val) {fTau=val; }
58 void SetNoiseThreshold(Int_t val) {fNoiseThreshold=val; }
59 void SetNPedSamples(Int_t val) {fNPedSamples=val; }
7643e728 60
e2c2134b 61 // set methods for fast fit simulation
62 void SetFEENoise(Double_t val) {fgFEENoise = val;}
63 void SetRawFormatTimeBins(Int_t val) {fgTimeBins = val;}
7643e728 64
e2c2134b 65 static Int_t GetRawFormatTimeBins() { return fgTimeBins ; }
66 static Double_t GetRawFormatTimeMax() { return fgTimeBins*fgTimeBinWidth; }
82cbdfca 67 static Double_t GetRawFormatTimeBinWidth() { return fgTimeBinWidth; }
85c25c2e 68 static Double_t GetRawFormatTimeBin()
69 { return GetRawFormatTimeMax() / GetRawFormatTimeBins(); }
ee299369 70 Double_t GetRawFormatTimeTrigger() const { return fgTimeTrigger ; }
71 Int_t GetRawFormatThreshold() const { return fgThreshold ; }
72 Int_t GetRawFormatDDLPerSuperModule() const { return fgDDLPerSuperModule ; }
73
feedcab9 74 virtual Option_t* GetOption() const { return fOption.Data(); }
75 void SetOption(Option_t* opt) { fOption = opt; }
76
ee299369 77 // Signal shape functions
7643e728 78 void FitRaw(TGraph * gSig, TF1* signalF, const Int_t lastTimeBin, Float_t & amp, Float_t & time, Float_t & ped, Float_t & ampEstimate, Float_t & timeEstimate, Float_t & pedEstimate, const Float_t cut = 0) const ;
ee299369 79 static Double_t RawResponseFunction(Double_t *x, Double_t *par);
80 Bool_t RawSampledResponse(Double_t dtime, Double_t damp, Int_t * adcH, Int_t * adcL) const;
81
ee299369 82
83 private:
84 Double_t fHighLowGainFactor ; // high to low gain factor for the raw RO signal
b4133f05 85 Int_t fOrder ; // order of the gamma function for the RO signal
86 Double_t fTau ; // tau parameter of gamma function for the RO signal
87 Int_t fNoiseThreshold; // threshold to consider signal or noise
88 Int_t fNPedSamples; // number of samples to use in pedestal calculation
ee299369 89
b4133f05 90 static const Int_t fgkOverflowCut = 950; // cut to discriminate overflowed channels
b4133f05 91 static const Int_t fgkRawSignalOverflow = 0x3FF; // maximum signal (10 bits)
7643e728 92 static Int_t fgTimeBins; // number of sampling bins of the raw RO signal
b4133f05 93
94 static Double_t fgTimeTrigger ; // time of the trigger for the RO signal
82cbdfca 95 static Double_t fgTimeBinWidth; // maximum sampled time of the raw RO signal
ee299369 96 static Int_t fgThreshold; // threshold
97 static Int_t fgDDLPerSuperModule; // number of DDL per SuperModule
fe93d365 98 static Int_t fgPedestalValue; // pedestal value for Digits2Raw
99 static Double_t fgFEENoise; // electronics noise in ADC units
feedcab9 100
65bdc82f 101 AliEMCALGeometry* fGeom; //geometry
21cad85c 102 AliAltroMapping* fMapping[4]; //only two for now
65bdc82f 103
feedcab9 104 TString fOption; //! option passed from Reconstructor
b4133f05 105
fe93d365 106 ClassDef(AliEMCALRawUtils,3) // utilities for raw signal fitting
ee299369 107};
108
109#endif