]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALRecoUtils.h
tunning extra event cuts
[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};
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, Double_t step=20); 
230   static Bool_t ExtrapolateTrackToEMCalSurface(AliExternalTrackParam *trkParam, 
231                                                Double_t emcalR, Double_t mass, Double_t step, 
232                                                Float_t &eta, Float_t &phi, Float_t &pt);
233   static Bool_t ExtrapolateTrackToPosition(AliExternalTrackParam *trkParam, const Float_t *clsPos, 
234                                            Double_t mass, Double_t step, 
235                                            Float_t &tmpEta, Float_t &tmpPhi);
236   static Bool_t ExtrapolateTrackToCluster (AliExternalTrackParam *trkParam, const AliVCluster *cluster, 
237                                            Double_t mass, Double_t step,
238                                            Float_t &tmpEta, Float_t &tmpPhi);
239   Bool_t        ExtrapolateTrackToCluster (AliExternalTrackParam *trkParam, const AliVCluster *cluster, 
240                                            Float_t &tmpEta, Float_t &tmpPhi);
241   UInt_t   FindMatchedPosForCluster(Int_t clsIndex) const;
242   UInt_t   FindMatchedPosForTrack  (Int_t trkIndex) const;
243   void     GetMatchedResiduals       (Int_t clsIndex, Float_t &dEta, Float_t &dPhi);
244   void     GetMatchedClusterResiduals(Int_t trkIndex, Float_t &dEta, Float_t &dPhi);
245   Int_t    GetMatchedTrackIndex(Int_t clsIndex);
246   Int_t    GetMatchedClusterIndex(Int_t trkIndex);
247   Bool_t   IsClusterMatched(Int_t clsIndex)         const;
248   Bool_t   IsTrackMatched  (Int_t trkIndex)         const;
249   void     SetClusterMatchedToTrack (const AliVEvent *event);
250   void     SetTracksMatchedToCluster(const AliVEvent *event);  
251   void     SwitchOnCutEtaPhiSum()                     { fCutEtaPhiSum      = kTRUE    ; 
252                                                         fCutEtaPhiSeparate = kFALSE   ; }
253   void     SwitchOnCutEtaPhiSeparate()                { fCutEtaPhiSeparate = kTRUE    ;
254                                                         fCutEtaPhiSum      = kFALSE   ; }
255   Float_t  GetCutR()                            const { return fCutR                  ; }
256   Float_t  GetCutEta()                          const { return fCutEta                ; }
257   Float_t  GetCutPhi()                          const { return fCutPhi                ; }
258   Double_t GetClusterWindow()                   const { return fClusterWindow         ; }
259   void     SetCutR(Float_t cutR)                      { fCutR   = cutR                ; }
260   void     SetCutEta(Float_t cutEta)                  { fCutEta = cutEta              ; }
261   void     SetCutPhi(Float_t cutPhi)                  { fCutPhi = cutPhi              ; }
262   void     SetClusterWindow(Double_t window)          { fClusterWindow = window       ; }
263   void     SetCutZ(Float_t cutZ)                      { printf("Obsolete fucntion of cutZ=%1.1f\n",cutZ) ; } //Obsolete
264   void     SetEMCalSurfaceDistance(Double_t d)        { fEMCalSurfaceDistance = d     ; }
265   Double_t GetMass()                            const { return fMass                  ; }
266   Double_t GetStep()                            const { return fStepCluster           ; }
267   Double_t GetStepSurface()                     const { return fStepSurface           ; }
268   void     SetMass(Double_t mass)                     { fMass = mass                  ; }
269   void     SetStep(Double_t step)                     { fStepSurface = step           ; }
270   void     SetStepCluster(Double_t step)              { fStepCluster = step           ; }
271   void     SetITSTrackSA(Bool_t isITS)                { fITSTrackSA = isITS           ; } //Special Handle of AliExternTrackParam    
272   
273   // Exotic cells / clusters
274   Bool_t   IsExoticCell(Int_t absId, AliVCaloCells* cells, Int_t bc =-1) ;
275   void     SwitchOnRejectExoticCell()                 { fRejectExoticCells = kTRUE     ; }
276   void     SwitchOffRejectExoticCell()                { fRejectExoticCells = kFALSE    ; } 
277   Bool_t   IsRejectExoticCell()                 const { return fRejectExoticCells      ; }
278   Float_t  GetECross(Int_t absID, Double_t tcell,
279                      AliVCaloCells* cells, Int_t bc);
280   Float_t  GetExoticCellFractionCut()           const { return fExoticCellFraction     ; }
281   Float_t  GetExoticCellDiffTimeCut()           const { return fExoticCellDiffTime     ; }
282   Float_t  GetExoticCellMinAmplitudeCut()       const { return fExoticCellMinAmplitude ; }
283   void     SetExoticCellFractionCut(Float_t f)        { fExoticCellFraction     = f    ; }
284   void     SetExoticCellDiffTimeCut(Float_t dt)       { fExoticCellDiffTime     = dt   ; }
285   void     SetExoticCellMinAmplitudeCut(Float_t ma)   { fExoticCellMinAmplitude = ma   ; }
286   Bool_t   IsExoticCluster(const AliVCluster *cluster, AliVCaloCells* cells, Int_t bc=0) ;
287   void     SwitchOnRejectExoticCluster()              { fRejectExoticCluster = kTRUE   ;
288                                                         fRejectExoticCells   = kTRUE   ; }
289   void     SwitchOffRejectExoticCluster()             { fRejectExoticCluster = kFALSE  ; }
290   Bool_t   IsRejectExoticCluster()              const { return fRejectExoticCluster    ; }
291
292   //Cluster cut
293   Bool_t   IsGoodCluster(AliVCluster *cluster, const AliEMCALGeometry *geom, 
294                          AliVCaloCells* cells, Int_t bc =-1);
295
296   //Track Cuts 
297   Bool_t   IsAccepted(AliESDtrack *track);
298   void     InitTrackCuts();
299   void     SetTrackCutsType(Int_t type)              { fTrackCutsType = type           ; 
300                                                        InitTrackCuts()                 ; }
301   Int_t    GetTrackCutsType() const                  { return fTrackCutsType; }
302
303   // Define AOD track type for matching
304   void     SwitchOffAODHybridTracksMatch()           { fAODHybridTracks         = kFALSE ; }
305   void     SwitchOffAODTPCOnlyTracksMatch()          { fAODTPCOnlyTracks        = kFALSE ; }
306   void     SwitchOnAODHybridTracksMatch()            { fAODHybridTracks         = kTRUE  ; SwitchOffAODTPCOnlyTracksMatch() ; }
307   void     SwitchOnAODTPCOnlyTracksMatch()           { fAODTPCOnlyTracks        = kTRUE  ; SwitchOffAODHybridTracksMatch()  ; }
308   void     SetAODTrackFilterMask( UInt_t mask)       { fAODFilterMask           = mask   ;
309                                                        SwitchOffAODTPCOnlyTracksMatch()  ; SwitchOffAODHybridTracksMatch()  ; }
310
311   // track quality cut setters
312   void     SetMinTrackPt(Double_t pt=0)              { fCutMinTrackPt           = pt   ; }
313   void     SetMinNClustersTPC(Int_t min=-1)          { fCutMinNClusterTPC       = min  ; }
314   void     SetMinNClustersITS(Int_t min=-1)          { fCutMinNClusterITS       = min  ; }
315   void     SetMaxChi2PerClusterTPC(Float_t max=1e10) { fCutMaxChi2PerClusterTPC = max  ; }
316   void     SetMaxChi2PerClusterITS(Float_t max=1e10) { fCutMaxChi2PerClusterITS = max  ; }
317   void     SetRequireTPCRefit(Bool_t b=kFALSE)       { fCutRequireTPCRefit      = b    ; }
318   void     SetRequireITSRefit(Bool_t b=kFALSE)       { fCutRequireITSRefit      = b    ; }
319   void     SetAcceptKinkDaughters(Bool_t b=kTRUE)    { fCutAcceptKinkDaughters  = b    ; }
320   void     SetMaxDCAToVertexXY(Float_t dist=1e10)    { fCutMaxDCAToVertexXY     = dist ; }
321   void     SetMaxDCAToVertexZ(Float_t dist=1e10)     { fCutMaxDCAToVertexZ      = dist ; }
322   void     SetDCAToVertex2D(Bool_t b=kFALSE)         { fCutDCAToVertex2D        = b    ; }
323   void     SetRequireITSStandAlone(Bool_t b=kFALSE)    {fCutRequireITSStandAlone = b;} //Marcel
324   void     SetRequireITSPureStandAlone(Bool_t b=kFALSE){fCutRequireITSpureSA     = b;}
325   
326   // getters                                                            
327   Double_t GetMinTrackPt()                     const { return fCutMinTrackPt           ; }
328   Int_t    GetMinNClusterTPC()                 const { return fCutMinNClusterTPC       ; }
329   Int_t    GetMinNClustersITS()                const { return fCutMinNClusterITS       ; }
330   Float_t  GetMaxChi2PerClusterTPC()           const { return fCutMaxChi2PerClusterTPC ; }
331   Float_t  GetMaxChi2PerClusterITS()           const { return fCutMaxChi2PerClusterITS ; }
332   Bool_t   GetRequireTPCRefit()                const { return fCutRequireTPCRefit      ; }
333   Bool_t   GetRequireITSRefit()                const { return fCutRequireITSRefit      ; }
334   Bool_t   GetAcceptKinkDaughters()            const { return fCutAcceptKinkDaughters  ; }
335   Float_t  GetMaxDCAToVertexXY()               const { return fCutMaxDCAToVertexXY     ; }
336   Float_t  GetMaxDCAToVertexZ()                const { return fCutMaxDCAToVertexZ      ; }
337   Bool_t   GetDCAToVertex2D()                  const { return fCutDCAToVertex2D        ; }
338   Bool_t   GetRequireITSStandAlone()           const { return fCutRequireITSStandAlone ; } //Marcel     
339
340 private:  
341   //Position recalculation
342   Float_t    fMisalTransShift[15];       // Shift parameters
343   Float_t    fMisalRotShift[15];         // Shift parameters
344   Int_t      fParticleType;              // Particle type for depth calculation
345   Int_t      fPosAlgo;                   // Position recalculation algorithm
346   Float_t    fW0;                        // Weight0
347     
348   // Non linearity
349   Int_t      fNonLinearityFunction;      // Non linearity function choice
350   Float_t    fNonLinearityParams[7];     // Parameters for the non linearity function
351   Int_t      fNonLinearThreshold;        // Non linearity threshold value for kBeamTesh non linearity function 
352   
353   // Energy smearing for MC
354   Bool_t     fSmearClusterEnergy;        // Smear cluster energy, to be done only for simulated data to match real data
355   Float_t    fSmearClusterParam[3];      // Smearing parameters
356   TRandom3   fRandom;                    // Random generator
357     
358   // Energy Recalibration 
359   Bool_t     fCellsRecalibrated;         // Internal bool to check if cells (time/energy) where recalibrated and not recalibrate them when recalculating different things
360   Bool_t     fRecalibration;             // Switch on or off the recalibration
361   TObjArray* fEMCALRecalibrationFactors; // Array of histograms with map of recalibration factors, EMCAL
362     
363   // Time Recalibration 
364   Bool_t     fTimeRecalibration;             // Switch on or off the time recalibration
365   TObjArray* fEMCALTimeRecalibrationFactors; // Array of histograms with map of time recalibration factors, EMCAL
366   
367   // Recalibrate with run dependent corrections, energy
368   Bool_t     fUseRunCorrectionFactors;   // Use Run Dependent Correction
369     
370   // Bad Channels
371   Bool_t     fRemoveBadChannels;         // Check the channel status provided and remove clusters with bad channels
372   Bool_t     fRecalDistToBadChannels;    // Calculate distance from highest energy tower of cluster to closes bad channel
373   TObjArray* fEMCALBadChannelMap;        // Array of histograms with map of bad channels, EMCAL
374
375   // Border cells
376   Int_t      fNCellsFromEMCALBorder;     // Number of cells from EMCAL border the cell with maximum amplitude has to be.
377   Bool_t     fNoEMCALBorderAtEta0;       // Do fiducial cut in EMCAL region eta = 0?
378   
379   // Exotic cell / cluster
380   Bool_t     fRejectExoticCluster;       // Switch on or off exotic cluster rejection
381   Bool_t     fRejectExoticCells;         // Remove exotic cells
382   Float_t    fExoticCellFraction;        // Good cell if fraction < 1-ecross/ecell
383   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
384   Float_t    fExoticCellMinAmplitude;    // Check for exotic only if amplitud is larger than this value
385   
386   // PID
387   AliEMCALPIDUtils * fPIDUtils;          // Recalculate PID parameters
388     
389   //Track matching
390   UInt_t     fAODFilterMask;             // Filter mask to select AOD tracks. Refer to $ALICE_ROOT/ANALYSIS/macros/AddTaskESDFilter.C
391   Bool_t     fAODHybridTracks;           // Match with hybrid
392   Bool_t     fAODTPCOnlyTracks;          // Match with TPC only tracks
393   
394   TArrayI  * fMatchedTrackIndex;         // Array that stores indexes of matched tracks      
395   TArrayI  * fMatchedClusterIndex;       // Array that stores indexes of matched clusters
396   TArrayF  * fResidualEta;               // Array that stores the residual eta
397   TArrayF  * fResidualPhi;               // Array that stores the residual phi
398   Bool_t     fCutEtaPhiSum;              // Place cut on sqrt(dEta^2+dPhi^2)
399   Bool_t     fCutEtaPhiSeparate;         // Cut on dEta and dPhi separately
400   Float_t    fCutR;                      // sqrt(dEta^2+dPhi^2) cut on matching
401   Float_t    fCutEta;                    // dEta cut on matching
402   Float_t    fCutPhi;                    // dPhi cut on matching
403   Double_t   fClusterWindow;             // Select clusters in the window to be matched
404   Double_t   fMass;                      // Mass hypothesis of the track
405   Double_t   fStepSurface;               // Length of step to extrapolate tracks to EMCal surface
406   Double_t   fStepCluster;               // Length of step to extrapolate tracks to clusters
407   Bool_t     fITSTrackSA;                // If track matching is to be done with ITS tracks standing alone      
408   Double_t   fEMCalSurfaceDistance;      // EMCal surface distance (= 430 by default, the last 10 cm are propagated on a cluster-track pair basis)
409  
410   // Track cuts  
411   Int_t      fTrackCutsType;             // Esd track cuts type for matching
412   Double_t   fCutMinTrackPt;             // Cut on track pT
413   Int_t      fCutMinNClusterTPC;         // Min number of tpc clusters
414   Int_t      fCutMinNClusterITS;         // Min number of its clusters  
415   Float_t    fCutMaxChi2PerClusterTPC;   // Max tpc fit chi2 per tpc cluster
416   Float_t    fCutMaxChi2PerClusterITS;   // Max its fit chi2 per its cluster
417   Bool_t     fCutRequireTPCRefit;        // Require TPC refit
418   Bool_t     fCutRequireITSRefit;        // Require ITS refit
419   Bool_t     fCutAcceptKinkDaughters;    // Accepting kink daughters?
420   Float_t    fCutMaxDCAToVertexXY;       // Track-to-vertex cut in max absolute distance in xy-plane
421   Float_t    fCutMaxDCAToVertexZ;        // Track-to-vertex cut in max absolute distance in z-plane
422   Bool_t     fCutDCAToVertex2D;          // If true a 2D DCA cut is made.
423   Bool_t     fCutRequireITSStandAlone;   // Require ITSStandAlone
424   Bool_t     fCutRequireITSpureSA;       // ITS pure standalone tracks
425   
426   ClassDef(AliEMCALRecoUtils, 21)
427 };
428 #endif // ALIEMCALRECOUTILS_H
429
430