]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSv1.cxx
No effective C++ option for compilation of C files
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv1.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, 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 /* History of cvs commits:
19  *
20  * $Log$
21  * Revision 1.105  2006/09/13 07:31:01  kharlov
22  * Effective C++ corrections (T.Pocheptsov)
23  *
24  * Revision 1.104  2005/05/28 14:19:05  schutz
25  * Compilation warnings fixed by T.P.
26  *
27  */
28
29 //_________________________________________________________________________
30 // Implementation version v1 of PHOS Manager class 
31 //---
32 //---
33 // Layout EMC + CPV  has name IHEP:
34 // Produces hits for CPV, cumulated hits
35 //---
36 //---
37 //*-- Author: Yves Schutz (SUBATECH)
38
39
40 // --- ROOT system ---
41 #include <TParticle.h>
42 #include <TVirtualMC.h>
43
44 // --- Standard library ---
45
46
47 // --- AliRoot header files ---
48 #include "AliPHOSCPVDigit.h"
49 #include "AliPHOSGeometry.h"
50 #include "AliPHOSHit.h"
51 #include "AliPHOSv1.h"
52 #include "AliRun.h"
53 #include "AliMC.h"
54
55 ClassImp(AliPHOSv1)
56
57 //____________________________________________________________________________
58 AliPHOSv1::AliPHOSv1():
59   fLightYieldMean(0.),
60   fIntrinsicPINEfficiency(0.),
61   fLightYieldAttenuation(0.),
62   fRecalibrationFactor(0.),
63   fElectronsPerGeV(0.),
64   fAPDGain(0.),
65   fLightFactor(0.),
66   fAPDFactor(0.)
67 {
68   //Def ctor.
69 }
70
71 //____________________________________________________________________________
72 AliPHOSv1::AliPHOSv1(const char *name, const char *title):
73   AliPHOSv0(name,title),
74   fLightYieldMean(0.),
75   fIntrinsicPINEfficiency(0.),
76   fLightYieldAttenuation(0.),
77   fRecalibrationFactor(0.),
78   fElectronsPerGeV(0.),
79   fAPDGain(0.),
80   fLightFactor(0.),
81   fAPDFactor(0.)
82 {
83   //
84   // We store hits :
85   //   - fHits (the "normal" one), which retains the hits associated with
86   //     the current primary particle being tracked
87   //     (this array is reset after each primary has been tracked).
88   //
89
90
91
92   // We do not want to save in TreeH the raw hits
93   // But save the cumulated hits instead (need to create the branch myself)
94   // It is put in the Digit Tree because the TreeH is filled after each primary
95   // and the TreeD at the end of the event (branch is set in FinishEvent() ). 
96   
97   fHits= new TClonesArray("AliPHOSHit",1000) ;
98   gAlice->GetMCApp()->AddHitList(fHits) ; 
99
100   fNhits = 0 ;
101
102   fIshunt     =  2 ; // All hits are associated with primary particles
103
104   //Photoelectron statistics:
105   // The light yield is a poissonian distribution of the number of
106   // photons created in the PbWo4 crystal, calculated using following formula
107   // NumberOfPhotons = EnergyLost * LightYieldMean* APDEfficiency *
108   //              exp (-LightYieldAttenuation * DistanceToPINdiodeFromTheHit);
109   // LightYieldMean is parameter calculated to be over 47000 photons per GeV
110   // APDEfficiency is 0.02655
111   // k_0 is 0.0045 from Valery Antonenko
112   // The number of electrons created in the APD is
113   // NumberOfElectrons = APDGain * LightYield
114   // The APD Gain is 300
115   fLightYieldMean = 47000;
116   fIntrinsicPINEfficiency = 0.02655 ; //APD= 0.1875/0.1271 * 0.018 (PIN)
117   fLightYieldAttenuation  = 0.0045 ; 
118   fRecalibrationFactor    = 13.418/ fLightYieldMean ;
119   fElectronsPerGeV        = 2.77e+8 ;
120   fAPDGain                = 300. ;
121   fLightFactor            = fLightYieldMean * fIntrinsicPINEfficiency ; 
122   fAPDFactor              = (fRecalibrationFactor/100.) * fAPDGain ;   
123 }
124
125 //____________________________________________________________________________
126 AliPHOSv1::~AliPHOSv1()
127 {
128   // dtor
129  if ( fHits) {
130     fHits->Delete() ; 
131     delete fHits ;
132     fHits = 0 ; 
133  }
134 }
135
136 //____________________________________________________________________________
137 void AliPHOSv1::AddHit(Int_t shunt, Int_t primary, Int_t Id, Float_t * hits)
138 {
139   // Add a hit to the hit list.
140   // A PHOS hit is the sum of all hits in a single crystal from one primary and within some time gate
141
142   Int_t hitCounter ;
143   AliPHOSHit *newHit ;
144   AliPHOSHit *curHit ;
145   Bool_t deja = kFALSE ;
146   AliPHOSGeometry * geom = GetGeometry() ; 
147
148   newHit = new AliPHOSHit(shunt, primary, Id, hits) ;
149
150   for ( hitCounter = fNhits-1 ; hitCounter >= 0 && !deja ; hitCounter-- ) {
151     curHit = dynamic_cast<AliPHOSHit*>((*fHits)[hitCounter]) ;
152     if(curHit->GetPrimary() != primary) break ; 
153            // We add hits with the same primary, while GEANT treats primaries succesively 
154     if( *curHit == *newHit ) {
155       *curHit + *newHit ;
156       deja = kTRUE ;
157     }
158   }
159          
160   if ( !deja ) {
161     new((*fHits)[fNhits]) AliPHOSHit(*newHit) ;
162     // get the block Id number
163     Int_t relid[4] ;
164     geom->AbsToRelNumbering(Id, relid) ;
165
166     fNhits++ ;
167   }
168   
169   delete newHit;
170 }
171
172 //____________________________________________________________________________
173 void AliPHOSv1::FinishPrimary() 
174 {
175   // called at the end of each track (primary) by AliRun
176   // hits are reset for each new track
177   // accumulate the total hit-multiplicity
178
179 }
180
181 //____________________________________________________________________________
182 void AliPHOSv1::FinishEvent() 
183 {
184   // called at the end of each event by AliRun
185   // accumulate the hit-multiplicity and total energy per block 
186   // if the values have been updated check it
187   
188   AliDetector::FinishEvent(); 
189 }
190 //____________________________________________________________________________
191 void AliPHOSv1::StepManager(void)
192 {
193    // Accumulates hits as long as the track stays in a single crystal or CPV gas Cell
194
195   Int_t          relid[4] ;           // (box, layer, row, column) indices
196   Int_t          absid    ;           // absolute cell ID number
197   Float_t        xyzte[5]={-1000.,-1000.,-1000.,0.,0.}  ; // position wrt MRS, time and energy deposited
198   TLorentzVector pos      ;           // Lorentz vector of the track current position
199   Int_t          copy     ;
200
201   TString name      =  GetGeometry()->GetName() ; 
202
203   Int_t moduleNumber ;
204   
205   static Int_t idPCPQ = gMC->VolId("PCPQ");
206   if( gMC->CurrentVolID(copy) == idPCPQ &&
207       (gMC->IsTrackEntering() ) &&
208       gMC->TrackCharge() != 0) {      
209     
210     gMC -> TrackPosition(pos);
211     
212     Float_t xyzm[3], xyzd[3] ;
213     Int_t i;
214     for (i=0; i<3; i++) xyzm[i] = pos[i];
215     gMC -> Gmtod (xyzm, xyzd, 1);    // transform coordinate from master to daughter system
216     
217     Float_t        xyd[3]={0,0,0}   ;   //local position of the entering
218     xyd[0]  = xyzd[0];
219     xyd[1]  =-xyzd[2];
220     xyd[2]  =-xyzd[1];
221     
222     // Current momentum of the hit's track in the local ref. system
223     TLorentzVector pmom     ;        //momentum of the particle initiated hit
224     gMC -> TrackMomentum(pmom);
225     Float_t pm[3], pd[3];
226     for (i=0; i<3; i++)  
227       pm[i]   = pmom[i];
228     
229     gMC -> Gmtod (pm, pd, 2);        // transform 3-momentum from master to daughter system
230     pmom[0] = pd[0];
231     pmom[1] =-pd[1];
232     pmom[2] =-pd[2];
233
234     // Digitize the current CPV hit:
235     
236     // 1. find pad response and    
237     gMC->CurrentVolOffID(3,moduleNumber);
238     moduleNumber--;
239     
240     TClonesArray *cpvDigits = new TClonesArray("AliPHOSCPVDigit",0);   // array of digits for current hit
241     CPVDigitize(pmom,xyd,cpvDigits);
242       
243     Float_t xmean = 0;
244     Float_t zmean = 0;
245     Float_t qsum  = 0;
246     Int_t   idigit,ndigits;
247     
248     // 2. go through the current digit list and sum digits in pads
249     
250     ndigits = cpvDigits->GetEntriesFast();
251     for (idigit=0; idigit<ndigits-1; idigit++) {
252       AliPHOSCPVDigit  *cpvDigit1 = dynamic_cast<AliPHOSCPVDigit*>(cpvDigits->UncheckedAt(idigit));
253       Float_t x1 = cpvDigit1->GetXpad() ;
254       Float_t z1 = cpvDigit1->GetYpad() ;
255       for (Int_t jdigit=idigit+1; jdigit<ndigits; jdigit++) {
256         AliPHOSCPVDigit  *cpvDigit2 = dynamic_cast<AliPHOSCPVDigit*>(cpvDigits->UncheckedAt(jdigit));
257         Float_t x2 = cpvDigit2->GetXpad() ;
258         Float_t z2 = cpvDigit2->GetYpad() ;
259         if (x1==x2 && z1==z2) {
260           Float_t qsum = cpvDigit1->GetQpad() + cpvDigit2->GetQpad() ;
261           cpvDigit2->SetQpad(qsum) ;
262           cpvDigits->RemoveAt(idigit) ;
263         }
264       }
265     }
266     cpvDigits->Compress() ;
267     
268     // 3. add digits to temporary hit list fTmpHits
269     
270     ndigits = cpvDigits->GetEntriesFast();
271     for (idigit=0; idigit<ndigits; idigit++) {
272       AliPHOSCPVDigit  *cpvDigit = dynamic_cast<AliPHOSCPVDigit*>(cpvDigits->UncheckedAt(idigit));
273       relid[0] = moduleNumber + 1 ;                             // CPV (or PHOS) module number
274       relid[1] =-1 ;                                            // means CPV
275       relid[2] = cpvDigit->GetXpad() ;                          // column number of a pad
276       relid[3] = cpvDigit->GetYpad() ;                          // row    number of a pad
277       
278       // get the absolute Id number
279       GetGeometry()->RelToAbsNumbering(relid, absid) ; 
280       
281       // add current digit to the temporary hit list
282
283       xyzte[3] = gMC->TrackTime() ;
284       xyzte[4] = cpvDigit->GetQpad() ;                          // amplitude in a pad
285
286       Int_t primary  =  gAlice->GetMCApp()->GetPrimary( gAlice->GetMCApp()->GetCurrentTrackNumber() ); 
287       AddHit(fIshunt, primary, absid, xyzte);  
288       
289       if (cpvDigit->GetQpad() > 0.02) {
290         xmean += cpvDigit->GetQpad() * (cpvDigit->GetXpad() + 0.5);
291         zmean += cpvDigit->GetQpad() * (cpvDigit->GetYpad() + 0.5);
292         qsum  += cpvDigit->GetQpad();
293       }
294     }
295     if (cpvDigits) {
296       cpvDigits->Delete();
297       delete cpvDigits;
298       cpvDigits=0;
299     }
300   }
301
302  
303   static Int_t idPXTL = gMC->VolId("PXTL");  
304   if(gMC->CurrentVolID(copy) == idPXTL ) { //  We are inside a PBWO crystal
305
306     gMC->TrackPosition(pos) ;
307     xyzte[0] = pos[0] ;
308     xyzte[1] = pos[1] ;
309     xyzte[2] = pos[2] ;
310
311     Float_t global[3], local[3] ;
312     global[0] = pos[0] ;
313     global[1] = pos[1] ;
314     global[2] = pos[2] ;
315     Float_t lostenergy = gMC->Edep(); 
316     
317     //Put in the TreeK particle entering PHOS and all its parents
318     if ( gMC->IsTrackEntering() ){
319       Float_t xyzd[3] ;
320       gMC -> Gmtod (xyzte, xyzd, 1);    // transform coordinate from master to daughter system    
321       if (xyzd[1] < -GetGeometry()->GetCrystalSize(1)/2.+0.1){   //Entered close to forward surface  
322         Int_t parent = gAlice->GetMCApp()->GetCurrentTrackNumber() ; 
323         TParticle * part = gAlice->GetMCApp()->Particle(parent) ; 
324         Float_t vert[3],vertd[3] ;
325         vert[0]=part->Vx() ;
326         vert[1]=part->Vy() ;
327         vert[2]=part->Vz() ;
328         gMC -> Gmtod (vert, vertd, 1);    // transform coordinate from master to daughter system
329         if(vertd[1]<-GetGeometry()->GetCrystalSize(1)/2.-0.1){ //Particle is created in foront of PHOS 
330                                                                //0.1 to get rid of numerical errors 
331           part->SetBit(kKeepBit);
332           while ( parent != -1 ) {
333             part = gAlice->GetMCApp()->Particle(parent) ; 
334             part->SetBit(kKeepBit);
335             parent = part->GetFirstMother() ; 
336           }
337         }
338       }
339     }
340     if ( lostenergy != 0 ) {  // Track is inside the crystal and deposits some energy 
341       xyzte[3] = gMC->TrackTime() ;     
342       
343       gMC->CurrentVolOffID(10, moduleNumber) ; // get the PHOS module number ;
344       
345       Int_t strip ;
346       gMC->CurrentVolOffID(3, strip);
347       Int_t cell ;
348       gMC->CurrentVolOffID(2, cell);
349       
350       Int_t row = 1 + GetGeometry()->GetNZ() - strip % GetGeometry()->GetNZ() ;
351       Int_t col = (Int_t) TMath::Ceil((Double_t) strip/GetGeometry()->GetNZ()) -1 ;
352       
353       absid = (moduleNumber-1)*GetGeometry()->GetNCristalsInModule() + 
354         row + (col*GetGeometry()->GetEMCAGeometry()->GetNCellsInStrip() + cell-1)*GetGeometry()->GetNZ() ;
355       
356       gMC->Gmtod(global, local, 1) ;
357       
358       //Calculates the light yield, the number of photons produced in the
359       //crystal 
360       Float_t lightYield = gRandom->Poisson(fLightFactor * lostenergy *
361                                             exp(-fLightYieldAttenuation *
362                                                 (local[1]+GetGeometry()->GetCrystalSize(1)/2.0 ))
363                                             ) ;
364
365       //Calculates de energy deposited in the crystal  
366       xyzte[4] = fAPDFactor * lightYield  ;
367       
368       Int_t primary ;
369       if(fIshunt == 2){
370         primary = gAlice->GetMCApp()->GetCurrentTrackNumber() ;
371         TParticle * part = gAlice->GetMCApp()->Particle(primary) ;
372         while ( !part->TestBit(kKeepBit) ) {
373           primary = part->GetFirstMother() ;
374           if(primary == -1){        
375             primary  =  gAlice->GetMCApp()->GetPrimary( gAlice->GetMCApp()->GetCurrentTrackNumber() ); 
376             break ; //there is a possibility that particle passed e.g. thermal isulator and hits a side 
377           //surface of the crystal. In this case it may have no primary at all. 
378           //We can not easily separate this case from the case when this is part of the shower, 
379           //developed in the neighboring crystal.
380           }
381           part = gAlice->GetMCApp()->Particle(primary) ;
382         }
383       }
384       else
385         primary  =  gAlice->GetMCApp()->GetPrimary( gAlice->GetMCApp()->GetCurrentTrackNumber() ); 
386
387       
388       
389       // add current hit to the hit list
390       // Info("StepManager","%d %d", primary, tracknumber) ; 
391       AddHit(fIshunt, primary, absid, xyzte);
392         
393     } // there is deposited energy
394   } // we are inside a PHOS Xtal
395   
396 }
397
398 //____________________________________________________________________________
399 void AliPHOSv1::CPVDigitize (TLorentzVector p, Float_t *zxhit, TClonesArray *cpvDigits)
400 {
401   // ------------------------------------------------------------------------
402   // Digitize one CPV hit:
403   // On input take exact 4-momentum p and position zxhit of the hit,
404   // find the pad response around this hit and
405   // put the amplitudes in the pads into array digits
406   //
407   // Author: Yuri Kharlov (after Serguei Sadovsky)
408   // 2 October 2000
409   // ------------------------------------------------------------------------
410
411   const Float_t kCelWr  = GetGeometry()->GetPadSizePhi()/2;  // Distance between wires (2 wires above 1 pad)
412   const Float_t kDetR   = 0.1;     // Relative energy fluctuation in track for 100 e-
413   const Float_t kdEdx   = 4.0;     // Average energy loss in CPV;
414   const Int_t   kNgamz  = 5;       // Ionization size in Z
415   const Int_t   kNgamx  = 9;       // Ionization size in Phi
416   const Float_t kNoise = 0.03;    // charge noise in one pad
417
418   Float_t rnor1,rnor2;
419
420   // Just a reminder on axes notation in the CPV module:
421   // axis Z goes along the beam
422   // axis X goes across the beam in the module plane
423   // axis Y is a normal to the module plane showing from the IP
424
425   Float_t hitX  = zxhit[0];
426   Float_t hitZ  =-zxhit[1];
427   Float_t pX    = p.Px();
428   Float_t pZ    =-p.Pz();
429   Float_t pNorm = p.Py();
430   Float_t eloss = kdEdx;
431
432 //Info("CPVDigitize", "YVK : %f %f | %f %f %d", hitX, hitZ, pX, pZ, pNorm) ;
433
434   Float_t dZY   = pZ/pNorm * GetGeometry()->GetCPVGasThickness();
435   Float_t dXY   = pX/pNorm * GetGeometry()->GetCPVGasThickness();
436   gRandom->Rannor(rnor1,rnor2);
437   eloss *= (1 + kDetR*rnor1) *
438            TMath::Sqrt((1 + ( pow(dZY,2) + pow(dXY,2) ) / pow(GetGeometry()->GetCPVGasThickness(),2)));
439   Float_t zhit1 = hitZ + GetGeometry()->GetCPVActiveSize(1)/2 - dZY/2;
440   Float_t xhit1 = hitX + GetGeometry()->GetCPVActiveSize(0)/2 - dXY/2;
441   Float_t zhit2 = zhit1 + dZY;
442   Float_t xhit2 = xhit1 + dXY;
443
444   Int_t   iwht1 = (Int_t) (xhit1 / kCelWr);           // wire (x) coordinate "in"
445   Int_t   iwht2 = (Int_t) (xhit2 / kCelWr);           // wire (x) coordinate "out"
446
447   Int_t   nIter;
448   Float_t zxe[3][5];
449   if (iwht1==iwht2) {                      // incline 1-wire hit
450     nIter = 2;
451     zxe[0][0] = (zhit1 + zhit2 - dZY*0.57735) / 2;
452     zxe[1][0] = (iwht1 + 0.5) * kCelWr;
453     zxe[2][0] =  eloss/2;
454     zxe[0][1] = (zhit1 + zhit2 + dZY*0.57735) / 2;
455     zxe[1][1] = (iwht1 + 0.5) * kCelWr;
456     zxe[2][1] =  eloss/2;
457   }
458   else if (TMath::Abs(iwht1-iwht2) != 1) { // incline 3-wire hit
459     nIter = 3;
460     Int_t iwht3 = (iwht1 + iwht2) / 2;
461     Float_t xwht1 = (iwht1 + 0.5) * kCelWr; // wire 1
462     Float_t xwht2 = (iwht2 + 0.5) * kCelWr; // wire 2
463     Float_t xwht3 = (iwht3 + 0.5) * kCelWr; // wire 3
464     Float_t xwr13 = (xwht1 + xwht3) / 2;   // center 13
465     Float_t xwr23 = (xwht2 + xwht3) / 2;   // center 23
466     Float_t dxw1  = xhit1 - xwr13;
467     Float_t dxw2  = xhit2 - xwr23;
468     Float_t egm1  = TMath::Abs(dxw1) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
469     Float_t egm2  = TMath::Abs(dxw2) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
470     Float_t egm3  =           kCelWr / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
471     zxe[0][0] = (dXY*(xwr13-xwht1)/dXY + zhit1 + zhit1) / 2;
472     zxe[1][0] =  xwht1;
473     zxe[2][0] =  eloss * egm1;
474     zxe[0][1] = (dXY*(xwr23-xwht1)/dXY + zhit1 + zhit2) / 2;
475     zxe[1][1] =  xwht2;
476     zxe[2][1] =  eloss * egm2;
477     zxe[0][2] =  dXY*(xwht3-xwht1)/dXY + zhit1;
478     zxe[1][2] =  xwht3;
479     zxe[2][2] =  eloss * egm3;
480   }
481   else {                                   // incline 2-wire hit
482     nIter = 2;
483     Float_t xwht1 = (iwht1 + 0.5) * kCelWr;
484     Float_t xwht2 = (iwht2 + 0.5) * kCelWr;
485     Float_t xwr12 = (xwht1 + xwht2) / 2;
486     Float_t dxw1  = xhit1 - xwr12;
487     Float_t dxw2  = xhit2 - xwr12;
488     Float_t egm1  = TMath::Abs(dxw1) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) );
489     Float_t egm2  = TMath::Abs(dxw2) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) );
490     zxe[0][0] = (zhit1 + zhit2 - dZY*egm1) / 2;
491     zxe[1][0] =  xwht1;
492     zxe[2][0] =  eloss * egm1;
493     zxe[0][1] = (zhit1 + zhit2 + dZY*egm2) / 2;
494     zxe[1][1] =  xwht2;
495     zxe[2][1] =  eloss * egm2;
496   }
497
498   // Finite size of ionization region
499
500   Int_t nCellZ  = GetGeometry()->GetNumberOfCPVPadsZ();
501   Int_t nCellX  = GetGeometry()->GetNumberOfCPVPadsPhi();
502   Int_t nz3     = (kNgamz+1)/2;
503   Int_t nx3     = (kNgamx+1)/2;
504   cpvDigits->Expand(nIter*kNgamx*kNgamz);
505   TClonesArray &ldigits = *(static_cast<TClonesArray *>(cpvDigits));
506
507   for (Int_t iter=0; iter<nIter; iter++) {
508
509     Float_t zhit = zxe[0][iter];
510     Float_t xhit = zxe[1][iter];
511     Float_t qhit = zxe[2][iter];
512     Float_t zcell = zhit / GetGeometry()->GetPadSizeZ();
513     Float_t xcell = xhit / GetGeometry()->GetPadSizePhi();
514     if ( zcell<=0      || xcell<=0 ||
515          zcell>=nCellZ || xcell>=nCellX) return;
516     Int_t izcell = (Int_t) zcell;
517     Int_t ixcell = (Int_t) xcell;
518     Float_t zc = zcell - izcell - 0.5;
519     Float_t xc = xcell - ixcell - 0.5;
520     for (Int_t iz=1; iz<=kNgamz; iz++) {
521       Int_t kzg = izcell + iz - nz3;
522       if (kzg<=0 || kzg>nCellZ) continue;
523       Float_t zg = (Float_t)(iz-nz3) - zc;
524       for (Int_t ix=1; ix<=kNgamx; ix++) {
525         Int_t kxg = ixcell + ix - nx3;
526         if (kxg<=0 || kxg>nCellX) continue;
527         Float_t xg = (Float_t)(ix-nx3) - xc;
528         
529         // Now calculate pad response
530         Float_t qpad = CPVPadResponseFunction(qhit,zg,xg);
531         qpad += kNoise*rnor2;
532         if (qpad<0) continue;
533         
534         // Fill the array with pad response ID and amplitude
535         new(ldigits[cpvDigits->GetEntriesFast()]) AliPHOSCPVDigit(kxg,kzg,qpad);
536       }
537     }
538   }
539 }
540
541 //____________________________________________________________________________
542 Float_t AliPHOSv1::CPVPadResponseFunction(Float_t qhit, Float_t zhit, Float_t xhit) {
543   // ------------------------------------------------------------------------
544   // Calculate the amplitude in one CPV pad using the
545   // cumulative pad response function
546   // Author: Yuri Kharlov (after Serguei Sadovski)
547   // 3 October 2000
548   // ------------------------------------------------------------------------
549
550   Double_t dz = GetGeometry()->GetPadSizeZ()   / 2;
551   Double_t dx = GetGeometry()->GetPadSizePhi() / 2;
552   Double_t z  = zhit * GetGeometry()->GetPadSizeZ();
553   Double_t x  = xhit * GetGeometry()->GetPadSizePhi();
554   Double_t amplitude = qhit *
555     (CPVCumulPadResponse(z+dz,x+dx) - CPVCumulPadResponse(z+dz,x-dx) -
556      CPVCumulPadResponse(z-dz,x+dx) + CPVCumulPadResponse(z-dz,x-dx));
557   return (Float_t)amplitude;
558 }
559
560 //____________________________________________________________________________
561 Double_t AliPHOSv1::CPVCumulPadResponse(Double_t x, Double_t y) {
562   // ------------------------------------------------------------------------
563   // Cumulative pad response function
564   // It includes several terms from the CF decomposition in electrostatics
565   // Note: this cumulative function is wrong since omits some terms
566   //       but the cell amplitude obtained with it is correct because
567   //       these omitting terms cancel
568   // Author: Yuri Kharlov (after Serguei Sadovski)
569   // 3 October 2000
570   // ------------------------------------------------------------------------
571
572   const Double_t kA=1.0;
573   const Double_t kB=0.7;
574
575   Double_t r2       = x*x + y*y;
576   Double_t xy       = x*y;
577   Double_t cumulPRF = 0;
578   for (Int_t i=0; i<=4; i++) {
579     Double_t b1 = (2*i + 1) * kB;
580     cumulPRF += TMath::Power(-1,i) * TMath::ATan( xy / (b1*TMath::Sqrt(b1*b1 + r2)) );
581   }
582   cumulPRF *= kA/(2*TMath::Pi());
583   return cumulPRF;
584 }
585