]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALRecoUtils.h
fix stupid streamer mistake
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRecoUtils.h
1 #ifndef ALIEMCALRECOUTILS_H
2 #define ALIEMCALRECOUTILS_H
3
4 /* $Id: AliEMCALRecoUtils.h | Tue Jul 23 09:11:15 2013 +0000 | gconesab  $ */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //
8 // Class AliEMCALRecoUtils
9 // Some utilities to recalculate the cluster position or energy linearity
10 //
11 //
12 // Author:  Gustavo Conesa (LPSC- Grenoble) 
13 //          Track matching part: Rongrong Ma (Yale)
14 ///////////////////////////////////////////////////////////////////////////////
15
16 //Root includes
17 #include <TNamed.h>
18 #include <TMath.h>
19 class TObjArray;
20 class TArrayI;
21 class TArrayF;
22 #include <TH2I.h>
23 class TH2F;
24 #include <TRandom3.h>
25
26 //AliRoot includes
27 class AliVCluster;
28 class AliVCaloCells;
29 class AliVEvent;
30 #include "AliLog.h"
31
32 // EMCAL includes
33 class AliEMCALGeometry;
34 class AliEMCALPIDUtils;
35 class AliESDtrack;
36 class AliExternalTrackParam;
37 class AliVTrack;
38
39 class AliEMCALRecoUtils : public TNamed {
40   
41 public:
42   
43   AliEMCALRecoUtils();
44   AliEMCALRecoUtils(const AliEMCALRecoUtils&); 
45   AliEMCALRecoUtils& operator=(const AliEMCALRecoUtils&); 
46   virtual ~AliEMCALRecoUtils() ;  
47   
48   void     InitParameters();
49   void     Print(const Option_t*) const;
50
51   //enums
52   enum     NonlinearityFunctions{kPi0MC=0,kPi0GammaGamma=1,kPi0GammaConversion=2,kNoCorrection=3,kBeamTest=4,kBeamTestCorrected=5,kPi0MCv2=6,kPi0MCv3=7,kBeamTestCorrectedv2=8,kSDMv5=9,kPi0MCv5=10};
53   enum     PositionAlgorithms{kUnchanged=-1,kPosTowerIndex=0, kPosTowerGlobal=1};
54   enum     ParticleType{kPhoton=0, kElectron=1,kHadron =2, kUnknown=-1};
55   enum     { kNCuts = 12 }; //track matching Marcel
56   enum     TrackCutsType{kTPCOnlyCut=0, kGlobalCut=1, kLooseCut=2, kITSStandAlone=3};  //Marcel
57
58   //-----------------------------------------------------
59   //Position recalculation
60   //-----------------------------------------------------
61   void     RecalculateClusterPosition               (const AliEMCALGeometry *geom, AliVCaloCells* cells, AliVCluster* clu); 
62   void     RecalculateClusterPositionFromTowerIndex (const AliEMCALGeometry *geom, AliVCaloCells* cells, AliVCluster* clu); 
63   void     RecalculateClusterPositionFromTowerGlobal(const AliEMCALGeometry *geom, AliVCaloCells* cells, AliVCluster* clu); 
64   Float_t  GetCellWeight(Float_t eCell, Float_t eCluster) const { if (eCell > 0 && eCluster > 0) return TMath::Max( 0., fW0 + TMath::Log( eCell / eCluster )) ;
65                                                                   else                           return 0.                                                    ; }
66   Float_t  GetDepth(Float_t eCluster, Int_t iParticle, Int_t iSM) const; 
67   void     GetMaxEnergyCell(const AliEMCALGeometry *geom, AliVCaloCells* cells, const AliVCluster* clu, 
68                             Int_t & absId,  Int_t& iSupMod, Int_t& ieta, Int_t& iphi, Bool_t &shared);
69   
70   Float_t  GetMisalTransShift(Int_t i)       const { if(i < 15 ) { return fMisalTransShift[i] ; }
71                                                      else        { AliInfo(Form("Index %d larger than 15, do nothing\n",i)) ; 
72                                                                    return 0.                  ; } }
73   Float_t* GetMisalTransShiftArray()                  { return fMisalTransShift ; }
74   void     SetMisalTransShift(Int_t i, Float_t shift) { if(i < 15 ) { fMisalTransShift[i] = shift ; }
75                                                         else        { AliInfo(Form("Index %d larger than 15, do nothing\n",i)) ; } }
76   void     SetMisalTransShiftArray(Float_t * misal)   { for(Int_t i = 0; i < 15; i++) fMisalTransShift[i] = misal[i]  ; }
77   Float_t  GetMisalRotShift(Int_t i)         const    { if(i < 15 ) { return fMisalRotShift[i]    ; }
78                                                         else        { AliInfo(Form("Index %d larger than 15, do nothing\n",i)) ; 
79                                                                       return 0.                   ; } }
80   Float_t* GetMisalRotShiftArray()                    { return fMisalRotShift                     ; }
81   void     SetMisalRotShift(Int_t i, Float_t shift)   { if(i < 15 ) { fMisalRotShift[i] = shift   ; }
82                                                         else        { AliInfo(Form("Index %d larger than 15, do nothing\n",i)) ; } }
83   void     SetMisalRotShiftArray(Float_t * misal)     { for(Int_t i = 0; i < 15; i++)fMisalRotShift[i] = misal[i] ; }
84   Int_t    GetParticleType()                       const { return  fParticleType    ; }
85   void     SetParticleType(Int_t particle)               { fParticleType = particle ; }
86   Int_t    GetPositionAlgorithm()                  const { return fPosAlgo          ; }
87   void     SetPositionAlgorithm(Int_t alg)               { fPosAlgo = alg           ; }
88   Float_t  GetW0()                                 const { return fW0               ; }
89   void     SetW0(Float_t w0)                             { fW0  = w0                ; }
90
91   //-----------------------------------------------------
92   // Non Linearity
93   //-----------------------------------------------------
94   Float_t  CorrectClusterEnergyLinearity(AliVCluster* clu) ;
95   Float_t  GetNonLinearityParam(Int_t i)     const { if(i < 7 && i >=0 ){ return fNonLinearityParams[i]  ; }
96                                                      else  { AliInfo(Form("Index %d larger than 6 or negative, do nothing\n",i)) ;
97                                                                          return 0.                     ; } }
98   void     SetNonLinearityParam(Int_t i, Float_t param)  { if(i < 7 && i >=0 ){ fNonLinearityParams[i] = param ; }
99                                                            else { AliInfo(Form("Index %d larger than 6 or negative, do nothing\n",i)) ; } }
100   void     InitNonLinearityParam();
101   Int_t    GetNonLinearityFunction() const               { return fNonLinearityFunction    ; }
102   void     SetNonLinearityFunction(Int_t fun)            { fNonLinearityFunction = fun     ; InitNonLinearityParam() ; }
103   void     SetNonLinearityThreshold(Int_t threshold)     { fNonLinearThreshold = threshold ; } //only for Alexie's non linearity correction
104   Int_t    GetNonLinearityThreshold()              const { return fNonLinearThreshold      ; }
105
106   //-----------------------------------------------------
107   // MC clusters energy smearing
108   //-----------------------------------------------------
109   Float_t  SmearClusterEnergy(const AliVCluster* clu) ;
110   void     SwitchOnClusterEnergySmearing()               { fSmearClusterEnergy = kTRUE         ; }
111   void     SwitchOffClusterEnergySmearing()              { fSmearClusterEnergy = kFALSE        ; }
112   Bool_t   IsClusterEnergySmeared()                const { return fSmearClusterEnergy          ; }   
113   void     SetSmearingParameters(Int_t i, Float_t param) { if(i < 3){ fSmearClusterParam[i] = param ; }
114                                                            else     { AliInfo(Form("Index %d larger than 2, do nothing\n",i)) ; } }
115   //-----------------------------------------------------
116   // Recalibration
117   //-----------------------------------------------------
118   Bool_t   AcceptCalibrateCell(Int_t absId, Int_t bc,
119                                Float_t & amp, Double_t & time, AliVCaloCells* cells) ; // Energy and Time
120   void     RecalibrateCells(AliVCaloCells * cells, Int_t bc) ; // Energy and Time
121   void     RecalibrateClusterEnergy(const AliEMCALGeometry* geom, AliVCluster* cluster, AliVCaloCells * cells, Int_t bc=-1) ; // Energy and time
122   void     ResetCellsCalibrated()                        { fCellsRecalibrated = kFALSE; }
123
124   // Energy recalibration
125   Bool_t   IsRecalibrationOn()                     const { return fRecalibration ; }
126   void     SwitchOffRecalibration()                      { fRecalibration = kFALSE ; }
127   void     SwitchOnRecalibration()                       { fRecalibration = kTRUE  ; 
128                                                            if(!fEMCALRecalibrationFactors)InitEMCALRecalibrationFactors() ; }
129   void     InitEMCALRecalibrationFactors() ;
130   TObjArray* GetEMCALRecalibrationFactorsArray()   const { return fEMCALRecalibrationFactors ; }
131   TH2F *   GetEMCALChannelRecalibrationFactors(Int_t iSM)     const { return (TH2F*)fEMCALRecalibrationFactors->At(iSM) ; }     
132   void     SetEMCALChannelRecalibrationFactors(TObjArray *map)      { fEMCALRecalibrationFactors = map                  ; }
133   void     SetEMCALChannelRecalibrationFactors(Int_t iSM , TH2F* h) { fEMCALRecalibrationFactors->AddAt(h,iSM)          ; }
134   Float_t  GetEMCALChannelRecalibrationFactor(Int_t iSM , Int_t iCol, Int_t iRow) const { 
135     if(fEMCALRecalibrationFactors) 
136       return (Float_t) ((TH2F*)fEMCALRecalibrationFactors->At(iSM))->GetBinContent(iCol,iRow); 
137     else return 1 ; } 
138   void     SetEMCALChannelRecalibrationFactor(Int_t iSM , Int_t iCol, Int_t iRow, Double_t c = 1) { 
139     if(!fEMCALRecalibrationFactors) InitEMCALRecalibrationFactors() ;
140     ((TH2F*)fEMCALRecalibrationFactors->At(iSM))->SetBinContent(iCol,iRow,c) ; }
141   
142   //Recalibrate channels energy with run dependent corrections
143   Bool_t   IsRunDepRecalibrationOn()               const { return fUseRunCorrectionFactors ; }
144   void     SwitchOffRunDepCorrection()                   { fUseRunCorrectionFactors = kFALSE ; }
145   void     SwitchOnRunDepCorrection()                    { fUseRunCorrectionFactors = kTRUE  ; 
146                                                            SwitchOnRecalibration()           ; }      
147   // Time Recalibration  
148   void     RecalibrateCellTime(Int_t absId, Int_t bc, Double_t & time) const;
149   
150   Bool_t   IsTimeRecalibrationOn()                 const { return fTimeRecalibration   ; }
151   void     SwitchOffTimeRecalibration()                  { fTimeRecalibration = kFALSE ; }
152   void     SwitchOnTimeRecalibration()                   { fTimeRecalibration = kTRUE  ; 
153                                                            if(!fEMCALTimeRecalibrationFactors)InitEMCALTimeRecalibrationFactors() ; }
154   void     InitEMCALTimeRecalibrationFactors() ;
155   TObjArray* GetEMCALTimeRecalibrationFactorsArray() const { return fEMCALTimeRecalibrationFactors ; }
156
157   Float_t  GetEMCALChannelTimeRecalibrationFactor(Int_t bc, Int_t absID) const { 
158     if(fEMCALTimeRecalibrationFactors) 
159       return (Float_t) ((TH1F*)fEMCALTimeRecalibrationFactors->At(bc))->GetBinContent(absID); 
160     else return 0 ; } 
161   void     SetEMCALChannelTimeRecalibrationFactor(Int_t bc, Int_t absID, Double_t c = 0) { 
162     if(!fEMCALTimeRecalibrationFactors) InitEMCALTimeRecalibrationFactors() ;
163     ((TH1F*)fEMCALTimeRecalibrationFactors->At(bc))->SetBinContent(absID,c) ; }  
164   
165   TH1F *   GetEMCALChannelTimeRecalibrationFactors(Int_t bc)const       { return (TH1F*)fEMCALTimeRecalibrationFactors->At(bc) ; }      
166   void     SetEMCALChannelTimeRecalibrationFactors(TObjArray *map)            { fEMCALTimeRecalibrationFactors = map                 ; }
167   void     SetEMCALChannelTimeRecalibrationFactors(Int_t bc , TH1F* h)  { fEMCALTimeRecalibrationFactors->AddAt(h,bc)          ; }
168   
169   //-----------------------------------------------------
170   // Modules fiducial region, remove clusters in borders
171   //-----------------------------------------------------
172   Bool_t   CheckCellFiducialRegion(const AliEMCALGeometry* geom, 
173                                    const AliVCluster* cluster, 
174                                    AliVCaloCells* cells) ;
175   void     SetNumberOfCellsFromEMCALBorder(Int_t n){ fNCellsFromEMCALBorder = n      ; }
176   Int_t    GetNumberOfCellsFromEMCALBorder()      const  { return fNCellsFromEMCALBorder   ; }
177     
178   void     SwitchOnNoFiducialBorderInEMCALEta0()         { fNoEMCALBorderAtEta0 = kTRUE    ; }
179   void     SwitchOffNoFiducialBorderInEMCALEta0()        { fNoEMCALBorderAtEta0 = kFALSE   ; }
180   Bool_t   IsEMCALNoBorderAtEta0()                 const { return fNoEMCALBorderAtEta0     ; }
181   
182   //-----------------------------------------------------
183   // Bad channels
184   //-----------------------------------------------------
185   Bool_t   IsBadChannelsRemovalSwitchedOn()        const { return fRemoveBadChannels       ; }
186   void     SwitchOffBadChannelsRemoval()                 { fRemoveBadChannels = kFALSE     ; }
187   void     SwitchOnBadChannelsRemoval ()                 { fRemoveBadChannels = kTRUE ; 
188                                                            if(!fEMCALBadChannelMap)InitEMCALBadChannelStatusMap() ; }
189   Bool_t   IsDistanceToBadChannelRecalculated()    const { return fRecalDistToBadChannels   ; }
190   void     SwitchOffDistToBadChannelRecalculation()      { fRecalDistToBadChannels = kFALSE ; }
191   void     SwitchOnDistToBadChannelRecalculation()       { fRecalDistToBadChannels = kTRUE  ; 
192                                                            if(!fEMCALBadChannelMap)InitEMCALBadChannelStatusMap() ; }
193   TObjArray* GetEMCALBadChannelStatusMapArray()    const { return fEMCALBadChannelMap ; }
194   void     InitEMCALBadChannelStatusMap() ;
195   Int_t    GetEMCALChannelStatus(Int_t iSM , Int_t iCol, Int_t iRow) const { 
196     if(fEMCALBadChannelMap) return (Int_t) ((TH2I*)fEMCALBadChannelMap->At(iSM))->GetBinContent(iCol,iRow); 
197     else return 0;}//Channel is ok by default
198   void     SetEMCALChannelStatus(Int_t iSM , Int_t iCol, Int_t iRow, Double_t c = 1) { 
199     if(!fEMCALBadChannelMap)InitEMCALBadChannelStatusMap()               ;
200     ((TH2I*)fEMCALBadChannelMap->At(iSM))->SetBinContent(iCol,iRow,c)    ; }
201   TH2I *   GetEMCALChannelStatusMap(Int_t iSM)     const { return (TH2I*)fEMCALBadChannelMap->At(iSM) ; }
202   void     SetEMCALChannelStatusMap(TObjArray *map)      { fEMCALBadChannelMap = map                  ; }
203   void     SetEMCALChannelStatusMap(Int_t iSM , TH2I* h) { fEMCALBadChannelMap->AddAt(h,iSM)          ; }
204   Bool_t   ClusterContainsBadChannel(const AliEMCALGeometry* geom, const UShort_t* cellList, Int_t nCells);
205  
206   //-----------------------------------------------------
207   // Recalculate other cluster parameters
208   //-----------------------------------------------------
209   void     RecalculateClusterDistanceToBadChannel (const AliEMCALGeometry * geom, AliVCaloCells* cells, AliVCluster * cluster);
210   void     RecalculateClusterShowerShapeParameters(const AliEMCALGeometry * geom, AliVCaloCells* cells, AliVCluster * cluster);
211   void     RecalculateClusterShowerShapeParameters(const AliEMCALGeometry * geom, AliVCaloCells* cells, AliVCluster * cluster,
212                                                    Float_t & l0,   Float_t & l1,   
213                                                    Float_t & disp, Float_t & dEta, Float_t & dPhi,
214                                                    Float_t & sEta, Float_t & sPhi, Float_t & sEtaPhi);
215   void     RecalculateClusterPID(AliVCluster * cluster);
216   AliEMCALPIDUtils * GetPIDUtils() { return fPIDUtils;}
217
218   //----------------------------------------------------
219   // Track matching
220   //----------------------------------------------------
221   void     FindMatches(AliVEvent *event, TObjArray * clusterArr=0x0, const AliEMCALGeometry *geom=0x0);
222   Int_t    FindMatchedClusterInEvent(const AliESDtrack *track, const AliVEvent *event, 
223                                      const AliEMCALGeometry *geom, Float_t &dEta, Float_t &dPhi);
224   Int_t    FindMatchedClusterInClusterArr(const AliExternalTrackParam *emcalParam, 
225                                           AliExternalTrackParam *trkParam, 
226                                           const TObjArray * clusterArr, 
227                                           Float_t &dEta, Float_t &dPhi);
228   static Bool_t ExtrapolateTrackToEMCalSurface(AliVTrack *track, /*note, on success the call will change the track*/
229                                                Double_t emcalR=440, Double_t mass=0.1396,
230                                                Double_t step=20, Double_t minpT=0.35,
231                                                Bool_t useMassForTracking = kFALSE);
232   static Bool_t ExtrapolateTrackToEMCalSurface(AliExternalTrackParam *trkParam, 
233                                                Double_t emcalR, Double_t mass, Double_t step, 
234                                                Float_t &eta, Float_t &phi, Float_t &pt);
235   static Bool_t ExtrapolateTrackToPosition(AliExternalTrackParam *trkParam, const Float_t *clsPos, 
236                                            Double_t mass, Double_t step, 
237                                            Float_t &tmpEta, Float_t &tmpPhi);
238   static Bool_t ExtrapolateTrackToCluster (AliExternalTrackParam *trkParam, const AliVCluster *cluster, 
239                                            Double_t mass, Double_t step,
240                                            Float_t &tmpEta, Float_t &tmpPhi);
241   Bool_t        ExtrapolateTrackToCluster (AliExternalTrackParam *trkParam, const AliVCluster *cluster, 
242                                            Float_t &tmpEta, Float_t &tmpPhi);
243   UInt_t   FindMatchedPosForCluster(Int_t clsIndex) const;
244   UInt_t   FindMatchedPosForTrack  (Int_t trkIndex) const;
245   void     GetMatchedResiduals       (Int_t clsIndex, Float_t &dEta, Float_t &dPhi);
246   void     GetMatchedClusterResiduals(Int_t trkIndex, Float_t &dEta, Float_t &dPhi);
247   Int_t    GetMatchedTrackIndex(Int_t clsIndex);
248   Int_t    GetMatchedClusterIndex(Int_t trkIndex);
249   Bool_t   IsClusterMatched(Int_t clsIndex)         const;
250   Bool_t   IsTrackMatched  (Int_t trkIndex)         const;
251   void     SetClusterMatchedToTrack (const AliVEvent *event);
252   void     SetTracksMatchedToCluster(const AliVEvent *event);  
253   void     SwitchOnCutEtaPhiSum()                     { fCutEtaPhiSum      = kTRUE    ; 
254                                                         fCutEtaPhiSeparate = kFALSE   ; }
255   void     SwitchOnCutEtaPhiSeparate()                { fCutEtaPhiSeparate = kTRUE    ;
256                                                         fCutEtaPhiSum      = kFALSE   ; }
257   Float_t  GetCutR()                            const { return fCutR                  ; }
258   Float_t  GetCutEta()                          const { return fCutEta                ; }
259   Float_t  GetCutPhi()                          const { return fCutPhi                ; }
260   Double_t GetClusterWindow()                   const { return fClusterWindow         ; }
261   void     SetCutR(Float_t cutR)                      { fCutR   = cutR                ; }
262   void     SetCutEta(Float_t cutEta)                  { fCutEta = cutEta              ; }
263   void     SetCutPhi(Float_t cutPhi)                  { fCutPhi = cutPhi              ; }
264   void     SetClusterWindow(Double_t window)          { fClusterWindow = window       ; }
265   void     SetCutZ(Float_t cutZ)                      { printf("Obsolete fucntion of cutZ=%1.1f\n",cutZ) ; } //Obsolete
266   void     SetEMCalSurfaceDistance(Double_t d)        { fEMCalSurfaceDistance = d     ; }
267   Double_t GetMass()                            const { return fMass                  ; }
268   Double_t GetStep()                            const { return fStepCluster           ; }
269   Double_t GetStepSurface()                     const { return fStepSurface           ; }
270   void     SetMass(Double_t mass)                     { fMass = mass                  ; }
271   void     SetStep(Double_t step)                     { fStepSurface = step           ; }
272   void     SetStepCluster(Double_t step)              { fStepCluster = step           ; }
273   void     SetITSTrackSA(Bool_t isITS)                { fITSTrackSA = isITS           ; } //Special Handle of AliExternTrackParam    
274     
275   // Exotic cells / clusters
276   Bool_t   IsExoticCell(Int_t absId, AliVCaloCells* cells, Int_t bc =-1) ;
277   void     SwitchOnRejectExoticCell()                 { fRejectExoticCells = kTRUE     ; }
278   void     SwitchOffRejectExoticCell()                { fRejectExoticCells = kFALSE    ; } 
279   Bool_t   IsRejectExoticCell()                 const { return fRejectExoticCells      ; }
280   Float_t  GetECross(Int_t absID, Double_t tcell,
281                      AliVCaloCells* cells, Int_t bc);
282   Float_t  GetExoticCellFractionCut()           const { return fExoticCellFraction     ; }
283   Float_t  GetExoticCellDiffTimeCut()           const { return fExoticCellDiffTime     ; }
284   Float_t  GetExoticCellMinAmplitudeCut()       const { return fExoticCellMinAmplitude ; }
285   void     SetExoticCellFractionCut(Float_t f)        { fExoticCellFraction     = f    ; }
286   void     SetExoticCellDiffTimeCut(Float_t dt)       { fExoticCellDiffTime     = dt   ; }
287   void     SetExoticCellMinAmplitudeCut(Float_t ma)   { fExoticCellMinAmplitude = ma   ; }
288   Bool_t   IsExoticCluster(const AliVCluster *cluster, AliVCaloCells* cells, Int_t bc=0) ;
289   void     SwitchOnRejectExoticCluster()              { fRejectExoticCluster = kTRUE   ;
290                                                         fRejectExoticCells   = kTRUE   ; }
291   void     SwitchOffRejectExoticCluster()             { fRejectExoticCluster = kFALSE  ; }
292   Bool_t   IsRejectExoticCluster()              const { return fRejectExoticCluster    ; }
293
294   //Cluster cut
295   Bool_t   IsGoodCluster(AliVCluster *cluster, const AliEMCALGeometry *geom, 
296                          AliVCaloCells* cells, Int_t bc =-1);
297
298   //Track Cuts 
299   Bool_t   IsAccepted(AliESDtrack *track);
300   void     InitTrackCuts();
301   void     SetTrackCutsType(Int_t type)              { fTrackCutsType = type           ; 
302                                                        InitTrackCuts()                 ; }
303   Int_t    GetTrackCutsType() const                  { return fTrackCutsType; }
304
305   // Define AOD track type for matching
306   void     SwitchOffAODHybridTracksMatch()           { fAODHybridTracks         = kFALSE ; }
307   void     SwitchOffAODTPCOnlyTracksMatch()          { fAODTPCOnlyTracks        = kFALSE ; }
308   void     SwitchOnAODHybridTracksMatch()            { fAODHybridTracks         = kTRUE  ; SwitchOffAODTPCOnlyTracksMatch() ; }
309   void     SwitchOnAODTPCOnlyTracksMatch()           { fAODTPCOnlyTracks        = kTRUE  ; SwitchOffAODHybridTracksMatch()  ; }
310   void     SetAODTrackFilterMask( UInt_t mask)       { fAODFilterMask           = mask   ;
311                                                        SwitchOffAODTPCOnlyTracksMatch()  ; SwitchOffAODHybridTracksMatch()  ; }
312
313   // track quality cut setters
314   void     SetMinTrackPt(Double_t pt=0)              { fCutMinTrackPt           = pt   ; }
315   void     SetMinNClustersTPC(Int_t min=-1)          { fCutMinNClusterTPC       = min  ; }
316   void     SetMinNClustersITS(Int_t min=-1)          { fCutMinNClusterITS       = min  ; }
317   void     SetMaxChi2PerClusterTPC(Float_t max=1e10) { fCutMaxChi2PerClusterTPC = max  ; }
318   void     SetMaxChi2PerClusterITS(Float_t max=1e10) { fCutMaxChi2PerClusterITS = max  ; }
319   void     SetRequireTPCRefit(Bool_t b=kFALSE)       { fCutRequireTPCRefit      = b    ; }
320   void     SetRequireITSRefit(Bool_t b=kFALSE)       { fCutRequireITSRefit      = b    ; }
321   void     SetAcceptKinkDaughters(Bool_t b=kTRUE)    { fCutAcceptKinkDaughters  = b    ; }
322   void     SetMaxDCAToVertexXY(Float_t dist=1e10)    { fCutMaxDCAToVertexXY     = dist ; }
323   void     SetMaxDCAToVertexZ(Float_t dist=1e10)     { fCutMaxDCAToVertexZ      = dist ; }
324   void     SetDCAToVertex2D(Bool_t b=kFALSE)         { fCutDCAToVertex2D        = b    ; }
325   void     SetRequireITSStandAlone(Bool_t b=kFALSE)    {fCutRequireITSStandAlone = b;} //Marcel
326   void     SetRequireITSPureStandAlone(Bool_t b=kFALSE){fCutRequireITSpureSA     = b;}
327   
328   // getters                                                            
329   Double_t GetMinTrackPt()                     const { return fCutMinTrackPt           ; }
330   Int_t    GetMinNClusterTPC()                 const { return fCutMinNClusterTPC       ; }
331   Int_t    GetMinNClustersITS()                const { return fCutMinNClusterITS       ; }
332   Float_t  GetMaxChi2PerClusterTPC()           const { return fCutMaxChi2PerClusterTPC ; }
333   Float_t  GetMaxChi2PerClusterITS()           const { return fCutMaxChi2PerClusterITS ; }
334   Bool_t   GetRequireTPCRefit()                const { return fCutRequireTPCRefit      ; }
335   Bool_t   GetRequireITSRefit()                const { return fCutRequireITSRefit      ; }
336   Bool_t   GetAcceptKinkDaughters()            const { return fCutAcceptKinkDaughters  ; }
337   Float_t  GetMaxDCAToVertexXY()               const { return fCutMaxDCAToVertexXY     ; }
338   Float_t  GetMaxDCAToVertexZ()                const { return fCutMaxDCAToVertexZ      ; }
339   Bool_t   GetDCAToVertex2D()                  const { return fCutDCAToVertex2D        ; }
340   Bool_t   GetRequireITSStandAlone()           const { return fCutRequireITSStandAlone ; } //Marcel     
341
342 private:  
343   //Position recalculation
344   Float_t    fMisalTransShift[15];       // Shift parameters
345   Float_t    fMisalRotShift[15];         // Shift parameters
346   Int_t      fParticleType;              // Particle type for depth calculation
347   Int_t      fPosAlgo;                   // Position recalculation algorithm
348   Float_t    fW0;                        // Weight0
349     
350   // Non linearity
351   Int_t      fNonLinearityFunction;      // Non linearity function choice
352   Float_t    fNonLinearityParams[7];     // Parameters for the non linearity function
353   Int_t      fNonLinearThreshold;        // Non linearity threshold value for kBeamTesh non linearity function 
354   
355   // Energy smearing for MC
356   Bool_t     fSmearClusterEnergy;        // Smear cluster energy, to be done only for simulated data to match real data
357   Float_t    fSmearClusterParam[3];      // Smearing parameters
358   TRandom3   fRandom;                    // Random generator
359     
360   // Energy Recalibration 
361   Bool_t     fCellsRecalibrated;         // Internal bool to check if cells (time/energy) where recalibrated and not recalibrate them when recalculating different things
362   Bool_t     fRecalibration;             // Switch on or off the recalibration
363   TObjArray* fEMCALRecalibrationFactors; // Array of histograms with map of recalibration factors, EMCAL
364     
365   // Time Recalibration 
366   Bool_t     fTimeRecalibration;             // Switch on or off the time recalibration
367   TObjArray* fEMCALTimeRecalibrationFactors; // Array of histograms with map of time recalibration factors, EMCAL
368   
369   // Recalibrate with run dependent corrections, energy
370   Bool_t     fUseRunCorrectionFactors;   // Use Run Dependent Correction
371     
372   // Bad Channels
373   Bool_t     fRemoveBadChannels;         // Check the channel status provided and remove clusters with bad channels
374   Bool_t     fRecalDistToBadChannels;    // Calculate distance from highest energy tower of cluster to closes bad channel
375   TObjArray* fEMCALBadChannelMap;        // Array of histograms with map of bad channels, EMCAL
376
377   // Border cells
378   Int_t      fNCellsFromEMCALBorder;     // Number of cells from EMCAL border the cell with maximum amplitude has to be.
379   Bool_t     fNoEMCALBorderAtEta0;       // Do fiducial cut in EMCAL region eta = 0?
380   
381   // Exotic cell / cluster
382   Bool_t     fRejectExoticCluster;       // Switch on or off exotic cluster rejection
383   Bool_t     fRejectExoticCells;         // Remove exotic cells
384   Float_t    fExoticCellFraction;        // Good cell if fraction < 1-ecross/ecell
385   Float_t    fExoticCellDiffTime;        // If time of candidate to exotic and close cell is too different (in ns), it must be noisy, set amp to 0
386   Float_t    fExoticCellMinAmplitude;    // Check for exotic only if amplitud is larger than this value
387   
388   // PID
389   AliEMCALPIDUtils * fPIDUtils;          // Recalculate PID parameters
390     
391   //Track matching
392   UInt_t     fAODFilterMask;             // Filter mask to select AOD tracks. Refer to $ALICE_ROOT/ANALYSIS/macros/AddTaskESDFilter.C
393   Bool_t     fAODHybridTracks;           // Match with hybrid
394   Bool_t     fAODTPCOnlyTracks;          // Match with TPC only tracks
395   
396   TArrayI  * fMatchedTrackIndex;         // Array that stores indexes of matched tracks      
397   TArrayI  * fMatchedClusterIndex;       // Array that stores indexes of matched clusters
398   TArrayF  * fResidualEta;               // Array that stores the residual eta
399   TArrayF  * fResidualPhi;               // Array that stores the residual phi
400   Bool_t     fCutEtaPhiSum;              // Place cut on sqrt(dEta^2+dPhi^2)
401   Bool_t     fCutEtaPhiSeparate;         // Cut on dEta and dPhi separately
402   Float_t    fCutR;                      // sqrt(dEta^2+dPhi^2) cut on matching
403   Float_t    fCutEta;                    // dEta cut on matching
404   Float_t    fCutPhi;                    // dPhi cut on matching
405   Double_t   fClusterWindow;             // Select clusters in the window to be matched
406   Double_t   fMass;                      // Mass hypothesis of the track
407   Double_t   fStepSurface;               // Length of step to extrapolate tracks to EMCal surface
408   Double_t   fStepCluster;               // Length of step to extrapolate tracks to clusters
409   Bool_t     fITSTrackSA;                // If track matching is to be done with ITS tracks standing alone      
410   Double_t   fEMCalSurfaceDistance;      // EMCal surface distance (= 430 by default, the last 10 cm are propagated on a cluster-track pair basis)
411  
412   // Track cuts  
413   Int_t      fTrackCutsType;             // Esd track cuts type for matching
414   Double_t   fCutMinTrackPt;             // Cut on track pT
415   Int_t      fCutMinNClusterTPC;         // Min number of tpc clusters
416   Int_t      fCutMinNClusterITS;         // Min number of its clusters  
417   Float_t    fCutMaxChi2PerClusterTPC;   // Max tpc fit chi2 per tpc cluster
418   Float_t    fCutMaxChi2PerClusterITS;   // Max its fit chi2 per its cluster
419   Bool_t     fCutRequireTPCRefit;        // Require TPC refit
420   Bool_t     fCutRequireITSRefit;        // Require ITS refit
421   Bool_t     fCutAcceptKinkDaughters;    // Accepting kink daughters?
422   Float_t    fCutMaxDCAToVertexXY;       // Track-to-vertex cut in max absolute distance in xy-plane
423   Float_t    fCutMaxDCAToVertexZ;        // Track-to-vertex cut in max absolute distance in z-plane
424   Bool_t     fCutDCAToVertex2D;          // If true a 2D DCA cut is made.
425   Bool_t     fCutRequireITSStandAlone;   // Require ITSStandAlone
426   Bool_t     fCutRequireITSpureSA;       // ITS pure standalone tracks
427   
428   ClassDef(AliEMCALRecoUtils, 22)
429 };
430 #endif // ALIEMCALRECOUTILS_H
431
432