]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/TenderSupplies/AliEMCALTenderSupply.h
Change log
[u/mrichter/AliRoot.git] / ANALYSIS / TenderSupplies / AliEMCALTenderSupply.h
1 #ifndef ALIEMCALTENDERSUPPLY_H
2 #define ALIEMCALTENDERSUPPLY_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 ////////////////////////////////////////////////////////////////////////
8 //                                                                    //
9 //  EMCAL tender, apply corrections to EMCAl clusters                 //
10 //  and do track matching.                                            //
11 //  Author: Deepa Thomas (Utrecht University)                         //
12 //  Later mods/rewrite: Jiri Kral (University of Jyvaskyla)           //
13 //  S. Aiola, C. Loizides : Make it work for AODs                     //
14 //                                                                    //
15 ////////////////////////////////////////////////////////////////////////
16
17 #include "AliTenderSupply.h"
18
19 class TTree;
20 class TClonesArray;
21
22 class AliVCluster;
23 class AliEMCALRecoUtils;
24 class AliEMCALGeometry;
25 class TGeoHMatrix;
26 class TTree;
27 class TFile;
28 class TString;
29 class AliEMCALClusterizer;
30 class AliEMCALAfterBurnerUF;
31 class AliEMCALRecParam;
32 class AliAnalysisTaskSE;
33 class AliVEvent;
34
35 class AliEMCALTenderSupply: public AliTenderSupply {
36   
37 public:
38   AliEMCALTenderSupply();
39   AliEMCALTenderSupply(const char *name, const AliTender *tender=NULL);
40   AliEMCALTenderSupply(const char *name, AliAnalysisTaskSE *task);
41   virtual ~AliEMCALTenderSupply();
42
43   enum NonlinearityFunctions{kPi0MC=0,kPi0GammaGamma=1,kPi0GammaConversion=2,kNoCorrection=3,kBeamTest=4,kBeamTestCorrected=5};
44   enum MisalignSettings{kdefault=0,kSurveybyS=1,kSurveybyM=2};
45
46   virtual void Init();
47   virtual void ProcessEvent();
48
49   void     SetTask(AliAnalysisTaskSE *task)               { fTask = task                     ;}
50   void     SetDefaults();
51
52   void     SetEMCALGeometryName(const char *name)         { fEMCALGeoName = name             ;}
53   TString  EMCALGeometryName()                      const { return fEMCALGeoName             ;}
54
55   void     SetDebugLevel(Int_t level)                     { fDebugLevel=level                ;}
56
57   void     SetBasePath(const Char_t *basePath)            { fBasePath = basePath             ;}
58  
59   void     SetConfigFileName(const char *name)            { fConfigName = name               ;}
60
61   void     SetNonLinearityFunction(Int_t fun)             { fNonLinearFunc = fun             ;}
62   Int_t    GetNonLinearityFunction() const                { return fNonLinearFunc            ;}
63   
64   void     SetNonLinearityThreshold(Int_t threshold)      { fNonLinearThreshold = threshold  ;} //only for Alexei's non linearity correction
65   Int_t    GetNonLinearityThreshold()               const { return fNonLinearThreshold       ;}
66
67   void     SwitchOnNonLinearityCorrection()               { fDoNonLinearity = kTRUE          ;}
68   void     SwitchOffNonLinearityCorrection()              { fDoNonLinearity = kFALSE         ;}
69
70   void     SwitchOnReCalibrateCluster()                   { fReCalibCluster = kTRUE          ;}
71   void     SwitchOffReCalibrateCluster()                  { fReCalibCluster = kFALSE         ;}
72
73   void     SwitchOnRecalculateClusPos()                   { fRecalClusPos = kTRUE            ;}
74   void     SwitchOffRecalculateClusPos()                  { fRecalClusPos = kFALSE           ;}
75
76   void     SetMisalignmentMatrixSurvey(Int_t misalignSurvey) { fMisalignSurvey = misalignSurvey ;}
77   Int_t    GetMisalignmentMatrixSurvey() const               { return fMisalignSurvey           ;}    
78
79   void     SwitchOnCellFiducialRegion()                   { fFiducial = kTRUE                ;}
80   void     SwitchOffCellFiducialRegion()                  { fFiducial = kFALSE               ;}
81
82   void     SetNumberOfCellsFromEMCALBorder(Int_t n)       { fNCellsFromEMCALBorder = n       ;}
83   Int_t    GetNumberOfCellsFromEMCALBorder()        const { return fNCellsFromEMCALBorder    ;}
84
85   void     SwitchOnRecalDistBadChannel()                  { fRecalDistToBadChannels = kTRUE  ;}
86   void     SwitchOffRecalDistBadChannel()                 { fRecalDistToBadChannels = kFALSE ;}
87
88   void     SwitchOnRecalShowerShape()                     { fRecalShowerShape = kTRUE        ;}
89   void     SwitchOffRecalShowerShape()                    { fRecalShowerShape = kFALSE       ;}
90
91   Float_t  GetRCut()                                const { return fRcut                     ;}
92   void     SetRCut(Float_t rcut)                          { fRcut = rcut                     ;}
93
94   Double_t GetMass()                                const { return fMass                     ;}
95   void     SetMass(Double_t mass)                         { fMass = mass                     ;}
96
97   Double_t GetStep()                                const { return fStep                     ;}
98   void     SetStep(Double_t step)                         { fStep = step                     ;}
99
100   Double_t GetEtaCut()                              const { return fEtacut                   ;}
101   void     SetEtaCut(Double_t eta)                        { fEtacut = eta                    ;}
102
103   Double_t GetPhiCut()                              const { return fPhicut                   ;}
104   void     SetPhiCut(Double_t phi)                        { fPhicut = phi                    ;}
105
106   Float_t  GetExoticCellFraction()                  const { return fExoticCellFraction       ;}
107   void     SetExoticCellFraction(Float_t f)               { fExoticCellFraction = f          ;}
108
109   Float_t  GetExoticCellDiffTime()                  const { return fExoticCellDiffTime       ;}
110   void     SetExoticCellDiffTime(Float_t f)               { fExoticCellDiffTime = f          ;}
111
112   Float_t  GetExoticCellMinAmplitude()              const { return fExoticCellMinAmplitude   ;}
113   void     SetExoticCellMinAmplitude(Float_t f)           { fExoticCellMinAmplitude = f      ;}
114
115   void     SwitchOnReclustering()                         { fReClusterize = kTRUE            ;}
116   void     SwitchOffReclustering()                        { fReClusterize = kFALSE           ;}
117
118   void     SwitchOnCutEtaPhiSum()                         { fCutEtaPhiSum=kTRUE;      fCutEtaPhiSeparate=kFALSE ;}
119   void     SwitchOnCutEtaPhiSeparate()                    { fCutEtaPhiSeparate=kTRUE; fCutEtaPhiSum=kFALSE      ;}
120   
121   void     SwitchOnLoadOwnGeometryMatrices()              { fLoadGeomMatrices = kTRUE        ;}
122   void     SwitchOffLoadOwnGeometryMatrices()             { fLoadGeomMatrices = kFALSE       ;}
123   void     SetGeometryMatrixInSM(TGeoHMatrix* m, Int_t i) { fEMCALMatrix[i]    = m           ;}
124   
125   AliEMCALRecParam   *GetRecParam() const                 { return fRecParam                 ;} 
126   void                SetRecParam(AliEMCALRecParam *p)    { fRecParam = p                    ;}
127  
128   AliEMCALRecoUtils  *GetRecoUtils() const                { return fEMCALRecoUtils           ;}
129   void                SetRecoUtils(AliEMCALRecoUtils *r)  { fEMCALRecoUtils = r              ;}
130   
131   void     SwitchOnUpdateCell()                           { fUpdateCell = kTRUE              ;} 
132   void     SwitchOffUpdateCell()                          { fUpdateCell = kFALSE             ;}  
133
134   void     SwitchOnBadCellRemove()                        { fBadCellRemove = kTRUE           ;} 
135   void     SwitchOffBadCellRemove()                       { fBadCellRemove = kFALSE          ;}  
136
137   void     SwitchOnClusterBadChannelCheck()               { fClusterBadChannelCheck = kTRUE  ;} 
138   void     SwitchOffClusterBadChannelCheck()              { fClusterBadChannelCheck = kFALSE ;}  
139
140   void     SwitchOnExoticCellRemove()                     { fRejectExoticCells = kTRUE       ;} 
141   void     SwitchOffExoticCellRemove()                    { fRejectExoticCells = kFALSE      ;}  
142
143   void     SwitchOnClusterExoticChannelCheck()            { fRejectExoticClusters = kTRUE    ;} 
144   void     SwitchOffClusterExoticChannelCheck()           { fRejectExoticClusters = kFALSE   ;}  
145
146   void     SwitchOnCalibrateEnergy()                      { fCalibrateEnergy = kTRUE         ;} 
147   void     SwitchOffCalibrateEnergy()                     { fCalibrateEnergy = kFALSE        ;}  
148
149   void     SwitchOnCalibrateTime()                        { fCalibrateTime = kTRUE           ;} 
150   void     SwitchOffCalibrateTime()                       { fCalibrateTime = kFALSE          ;}  
151
152   void     SwitchOnUpdateCellOnly()                       { fDoUpdateOnly = kTRUE            ;} 
153   void     SwitchOffUpdateCellOnly()                      { fDoUpdateOnly = kFALSE           ;}  
154  
155   void     SwitchOnTrackMatch()                           { fDoTrackMatch = kTRUE            ;}
156   void     SwitchOffTrackMatch()                          { fDoTrackMatch = kFALSE           ;}
157
158   void     SwitchOnUseClusterMCLabelForCell()             { fSetCellMCLabelFromCluster = kTRUE  ;}
159   void     SwitchOffUseClusterMCLabelForCell()            { fSetCellMCLabelFromCluster = kFALSE ;}
160
161   void     SetPass(const char* p)                         { fFilepass = p; fGetPassFromFileName = kFALSE; }
162   void     UnsetPass()                                    { fFilepass = ""; fGetPassFromFileName = kTRUE; }
163    
164 private:
165
166   AliVEvent* GetEvent();
167   TString    GetBeamType();
168   Bool_t     RunChanged() const;
169   Int_t      InitBadChannels();
170   Bool_t     InitClusterization();
171   Int_t      InitRecParam();
172   Bool_t     InitMisalignMatrix();
173   Int_t      InitRecalib();
174   Int_t      InitRunDepRecalib();
175   Int_t      InitTimeCalibration();
176   void       Clusterize();
177   void       FillDigitsArray();
178   void       GetPass();
179   void       RecPoints2Clusters(TClonesArray *clus);
180   void       RecalibrateCells();
181   void       UpdateCells();
182   void       UpdateClusters();
183
184   AliAnalysisTaskSE     *fTask;                   // analysis task
185   Int_t                  fRun;                    // current run number
186   AliEMCALGeometry      *fEMCALGeo;               // EMCAL geometry
187   TString                fEMCALGeoName;           // name of geometry to use.
188   AliEMCALRecoUtils     *fEMCALRecoUtils;         // pointer to EMCAL utilities for clusterization
189   TString                fConfigName;             // name of analysis configuration file
190   Int_t                  fDebugLevel;             // debug level
191   Int_t                  fNonLinearFunc;          // non linearity function 
192   Int_t                  fNonLinearThreshold;     // non linearity threshold value for kBeamTesh non linearity function   
193   Bool_t                 fReCalibCluster;         // switch for Recalibrate clusters
194   Bool_t                 fUpdateCell;             // flag cell update
195   Bool_t                 fCalibrateEnergy;        // flag cell energy clibration
196   Bool_t                 fCalibrateTime;          // flag cell time clSibration
197   Bool_t                 fDoNonLinearity;         // nNon linearity correction flag
198   Bool_t                 fBadCellRemove;          // zero bad cells
199   Bool_t                 fRejectExoticCells;      // reject exotic cells
200   Bool_t                 fRejectExoticClusters;   // recect clusters with exotic cells
201   Bool_t                 fClusterBadChannelCheck; // check clusters for bad channels
202   TGeoHMatrix           *fEMCALMatrix[12];        // geometry matrices with misalignments
203   Bool_t                 fRecalClusPos;           // switch for applying missalignment
204   Bool_t                 fFiducial;               // switch for checking cells in the fiducial region
205   Int_t                  fNCellsFromEMCALBorder;  // number os cells from EMCAL border  
206   Bool_t                 fRecalDistToBadChannels; // switch for recalculation cluster position from bad channel    
207   Bool_t                 fRecalShowerShape;       // switch for recalculation of the shower shape
208   TTree                 *fInputTree;              //!input data tree
209   TFile                 *fInputFile;              //!input data file 
210   Bool_t                 fGetPassFromFileName;    // get fFilepass from file name
211   TString                fFilepass;               // input data pass number
212   Double_t               fMass;                   // mass for track matching
213   Double_t               fStep;                   // step size during track matching
214   Bool_t                 fCutEtaPhiSum;           // swicth to apply residual cut together
215   Bool_t                 fCutEtaPhiSeparate;      // swicth to apply residual cut separately
216   Float_t                fRcut;                   // residual cut for track matching  
217   Float_t                fEtacut;                 // eta cut for track matching  
218   Float_t                fPhicut;                 // phi cut for track matching  
219   TString                fBasePath;               // base folder path to get root files 
220   Bool_t                 fReClusterize;           // switch for reclustering
221   AliEMCALClusterizer   *fClusterizer;            //!clusterizer 
222   Bool_t                 fGeomMatrixSet;          // set geometry matrices only once, for the first event.         
223   Bool_t                 fLoadGeomMatrices;       // matrices set from configuration, not get from geometry.root or from ESDs/AODs
224   AliEMCALRecParam      *fRecParam;               // reconstruction parameters container
225   Bool_t                 fDoTrackMatch;           // do track matching
226   Bool_t                 fDoUpdateOnly;           // do only update of cells
227   AliEMCALAfterBurnerUF *fUnfolder;               //!unfolding procedure
228   TClonesArray          *fDigitsArr;              //!digits array
229   TObjArray             *fClusterArr;             //!recpoints array
230   Int_t                  fMisalignSurvey;         // misalignment matrix survey  
231   Float_t                fExoticCellFraction;     // good cell if fraction < 1-ecross/ecell
232   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
233   Float_t                fExoticCellMinAmplitude; // check for exotic only if amplitud is larger than this value
234
235   Bool_t                 fSetCellMCLabelFromCluster; // Use cluster MC label as cell label
236   
237   AliEMCALTenderSupply(const AliEMCALTenderSupply&c);
238   AliEMCALTenderSupply& operator= (const AliEMCALTenderSupply&c);
239   
240   ClassDef(AliEMCALTenderSupply, 14); // EMCAL tender task
241 };
242 #endif