]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRawDigiProducer.cxx
Setting "const" to member functions of AliPHOSEMCAGeometry
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRawDigiProducer.cxx
1 /**************************************************************************
2  * Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved.      *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //This class produces PHOS digits of one event
19 //using AliPHOSRawDecoder. 
20 //
21 //   For example:
22 //   TClonesArray *digits = new TClonesArray("AliPHOSDigit",100);
23 //   AliRawReader* rawReader = new AliRawReaderDate("2006run2211.raw");
24 //   AliPHOSRawDecoder dc(rawReader);
25 //   while (rawReader->NextEvent()) {
26 //     AliPHOSRawDigiProducer producer;
27 //     producer.MakeDigits(digits,&dc);
28 //   }
29
30 // Author: Boris Polichtchouk
31
32 // --- ROOT system ---
33 #include "TClonesArray.h"
34
35 // --- AliRoot header files ---
36 #include "AliPHOSRawDigiProducer.h"
37 #include "AliPHOSRawDecoder.h"
38 #include "AliPHOSGeometry.h"
39 #include "AliPHOSDigit.h"
40 #include "AliPHOSCalibData.h"
41 #include "AliPHOSPulseGenerator.h"
42 #include "AliLog.h"
43
44 ClassImp(AliPHOSRawDigiProducer)
45
46 AliPHOSCalibData * AliPHOSRawDigiProducer::fgCalibData  = 0 ; 
47
48 //--------------------------------------------------------------------------------------
49 AliPHOSRawDigiProducer::AliPHOSRawDigiProducer():
50   TObject(),
51   fEmcMinE(0.),
52   fCpvMinE(0.),
53   fSampleQualityCut(1.),
54   fEmcCrystals(0),
55   fGeom(0),
56   fPulseGenerator(0)
57 {
58   // Default constructor
59
60   fGeom=AliPHOSGeometry::GetInstance() ;
61   if(!fGeom) fGeom = AliPHOSGeometry::GetInstance("IHEP");
62
63   fEmcCrystals=fGeom->GetNCristalsInModule()*fGeom->GetNModules() ;
64   fPulseGenerator = new AliPHOSPulseGenerator();
65   GetCalibrationParameters() ; 
66
67 }
68 //--------------------------------------------------------------------------------------           
69 AliPHOSRawDigiProducer::AliPHOSRawDigiProducer(const AliPHOSRawDigiProducer &dp):
70   TObject(),
71   fEmcMinE(0.),
72   fCpvMinE(0.),
73   fSampleQualityCut(1.),
74   fEmcCrystals(0),
75   fGeom(0),
76   fPulseGenerator(0)
77 {                                                          
78   // Copy constructor
79
80   fEmcMinE = dp.fEmcMinE ;
81   fCpvMinE = dp.fCpvMinE ;
82   fSampleQualityCut = dp.fSampleQualityCut;
83   fEmcCrystals = dp.fEmcCrystals ;
84   fPulseGenerator = new AliPHOSPulseGenerator();
85   fGeom = dp.fGeom ;
86 }
87 //--------------------------------------------------------------------------------------
88 AliPHOSRawDigiProducer& AliPHOSRawDigiProducer::operator= (const AliPHOSRawDigiProducer &dp)
89 {
90   // Assign operator
91
92   if(&dp == this) return *this;
93
94   fEmcMinE = dp.fEmcMinE ;
95   fCpvMinE = dp.fCpvMinE ;
96   fSampleQualityCut = dp.fSampleQualityCut ;
97   fEmcCrystals = dp.fEmcCrystals ;
98   fGeom = dp.fGeom ;
99   if(fPulseGenerator) delete fPulseGenerator ;
100   fPulseGenerator = new AliPHOSPulseGenerator();
101   return  *this;
102
103 //--------------------------------------------------------------------------------------                                                   
104 AliPHOSRawDigiProducer::~AliPHOSRawDigiProducer()
105 {
106   // Desctructor
107   if(fPulseGenerator) delete fPulseGenerator ;
108   fPulseGenerator=0 ;
109 }
110 //--------------------------------------------------------------------------------------
111 void AliPHOSRawDigiProducer::MakeDigits(TClonesArray *digits, AliPHOSRawDecoder* decoder) 
112 {
113   //Makes the job.
114   //TClonesArray *digits and raw data decoder should be provided by calling function.
115
116   digits->Clear();
117  
118   Int_t    iDigit   = 0 ;
119   Int_t relId[4], absId =0;
120
121   const Double_t baseLine=1. ; //Minimal energy of digit in ADC ch. 
122   const Double_t highLowDiff=2.; //Maximal difference between High and Low channels in LG adc channels 
123
124   //Temporary array for LowGain digits
125   TClonesArray tmpLG("AliPHOSDigit",10000) ;
126   Int_t ilgDigit=0 ;
127
128   //Let decoder subtract pedestals in case of ZS
129   decoder->SetCalibData(fgCalibData) ;
130   
131   while (decoder->NextDigit()) {
132
133     Double_t energy=decoder->GetEnergy() ; 
134     if(energy<=baseLine) //in ADC channels
135       continue ;
136
137     //remove digits with bad shape. Decoder should calculate quality so that 
138     //in default case quality [0,1], while larger values of quality mean somehow 
139     //corrupted samples, 999 means obviously corrupted sample.
140     //It is difficult to fit samples with overflow (even setting cut on overflow values)
141     //because too few points are left to fit. So we do not evaluate samples with overflow
142     if(decoder->GetSampleQuality() > fSampleQualityCut && !(decoder->IsOverflow()))
143        continue ;
144
145     Bool_t lowGainFlag = decoder->IsLowGain();
146
147     relId[0] = decoder->GetModule();
148     relId[1] = 0;
149     relId[2] = decoder->GetRow();
150     relId[3] = decoder->GetColumn();
151     fGeom->RelToAbsNumbering(relId, absId);
152
153     Double_t time = decoder->GetTime() ;
154     time = CalibrateT(time,relId,lowGainFlag) ;
155
156     energy = CalibrateE(energy,relId,lowGainFlag) ;
157
158     if(energy <= 0.) 
159        continue;
160
161     if(lowGainFlag){
162       new(tmpLG[ilgDigit]) AliPHOSDigit(-1,absId,(Float_t)energy,(Float_t)time);
163       ilgDigit++ ; 
164     }
165     else{ 
166       if(decoder->IsOverflow()) //Keep this digit to replace it by Low Gain later.
167                                 //If there is no LogGain it wil be removed by cut on Min E
168         new((*digits)[iDigit]) AliPHOSDigit(-1,absId,-1.f,(Float_t)time);
169       else
170         new((*digits)[iDigit]) AliPHOSDigit(-1,absId,(Float_t)energy,(Float_t)time);
171       iDigit++;
172     }
173   }
174
175   //Now scan created LG and HG digits and keep only those which appeared in both lists 
176   //replace energy of HighGain digits only if there is overflow
177   //negative energy (overflow)
178   digits->Sort() ;
179   tmpLG.Sort() ;
180   Int_t iLG = 0;
181   Int_t nLG1 = tmpLG.GetEntriesFast()-1 ;
182
183   for(Int_t iDig=0 ; iDig < digits->GetEntriesFast() ; iDig++) { 
184     AliPHOSDigit * digHG = dynamic_cast<AliPHOSDigit*>(digits->At(iDig)) ;
185     if (!digHG) continue;
186     AliPHOSDigit * digLG = dynamic_cast<AliPHOSDigit*>(tmpLG.At(iLG)) ;
187     while(digLG && iLG<nLG1 && digHG->GetId()> digLG->GetId()){
188       iLG++ ;
189       digLG = dynamic_cast<AliPHOSDigit*>(tmpLG.At(iLG)) ;
190     }
191     absId=digHG->GetId() ;                                                                                                         
192     fGeom->AbsToRelNumbering(absId,relId) ;                                                                                              
193  
194     if(digLG && digHG->GetId() == digLG->GetId()){ //we found pair
195       if(digHG->GetEnergy()<0.){ //This is overflow in HG
196         digHG->SetTime(digLG->GetTime()) ;
197         digHG->SetEnergy(digLG->GetEnergy()) ;
198       } 
199       else{ //Make approximate comparison of HG and LG energies
200         Double_t de = (digHG->GetEnergy()-digLG->GetEnergy()) ; 
201         if(TMath::Abs(de)>CalibrateE(double(highLowDiff),relId,1)){ //too strong difference, remove digit
202           digits->RemoveAt(iDig) ;
203         }
204       }
205     }
206     else{ //no pair - remove
207       // temporary fix for dead LG channels
208       if(relId[2]%2==1 && relId[3]%16==4) 
209         continue ;
210       if(digHG->GetEnergy()>CalibrateE(double(5.),relId,1)) //One can not always find LG with Amp<5 ADC ch.
211         digits->RemoveAt(iDig) ;                                                                                                            
212     }
213   }
214
215   CleanDigits(digits) ;
216
217 }
218 //____________________________________________________________________________
219 Double_t AliPHOSRawDigiProducer::CalibrateE(Double_t amp, Int_t* relId, Bool_t isLowGain)
220 {
221   // Convert EMC LG amplitude to HG (multipli by ~16)
222   // Calibration parameters are taken from calibration data base 
223   if(fgCalibData){ 
224     Int_t   module = relId[0];  
225     Int_t   column = relId[3];
226     Int_t   row    = relId[2];
227     if(relId[1]==0) { // this is EMC 
228       if(isLowGain){
229         amp*= fgCalibData->GetHighLowRatioEmc(module,column,row);
230       }
231       return amp ;         
232     }         
233   }          
234   return 0;        
235 }
236 //____________________________________________________________________________
237 Double_t AliPHOSRawDigiProducer::CalibrateT(Double_t time, Int_t * relId, Bool_t /* isLowGain */)
238 {
239   //Calibrate time
240   time*=fPulseGenerator->GetRawFormatTimeTrigger() ;
241   if(fgCalibData){
242     Int_t   module = relId[0];
243     Int_t   column = relId[3];
244     Int_t   row    = relId[2];
245     if(relId[1]==0) { // this is EMC
246       time += fgCalibData->GetTimeShiftEmc(module,column,row);                   
247       return time ;             
248     }
249   }
250  
251   return -999.;
252 }
253 //____________________________________________________________________________
254 void AliPHOSRawDigiProducer::CleanDigits(TClonesArray * digits)
255 {
256   // remove digits with amplitudes below threshold.
257   // remove digits in bad channels
258   // sort digits with icreasing AbsId
259   
260   //remove digits in bad map and below threshold
261   Bool_t isBadMap = 0 ;
262   if(fgCalibData->GetNumOfEmcBadChannels()){
263     isBadMap=1 ;
264   }
265   
266   for(Int_t i=0; i<digits->GetEntriesFast(); i++){
267     AliPHOSDigit * digit = static_cast<AliPHOSDigit*>(digits->At(i)) ;
268     if(!digit)
269       continue  ;
270     if ( (IsInEMC(digit) && digit->GetEnergy() < fEmcMinE) ||
271          (IsInCPV(digit) && digit->GetEnergy() < fCpvMinE) ){
272       digits->RemoveAt(i) ;
273       continue ;
274     }
275     if(isBadMap){ //check bad map now
276       Int_t relid[4] ;
277       fGeom->AbsToRelNumbering(digit->GetId(), relid) ; 
278       if(fgCalibData->IsBadChannelEmc(relid[0],relid[3],relid[2])){
279         digits->RemoveAt(i) ;
280       }
281     }
282   }
283
284   //Compress, sort and set indexes
285   digits->Compress() ;
286 //  digits->Sort(); already sorted earlier
287   for (Int_t i = 0 ; i < digits->GetEntriesFast() ; i++) { 
288     AliPHOSDigit *digit = static_cast<AliPHOSDigit*>( digits->At(i) ) ; 
289     digit->SetIndexInList(i) ;     
290   }
291 }
292 //____________________________________________________________________________
293 Bool_t AliPHOSRawDigiProducer::IsInEMC(AliPHOSDigit * digit) const
294 {
295   // Tells if (true) or not (false) the digit is in a PHOS-EMC module
296   return digit->GetId() <= fEmcCrystals ;
297
298 }
299
300 //____________________________________________________________________________
301 Bool_t AliPHOSRawDigiProducer::IsInCPV(AliPHOSDigit * digit) const
302 {
303   // Tells if (true) or not (false) the digit is in a PHOS-CPV module
304   return digit->GetId() > fEmcCrystals ;
305 }
306 //____________________________________________________________________________
307 void AliPHOSRawDigiProducer::GetCalibrationParameters() 
308 {
309   // Set calibration parameters:
310   // if calibration database exists, they are read from database,
311   // otherwise, reconstruction stops in the constructor of AliPHOSCalibData
312   //
313   // It is a user responsilibity to open CDB before reconstruction, for example: 
314   // AliCDBStorage* storage = AliCDBManager::Instance()->GetStorage("local://CalibDB");
315
316   if (!fgCalibData){
317     fgCalibData = new AliPHOSCalibData(-1); //use AliCDBManager's run number
318   }
319   if (fgCalibData->GetCalibDataEmc() == 0)
320     AliFatal("Calibration parameters for PHOS EMC not found. Stop reconstruction.\n");
321   if (fgCalibData->GetCalibDataCpv() == 0)
322     AliFatal("Calibration parameters for PHOS CPV not found. Stop reconstruction.\n");
323 }