]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDCalibraFillHisto.h
AliTRDdigitizer.cxx -> For the new name of the Nodata status in AliTRDCalChamberStatus
[u/mrichter/AliRoot.git] / TRD / AliTRDCalibraFillHisto.h
1 #ifndef ALITRDCALIBRAFILLHISTO_H
2 #define ALITRDCALIBRAFILLHISTO_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ///////////////////////////////////////////////////////////////////////////////
9 //                                                                           //
10 //  TRD calibration class for the HLT parameters                             //
11 //                                                                           //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #ifndef ROOT_TObject
15 #  include <TObject.h>
16 #endif
17 #ifndef ROOT_TProfile2D
18 #  include <TProfile2D.h> 
19 #endif
20
21
22 class TProfile2D;
23 class TObjArray;
24 class TH1F;
25 class TH2I;
26 class TH2F;
27 class TH2;
28 class TLinearFitter;
29 class TTreeSRedirector;
30
31 class AliLog;
32 class AliRawReader;
33
34 class AliTRDCalibraMode;
35 class AliTRDCalibraVector;
36 class AliTRDCalibraVdriftLinearFit;
37 class AliTRDcluster;
38 class AliTRDtrackV1;
39 class AliTRDseedV1;
40 class AliTRDgeometry;
41 class AliTRDCalDet;
42 class AliTRDCalROC;
43 class AliTRDcalibDB;
44
45 class AliTRDdigitsManager;
46 class AliTRDSignalIndex;
47
48 struct eventHeaderStruct;
49
50 class AliTRDCalibraFillHisto : public TObject {
51
52  public: 
53
54   // Instance
55   static AliTRDCalibraFillHisto *Instance();
56   static void Terminate();
57   static void Destroy();
58   void DestroyDebugStreamer();
59
60
61   AliTRDCalibraFillHisto(const AliTRDCalibraFillHisto &c);
62   AliTRDCalibraFillHisto &operator=(const AliTRDCalibraFillHisto &) { return *this; }
63
64   // Functions for initialising and filling with AliTRDtrackV1
65           Bool_t  Init2Dhistos(Int_t nboftimebin = -1);
66           Bool_t  InitCalDet();
67           Bool_t  UpdateHistogramsV1(const AliTRDtrackV1 *t);
68  
69   // Process events DAQ
70           Int_t   ProcessEventDAQ(AliRawReader *rawReader);
71
72   // Is Pad on
73           Bool_t   IsPadOn(Int_t detector, Int_t row, Int_t col) const;
74
75   // Functions for write
76           void     Write2d(const Char_t *filename = "TRD.calibration.root", Bool_t append = kFALSE);
77
78   //For the statistics
79           Double_t *StatH(TH2 *ch, Int_t i);
80           Double_t *GetMeanMedianRMSNumberCH();
81           Double_t *GetMeanMedianRMSNumberLinearFitter() const;
82  // LinearFitter
83           void     AnalyseLinearFitter();
84        
85          
86   //
87   // Set of Get the variables
88   //
89
90           void     SetIsHLT(Bool_t isHLT = kTRUE)                            { fIsHLT = isHLT;                       }  
91           Bool_t   IsHLT() const                                             { return fIsHLT;                        }  
92
93   // Choice to fill or not the 2D
94           void     SetPH2dOn(Bool_t ph2don = kTRUE)                          { fPH2dOn          = ph2don;            }
95           void     SetCH2dOn(Bool_t ch2don = kTRUE)                          { fCH2dOn          = ch2don;            }
96           void     SetPRF2dOn(Bool_t prf2don = kTRUE)                        { fPRF2dOn         = prf2don;           }
97           void     SetHisto2d(Bool_t histo2d = kTRUE)                        { fHisto2d         = histo2d;           }
98           void     SetVector2d(Bool_t vector2d = kTRUE)                      { fVector2d        = vector2d;          }
99           void     SetLinearFitterOn(Bool_t linearfitteron = kTRUE)          { fLinearFitterOn      = linearfitteron;}
100           void     SetLinearFitterDebugOn(Bool_t debug = kTRUE)              { fLinearFitterDebugOn = debug;         }
101           void     SetFirstRunGain(Int_t firstRunGain)                       { fFirstRunGain = firstRunGain;   }
102           void     SetVersionGainUsed(Int_t versionGainUsed)                 { fVersionGainUsed = versionGainUsed;   }
103           void     SetSubVersionGainUsed(Int_t subVersionGainUsed)           { fSubVersionGainUsed = subVersionGainUsed;   }
104           void     SetFirstRunGainLocal(Int_t firstRunGainLocal)             { fFirstRunGainLocal = firstRunGainLocal;   }
105           void     SetVersionGainLocalUsed(Int_t versionGainLocalUsed)       { fVersionGainLocalUsed = versionGainLocalUsed;   }
106           void     SetSubVersionGainLocalUsed(Int_t subVersionGainLocalUsed) { fSubVersionGainLocalUsed = subVersionGainLocalUsed;   }
107           void     SetFirstRunVdrift(Int_t firstRunVdrift)                   { fFirstRunVdrift = firstRunVdrift;   }
108           void     SetVersionVdriftUsed(Int_t versionVdriftUsed)             { fVersionVdriftUsed = versionVdriftUsed;   }
109           void     SetSubVersionVdriftUsed(Int_t subVersionVdriftUsed)       { fSubVersionVdriftUsed = subVersionVdriftUsed;   }
110           void     SetFirstRunExB(Int_t firstRunExB)                         { fFirstRunExB = firstRunExB;   }
111           void     SetVersionExBUsed(Int_t versionExBUsed)                   { fVersionExBUsed = versionExBUsed;   }
112           void     SetSubVersionExBUsed(Int_t subVersionExBUsed)             { fSubVersionExBUsed = subVersionExBUsed;   }
113           
114   
115           Bool_t   GetPH2dOn() const                                         { return fPH2dOn;                 }
116           Bool_t   GetCH2dOn() const                                         { return fCH2dOn;                 }
117           Bool_t   GetPRF2dOn() const                                        { return fPRF2dOn;                }
118           Bool_t   GetHisto2d() const                                        { return fHisto2d;                }
119           Bool_t   GetVector2d() const                                       { return fVector2d;               }
120           Bool_t   GetLinearFitterOn() const                                 { return fLinearFitterOn;         }
121           Bool_t   GetLinearFitterDebugOn() const                            { return fLinearFitterDebugOn;    }
122           Int_t    GetVersionGainUsed() const                                { return fVersionGainUsed;        }
123           Int_t    GetSubVersionGainUsed() const                             { return fSubVersionGainUsed;     }
124           Int_t    GetVersionVdriftUsed() const                              { return fVersionVdriftUsed;      }
125           Int_t    GetSubVersionVdriftUsed() const                           { return fSubVersionVdriftUsed;   }
126
127
128   // Get stuff that are filled
129   TH2I            *GetCH2d();
130   TProfile2D      *GetPH2d(Int_t nbtimebin=24, Float_t samplefrequency= 10.0);
131   TProfile2D      *GetPRF2d() const                                          { return fPRF2d;                  } 
132   TObjArray        GetLinearFitterArray() const                              { return fLinearFitterArray;      }
133   TLinearFitter   *GetLinearFitter(Int_t detector, Bool_t force=kFALSE);
134   AliTRDCalibraVdriftLinearFit *GetVdriftLinearFit() const                   { return fLinearVdriftFit;        }
135   
136  
137   // How to fill the 2D
138           void     SetRelativeScale(Float_t relativeScale);                      
139           void     SetThresholdClusterPRF2(Float_t thresholdClusterPRF2)     { fThresholdClusterPRF2 = thresholdClusterPRF2; }
140           void     SetLimitChargeIntegration(Bool_t limitChargeIntegration)  { fLimitChargeIntegration = limitChargeIntegration; }
141           void     SetFillWithZero(Bool_t fillWithZero)                      { fFillWithZero = fillWithZero;   }
142           void     SetNormalizeNbOfCluster(Bool_t normalizeNbOfCluster)      { fNormalizeNbOfCluster = normalizeNbOfCluster; }
143           void     SetMaxCluster(Float_t maxCluster)                         { fMaxCluster = maxCluster; }
144           void     SetNbMaxCluster(Short_t nbMaxCluster)                     { fNbMaxCluster = nbMaxCluster; }
145           void     SetNz(Int_t i, Short_t nz);
146           void     SetNrphi(Int_t i, Short_t nrphi);
147           void     SetAllTogether(Int_t i);
148           void     SetPerSuperModule(Int_t i);
149           void     SetProcent(Float_t procent)                               { fProcent              = procent;              }
150           void     SetDifference(Short_t difference)                         { fDifference           = difference;           }
151           void     SetNumberClusters(Short_t numberClusters)                 { if(numberClusters >= 0) fNumberClusters       = numberClusters;       }
152           void     SetNumberClustersf(Short_t numberClustersf)               { fNumberClustersf      = numberClustersf;      }
153           void     SetNumberClustersProcent(Float_t numberClustersProcent)   { fNumberClustersProcent = numberClustersProcent;                       }
154           void     SetThresholdClustersDAQ(Float_t thresholdClustersDAQ)     { fThresholdClustersDAQ = thresholdClustersDAQ;                         }
155           void     SetNumberRowDAQ(Short_t numberRowDAQ)                     { fNumberRowDAQ         = numberRowDAQ;         }
156           void     SetNumberColDAQ(Short_t numberColDAQ)                     { fNumberColDAQ         = numberColDAQ;         }
157           void     SetNumberBinCharge(Short_t numberBinCharge)               { fNumberBinCharge      = numberBinCharge;      }
158           void     SetNumberBinPRF(Short_t numberBinPRF)                     { fNumberBinPRF         = numberBinPRF;         }
159           void     SetNumberGroupsPRF(Short_t numberGroupsPRF);
160   
161           Float_t  GetRelativeScale() const                                  { return fRelativeScale;          }
162           Float_t  GetThresholdClusterPRF2() const                           { return fThresholdClusterPRF2;   }
163           Bool_t   GetLimitChargeIntegration() const                         { return fLimitChargeIntegration; }
164           Bool_t   GetFillWithZero() const                                   { return fFillWithZero;           }
165           Bool_t   GetNormalizeNbOfCluster() const                           { return fNormalizeNbOfCluster;   }
166           Float_t  GetMaxCluster() const                                     { return fMaxCluster;             }
167           Short_t  GetNbMaxCluster() const                                   { return fNbMaxCluster;           }
168           Float_t  GetProcent() const                                        { return fProcent;                }
169           Short_t  GetDifference() const                                     { return fDifference;             }
170           Short_t  GetNumberClusters() const                                 { return fNumberClusters;         }
171           Short_t  GetNumberClustersf() const                                { return fNumberClustersf;        }
172           Short_t  GetNumberBinCharge() const                                { return fNumberBinCharge;        }
173           Short_t  GetNumberBinPRF() const                                   { return fNumberBinPRF;           }
174           Short_t  GetNumberGroupsPRF() const                                { return fNgroupprf;              }
175           Int_t    *GetEntriesLinearFitter() const                           { return fEntriesLinearFitter;    }
176
177  // Debug
178           void     SetDebugLevel(Short_t level)                              { fDebugLevel = level;           }
179
180   // Vector method
181 AliTRDCalibraVector *GetCalibraVector() const                                { return fCalibraVector;          }   
182   
183  protected:
184
185   // Geometry
186   AliTRDgeometry  *fGeo;                    //! The TRD geometry
187   // calibration DB
188   AliTRDcalibDB   *fCalibDB;                //! The pointer to the TRDcalibDB instance
189
190   // Is HLT
191           Bool_t   fIsHLT;                  // Now if HLT, the per detector
192
193   // Choice to fill or not the 2D
194           Bool_t   fCH2dOn;                 // Chose to fill the 2D histos or vectors for the relative gain calibration 
195           Bool_t   fPH2dOn;                 // Chose to fill the 2D histos or vectors for the drift velocity and T0
196           Bool_t   fPRF2dOn;                // Chose to fill the 2D histos or vectors for the pad response function calibration
197           Bool_t   fHisto2d;                // Chose to fill the 2D histos
198           Bool_t   fVector2d;               // Chose to fill vectors
199           Bool_t   fLinearFitterOn;         // Method with linear fit for drift velocity
200           Bool_t   fLinearFitterDebugOn;    // Method with linear fit for drift velocity
201
202   // How to fill the 2D
203           Float_t  fRelativeScale;          // Scale of the deposited charge
204           Float_t  fThresholdClusterPRF2;   // Threshold on cluster pad signals
205           Bool_t   fLimitChargeIntegration; // Integration range for the gain calibration
206           Bool_t   fFillWithZero;           // Fill with zero or not the average pulse height
207           Bool_t   fNormalizeNbOfCluster;   // Normalize with the number of cluster for the gain
208           Float_t  fMaxCluster;             // Max amplitude of one cluster
209           Short_t  fNbMaxCluster;           // Number of tb at the end
210   // Back correction
211           Int_t    fFirstRunGain;           // FirstRunGain 
212           Int_t    fVersionGainUsed;        // VersionGainUsed 
213           Int_t    fSubVersionGainUsed;     // SubVersionGainUsed
214           Int_t    fFirstRunGainLocal;      // FirstRunGainLocal 
215           Int_t    fVersionGainLocalUsed;   // VersionGainUsed 
216           Int_t    fSubVersionGainLocalUsed;// SubVersionGainUsed
217           Int_t    fFirstRunVdrift;         // FirstRunVdrift 
218           Int_t    fVersionVdriftUsed;      // VersionVdriftUsed 
219           Int_t    fSubVersionVdriftUsed;   // SubVersionVdriftUsed
220           Int_t    fFirstRunExB;            // FirstRunExB 
221           Int_t    fVersionExBUsed;         // VersionExBUsed 
222           Int_t    fSubVersionExBUsed;      // SubVersionExBUsed
223   // Calibration mode
224           AliTRDCalibraMode *fCalibraMode;  // Calibration mode
225
226   //For debugging
227           TTreeSRedirector          *fDebugStreamer;                 //!Debug streamer
228           Short_t     fDebugLevel;                                   // Flag for debugging
229   //
230   // Internal variables
231   //
232
233   // Fill the 2D histos in the offline tracking
234           Int_t    fDetectorPreviousTrack;  // Change of detector
235           Int_t    fMCMPrevious;            // Change of MCM
236           Int_t    fROBPrevious;            // Change of ROB
237           Short_t  fNumberClusters;         // Minimum number of clusters in the tracklets
238           Short_t  fNumberClustersf;        // Maximum number of clusters in the tracklets
239           Float_t  fNumberClustersProcent;  // Procent of number of time bins for fNumberClusters
240           Float_t  fThresholdClustersDAQ;   // Threshold clusters for DAQ algorithm
241           Short_t  fNumberRowDAQ;           // Size of the spot for DAQ algorithm
242           Short_t  fNumberColDAQ;           // Size of the spot for DAQ algorithm
243           Float_t  fProcent;                // Limit to take the info of the most important calibration group if the track goes through 2 groups (CH)
244           Short_t  fDifference;             // Limit to take the info of the most important calibration group if the track goes through 2 groups (CH)
245           Int_t    fNumberTrack;            // How many tracks could be used (Debug for the moment)
246           Int_t    fNumberUsedCh[2];        // How many tracks have been really used for the gain (0, strict; 1 with fProcent)
247           Int_t    fNumberUsedPh[2];        // How many tracks have been really used for the drift velocity (0, strict; 1 with fDifference)
248           Int_t    fTimeMax;                // Number of time bins
249           Float_t  fSf;                     // Sampling frequence
250           Short_t  fNumberBinCharge;        // Number of bins for the gain factor
251           Short_t  fNumberBinPRF;           // Number of bin for the PRF
252           Short_t  fNgroupprf;              // Number of groups in tnp bins for PRF /2.0
253
254   // Variables per tracklet
255           Float_t       *fAmpTotal;                  // Energy deposited in the calibration group by the track
256           Short_t       *fPHPlace;                   // Calibration group of PH
257           Float_t       *fPHValue;                   // PH
258           Bool_t         fGoodTracklet;              // Good tracklet
259           TLinearFitter *fLinearFitterTracklet;      // linear fitter tracklet  
260   //Statistics
261           Int_t         *fEntriesCH;                 // Number of entries CH
262           Int_t         *fEntriesLinearFitter;       // Number of entries LinearFitter
263
264
265   //
266   // Vector method
267   //
268           
269           AliTRDCalibraVector *fCalibraVector; // The vector object
270  
271  
272   // Histograms to store the info from the digits, from the tracklets or from the tracks
273           TProfile2D      *fPH2d;                         // 2D average pulse height
274           TProfile2D      *fPRF2d;                        // 2D PRF
275           TH2I            *fCH2d;                         // 2D deposited charge
276           TObjArray       fLinearFitterArray;             // TObjArray of Linear Fitters for the detectors 
277           AliTRDCalibraVdriftLinearFit *fLinearVdriftFit; // Info Linear Fit
278           
279  // Current calib object: to correct for the database used
280           AliTRDCalDet *fCalDetGain;                      // Current calib object gain
281           AliTRDCalROC *fCalROCGain;                      // Current calib object gain
282            
283   //
284   // A lot of internal functions......
285   // Init
286           Bool_t   InitCalPad(Int_t detector);
287   //
288   // Create the 2D histo to be filled Online
289           void     CreateCH2d(Int_t nn);
290           void     CreatePH2d(Int_t nn);
291           void     CreatePRF2d(Int_t nn);
292   
293   // Calibration with AliTRDtrackV1
294           void     FillTheInfoOfTheTrackPH();
295           void     FillTheInfoOfTheTrackCH(Int_t nbclusters);
296           Bool_t   FindP1TrackPHtrackletV1(const AliTRDseedV1 *tracklet, Int_t nbclusters);
297           Bool_t   HandlePRFtrackletV1(const AliTRDseedV1 *tracklet, Int_t nbclusters);
298           void     ResetfVariablestracklet();
299           void     StoreInfoCHPHtrack(const AliTRDcluster *cl,const Double_t dqdl,const Int_t *group,const Int_t row,const Int_t col,const AliTRDcluster *cls=0x0);
300           void     FillCH2d(Int_t x, Float_t y);
301
302   // Calibration on DAQ
303
304           Int_t    FillDAQ(Double_t phvalue[16][144][36]);
305           Bool_t   UpdateDAQ(Int_t det, Int_t /*row*/, Int_t /*col*/, Int_t timebin, Float_t signal, Int_t nbtimebins);
306           
307  // row col calibration groups stuff
308           Bool_t   LocalisationDetectorXbins(Int_t detector);
309           Int_t    CalculateTotalNumberOfBins(Int_t i);
310           void     CheckGoodTrackletV0(const Int_t detector,const Int_t row,const Int_t col);
311           void     CheckGoodTrackletV1(const AliTRDcluster *cl);
312           Int_t    CalculateCalibrationGroup(Int_t i, Int_t row, Int_t col) const;
313           
314   // Clear
315           void     ClearHistos();
316       
317   // Some basic geometry function
318   virtual Int_t    GetLayer(Int_t d) const;
319   virtual Int_t    GetStack(Int_t d) const;
320   virtual Int_t    GetSector(Int_t d) const;
321           
322           
323   // Instance of this class and so on
324   static  AliTRDCalibraFillHisto *fgInstance;                // Instance
325   static  Bool_t   fgTerminated;                             // If terminated
326
327  private:
328   
329   // This is a singleton, contructor is private!
330   AliTRDCalibraFillHisto();
331   virtual ~AliTRDCalibraFillHisto(); 
332     
333   ClassDef(AliTRDCalibraFillHisto,4)                         // TRD Calibration class
334
335 };
336   
337 #endif
338
339