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