]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSv1.cxx
CPVHit has been moved into Hit
[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//---
21// Layout EMC + PPSD has name GPS2:
ed4205d8 22// Produces cumulated hits
a3dfe79c 23//---
24// Layout EMC + CPV has name IHEP:
ed4205d8 25// Produces hits for CPV, cumulated hits
26//---
27// Layout EMC + CPV + PPSD has name GPS:
28// Produces hits for CPV, cumulated hits
29//---
5f20d3fb 30//*-- Author: Yves Schutz (SUBATECH)
b2a60966 31
7587f5a5 32
33// --- ROOT system ---
bea63bea 34
35#include "TBRIK.h"
36#include "TNode.h"
7587f5a5 37#include "TRandom.h"
94de3818 38#include "TTree.h"
7587f5a5 39
5f20d3fb 40
7587f5a5 41// --- Standard library ---
42
de9ec31b 43#include <stdio.h>
44#include <string.h>
45#include <stdlib.h>
46#include <strstream.h>
7587f5a5 47
48// --- AliRoot header files ---
49
50#include "AliPHOSv1.h"
51#include "AliPHOSHit.h"
52#include "AliPHOSDigit.h"
bea63bea 53#include "AliPHOSReconstructioner.h"
7587f5a5 54#include "AliRun.h"
55#include "AliConst.h"
94de3818 56#include "AliMC.h"
7587f5a5 57
58ClassImp(AliPHOSv1)
59
bea63bea 60//____________________________________________________________________________
61AliPHOSv1::AliPHOSv1()
62{
5f20d3fb 63 // ctor
fc879520 64
3d402178 65 // Create an empty array of AliPHOSCPVModule to satisfy
fa412d9b 66 // AliPHOSv1::Streamer when reading root file
ed4205d8 67
68 fReconstructioner = 0;
69 fTrackSegmentMaker = 0;
037cc66d 70
bea63bea 71}
72
7587f5a5 73//____________________________________________________________________________
74AliPHOSv1::AliPHOSv1(const char *name, const char *title):
e04976bd 75AliPHOSv0(name,title)
7587f5a5 76{
5f20d3fb 77 // ctor : title is used to identify the layout
fa412d9b 78 // GPS2 = 5 modules (EMC + PPSD)
79 // IHEP = 5 modules (EMC + CPV )
ed4205d8 80 // MIXT = 4 modules (EMC + CPV ) and 1 module (EMC + PPSD)
5f20d3fb 81 //
ed4205d8 82 // We store hits :
5f20d3fb 83 // - fHits (the "normal" one), which retains the hits associated with
84 // the current primary particle being tracked
85 // (this array is reset after each primary has been tracked).
86 //
fa412d9b 87
5f20d3fb 88 fPinElectronicNoise = 0.010 ;
037cc66d 89 fDigitThreshold = 0.01 ; // 1 GeV
90 fDigitizeA= 0. ;
91 fDigitizeB = 10000000. ;
92
5f20d3fb 93
94 // We do not want to save in TreeH the raw hits
95 // But save the cumulated hits instead (need to create the branch myself)
96 // It is put in the Digit Tree because the TreeH is filled after each primary
fa412d9b 97 // and the TreeD at the end of the event (branch is set in FinishEvent() ).
5f20d3fb 98
ed4205d8 99 fHits= new TClonesArray("AliPHOSHit",1000) ;
5f20d3fb 100
ed4205d8 101 fNhits = 0 ;
5f20d3fb 102
ed4205d8 103 fReconstructioner = 0;
104 fTrackSegmentMaker = 0;
5f20d3fb 105
5f20d3fb 106 fIshunt = 1 ; // All hits are associated with primary particles
fa412d9b 107
5f20d3fb 108}
109
110//____________________________________________________________________________
111AliPHOSv1::AliPHOSv1(AliPHOSReconstructioner * Reconstructioner, const char *name, const char *title):
112 AliPHOSv0(name,title)
113{
114 // ctor : title is used to identify the layout
115 // GPS2 = 5 modules (EMC + PPSD)
5f20d3fb 116
117 fPinElectronicNoise = 0.010 ;
118
119 // We do not want to save in TreeH the raw hits
5f20d3fb 120
ed4205d8 121 fDigits = 0 ;
122 fHits= new TClonesArray("AliPHOSHit",1000) ;
b73f246d 123
ed4205d8 124 fNhits = 0 ;
5f20d3fb 125
126 fIshunt = 1 ; // All hits are associated with primary particles
127
128 // gets an instance of the geometry parameters class
129 fGeom = AliPHOSGeometry::GetInstance(title, "") ;
130
131 if (fGeom->IsInitialized() )
88bdfa12 132 cout << "AliPHOS" << Version() << " : PHOS geometry intialized for " << fGeom->GetName() << endl ;
5f20d3fb 133 else
fc879520 134 cout << "AliPHOS" << Version() << " : PHOS geometry initialization failed !" << endl ;
5f20d3fb 135
136 // Defining the PHOS Reconstructioner
137
138 fReconstructioner = Reconstructioner ;
139
7587f5a5 140}
b2a60966 141
7587f5a5 142//____________________________________________________________________________
bea63bea 143AliPHOSv1::~AliPHOSv1()
b2a60966 144{
bea63bea 145 // dtor
5f20d3fb 146
ed4205d8 147 if ( fHits) {
148 fHits->Delete() ;
149 delete fHits ;
150 fHits = 0 ;
8dfa469d 151 }
5f20d3fb 152
037cc66d 153 if ( fSDigits) {
154 fSDigits->Delete() ;
155 delete fSDigits ;
156 fSDigits = 0 ;
157 }
158
ed4205d8 159 if ( fDigits) {
160 fDigits->Delete() ;
161 delete fDigits ;
162 fDigits = 0 ;
163 }
5f20d3fb 164
ed4205d8 165 if ( fEmcRecPoints ) {
166 fEmcRecPoints->Delete() ;
167 delete fEmcRecPoints ;
168 fEmcRecPoints = 0 ;
169 }
170
171 if ( fPpsdRecPoints ) {
172 fPpsdRecPoints->Delete() ;
173 delete fPpsdRecPoints ;
174 fPpsdRecPoints = 0 ;
175 }
fad3e5b9 176
ed4205d8 177 if ( fTrackSegments ) {
178 fTrackSegments->Delete() ;
179 delete fTrackSegments ;
180 fTrackSegments = 0 ;
181 }
182
7587f5a5 183}
184
7587f5a5 185//____________________________________________________________________________
037cc66d 186void AliPHOSv1::AddHit(Int_t shunt, Int_t primary, Int_t tracknumber, Int_t Id, Float_t * hits, Int_t trackpid, TLorentzVector p, Float_t * lpos)
bea63bea 187{
188 // Add a hit to the hit list.
5f20d3fb 189 // A PHOS hit is the sum of all hits in a single crystal
190 // or in a single PPSD gas cell
bea63bea 191
5f20d3fb 192 Int_t hitCounter ;
bea63bea 193 AliPHOSHit *newHit ;
5f20d3fb 194 AliPHOSHit *curHit ;
195 Bool_t deja = kFALSE ;
bea63bea 196
037cc66d 197 newHit = new AliPHOSHit(shunt, primary, tracknumber, Id, hits, trackpid, p, lpos) ;
bea63bea 198
7854a24a 199 for ( hitCounter = fNhits-1 ; hitCounter >= 0 && !deja ; hitCounter-- ) {
ed4205d8 200 curHit = (AliPHOSHit*) (*fHits)[hitCounter] ;
201 if( *curHit == *newHit ) {
202 *curHit = *curHit + *newHit ;
203 deja = kTRUE ;
5f20d3fb 204 }
205 }
206
207 if ( !deja ) {
ed4205d8 208 new((*fHits)[fNhits]) AliPHOSHit(*newHit) ;
209 fNhits++ ;
5f20d3fb 210 }
211
bea63bea 212 delete newHit;
bea63bea 213}
214
ed4205d8 215//____________________________________________________________________________
037cc66d 216void AliPHOSv1::Hits2SDigits(){
217 //Collects all hits in the same active volume into digit
ed4205d8 218
bea63bea 219 Int_t i ;
bea63bea 220 Int_t j ;
fa412d9b 221 AliPHOSHit * hit ;
bea63bea 222 AliPHOSDigit * newdigit ;
223 AliPHOSDigit * curdigit ;
224 Bool_t deja = kFALSE ;
225
037cc66d 226
ed4205d8 227 Int_t itrack ;
037cc66d 228 for (itrack=0; itrack<gAlice->GetNtrack(); itrack++){
229
ed4205d8 230 //=========== Get the Hits Tree for the Primary track itrack
231 gAlice->ResetHits();
232 gAlice->TreeH()->GetEvent(itrack);
233
037cc66d 234
ed4205d8 235 for ( i = 0 ; i < fHits->GetEntries() ; i++ ) {
236 hit = (AliPHOSHit*)fHits->At(i) ;
237
238 // Assign primary number only if contribution is significant
239 if( hit->GetEnergy() > fDigitThreshold)
240 newdigit = new AliPHOSDigit( hit->GetPrimary(), hit->GetId(), Digitize( hit->GetEnergy() ) ) ;
241 else
242 newdigit = new AliPHOSDigit( -1 , hit->GetId(), Digitize( hit->GetEnergy() ) ) ;
243 deja =kFALSE ;
244
037cc66d 245 for ( j = 0 ; j < fnSdigits ; j++) {
246 curdigit = (AliPHOSDigit*) fSDigits->At(j) ;
ed4205d8 247 if ( *curdigit == *newdigit) {
248 *curdigit = *curdigit + *newdigit ;
249 deja = kTRUE ;
250 }
bea63bea 251 }
bea63bea 252
ed4205d8 253 if ( !deja ) {
037cc66d 254 new((*fSDigits)[fnSdigits]) AliPHOSDigit(* newdigit) ;
255 fnSdigits++ ;
ed4205d8 256 }
257
258 delete newdigit ;
259 }
260
261 } // loop over tracks
037cc66d 262
263 fSDigits->Sort() ;
264
265 fnSdigits = fSDigits->GetEntries() ;
266 fSDigits->Expand(fnSdigits) ;
267
268 for (i = 0 ; i < fnSdigits ; i++) {
269 AliPHOSDigit * digit = (AliPHOSDigit *) fSDigits->At(i) ;
270 digit->SetIndexInList(i) ;
271 }
272
273 gAlice->TreeS()->Fill() ;
550bee17 274 gAlice->TreeS()->Write(0,TObject::kOverwrite) ;
275
037cc66d 276
277}
278//____________________________________________________________________________
279void AliPHOSv1::SDigits2Digits(){
280 //Adds noise to the summable digits and removes everething below thresholds
281 //Note, that sDigits should be SORTED in accordance with abs ID.
282
283
284 gAlice->TreeS()->GetEvent(0) ;
037cc66d 285
ad8cfaf4 286 // First calculate noise induced by the PIN diode of the PbWO crystals
037cc66d 287 Int_t iCurSDigit = 0 ;
ad8cfaf4 288
037cc66d 289 //we assume, that there is al least one EMC digit...
550bee17 290 if(fSDigits->GetEntries() == 0) {
291 cout << "PHOS::SDigits2Digits> No SDigits !!! Do not produce Digits " << endl ;
292 return ;
293 }
037cc66d 294
550bee17 295 Int_t idCurSDigit = ((AliPHOSDigit *)fSDigits->At(0))->GetId() ;
037cc66d 296
297 Int_t absID ;
298 for(absID = 1; absID < fGeom->GetNModules()*fGeom->GetNPhi()*fGeom->GetNZ(); absID++){
037cc66d 299 Float_t noise = gRandom->Gaus(0., fPinElectronicNoise) ;
300 if(absID < idCurSDigit ){
037cc66d 301 if(noise >fDigitThreshold ){
037cc66d 302 new((*fDigits)[fNdigits]) AliPHOSDigit( -1,absID,Digitize(noise) ) ;
037cc66d 303 fNdigits++ ;
304 }
305 }
306 else{ //add noise and may be remove the true hit
037cc66d 307 Float_t signal = noise + Calibrate(((AliPHOSDigit *)fSDigits->At(iCurSDigit))->GetAmp()) ;
037cc66d 308 if( signal >fDigitThreshold ){
037cc66d 309 AliPHOSDigit * digit = (AliPHOSDigit*) fSDigits->At(iCurSDigit) ;
310 new((*fDigits)[fNdigits]) AliPHOSDigit( *digit ) ;
311 ((AliPHOSDigit *)fDigits->At(fNdigits))->SetAmp(Digitize(signal));
037cc66d 312 fNdigits++ ;
313 }
314
315 if(iCurSDigit < fSDigits->GetEntries()-1){
316 iCurSDigit++ ;
317 idCurSDigit = ((AliPHOSDigit*)fSDigits->At(iCurSDigit))->GetId() ;
318 }
319 else
320 idCurSDigit = 10000000; //no real hits left
321 }
ed4205d8 322
037cc66d 323 }
324
325 //remove PPSD/CPV digits below thresholds
326 Int_t idigit ;
327 for(idigit = iCurSDigit; idigit < fSDigits->GetEntries() ; idigit++){ //loop over CPV/PPSD digits
328
329 AliPHOSDigit * digit = (AliPHOSDigit *) fSDigits->At(idigit) ;
330 Float_t ene = Calibrate(digit->GetAmp()) ;
331
332 Int_t relid[4] ;
333 fGeom->AbsToRelNumbering(digit->GetId(), relid) ;
334 if ( relid[0] > fGeom->GetNCPVModules() ){ //ppsd
335 if ( ( (relid[1] > 0) && (ene > fPpsdEnergyThreshold)) || //PPSD digit
336 ( (relid[1] < 0) && (ene > fCpvEnergyThreshold ) ) ) //CPV digit
337 new((*fDigits)[fNdigits]) AliPHOSDigit( *digit ) ;
338 fNdigits++ ;
bea63bea 339 }
037cc66d 340 }
ed4205d8 341
bea63bea 342 fDigits->Compress() ;
ed4205d8 343
344 fNdigits = fDigits->GetEntries() ;
345 fDigits->Expand(fNdigits) ;
bea63bea 346
037cc66d 347 Int_t i ;
bea63bea 348 for (i = 0 ; i < fNdigits ; i++) {
037cc66d 349 AliPHOSDigit * digit = (AliPHOSDigit *) fDigits->At(i) ;
350 digit->SetIndexInList(i) ;
bea63bea 351 }
fa412d9b 352
ed4205d8 353 gAlice->TreeD()->Fill() ;
5f20d3fb 354
ed4205d8 355 gAlice->TreeD()->Write(0,TObject::kOverwrite) ;
356
357}
2ab0c725 358
5f20d3fb 359//___________________________________________________________________________
2ab0c725 360void AliPHOSv1::MakeBranch(Option_t* opt, char *file)
037cc66d 361{
362
363
364 char *cH ;
5f20d3fb 365 // Create new branche in the current Root Tree in the digit Tree
5f20d3fb 366 AliDetector::MakeBranch(opt) ;
037cc66d 367
368
369 cH = strstr(opt,"S");
370 //Create a branch for SDigits
371 if( cH ){
372 char branchname[20];
373 sprintf(branchname,"%s",GetName());
374 if(fSDigits)
375 fSDigits->Clear();
376 else
377 fSDigits = new TClonesArray("AliPHOSDigit",1000);
ad8cfaf4 378
037cc66d 379 fnSdigits = 0 ;
037cc66d 380 gAlice->MakeBranchInTree(gAlice->TreeS(),branchname,&fSDigits,fBufferSize,file);
fa412d9b 381 }
ed4205d8 382
037cc66d 383 cH = strstr(opt,"D");
384 //Create a branch for Digits
385 if( cH ){
386 char branchname[20];
387 sprintf(branchname,"%s",GetName());
ad8cfaf4 388
389 if(fDigits)
037cc66d 390 fDigits->Clear();
391 else
392 fDigits = new TClonesArray("AliPHOSDigit",1000);
393 fNdigits = 0 ;
394
ad8cfaf4 395 gAlice->MakeBranchInTree(gAlice->TreeD(),branchname,&fDigits,fBufferSize,file);
037cc66d 396 }
397
398 cH = strstr(opt,"R");
399 //Create a branch for Reconstruction
400 if( cH ){
401 char branchname[20];
402
403 Int_t splitlevel = 0 ;
ad8cfaf4 404
405 if(fEmcRecPoints)
406 fEmcRecPoints->Delete() ;
407 else
408 fEmcRecPoints = new TObjArray(100) ;
037cc66d 409
410 if ( fEmcRecPoints && gAlice->TreeR() ) {
411 sprintf(branchname,"%sEmcRP",GetName()) ;
412 gAlice->TreeR()->Branch(branchname, "TObjArray", &fEmcRecPoints, fBufferSize, splitlevel) ;
413 }
414
ad8cfaf4 415 if(fPpsdRecPoints)
416 fPpsdRecPoints->Delete() ;
417 else
418 fPpsdRecPoints = new TObjArray(100) ;
037cc66d 419
420 if ( fPpsdRecPoints && gAlice->TreeR() ) {
421 sprintf(branchname,"%sPpsdRP",GetName()) ;
422 gAlice->TreeR()->Branch(branchname, "TObjArray", &fPpsdRecPoints, fBufferSize, splitlevel) ;
423 }
424
ad8cfaf4 425 if(fTrackSegments)
426 fTrackSegments->Delete() ;
427 else
428 fTrackSegments = new TClonesArray("AliPHOSTrackSegment",100) ;
037cc66d 429
430 if ( fTrackSegments && gAlice->TreeR() ) {
431 sprintf(branchname,"%sTS",GetName()) ;
432 gAlice->TreeR()->Branch(branchname, &fTrackSegments, fBufferSize) ;
433 }
434
ad8cfaf4 435 if(fRecParticles)
436 fRecParticles->Delete() ;
437 else
438 fRecParticles = new TClonesArray("AliPHOSRecParticle",100) ;
037cc66d 439
440 if ( fRecParticles && gAlice->TreeR() ) {
441 sprintf(branchname,"%sRP",GetName()) ;
442 gAlice->TreeR()->Branch(branchname, &fRecParticles, fBufferSize) ;
443 }
444
445 }
446
bea63bea 447}
448
5f20d3fb 449//_____________________________________________________________________________
450void AliPHOSv1::Reconstruction(AliPHOSReconstructioner * Reconstructioner)
451{
452 // 1. Reinitializes the existing RecPoint, TrackSegment, and RecParticles Lists and
453 // 2. Creates TreeR with a branch for each list
454 // 3. Steers the reconstruction processes
455 // 4. Saves the 3 lists in TreeR
456 // 5. Write the Tree to File
457
458 fReconstructioner = Reconstructioner ;
037cc66d 459
5f20d3fb 460 // 1.
461
462 // gAlice->MakeTree("R") ;
5f20d3fb 463
037cc66d 464 MakeBranch("R") ;
5f20d3fb 465
466 // 3.
b73f246d 467
fad3e5b9 468 fReconstructioner->Make(fDigits, fEmcRecPoints, fPpsdRecPoints, fTrackSegments, fRecParticles);
b73f246d 469
fad3e5b9 470 printf("Reconstruction: %d %d %d %d\n",
471 fEmcRecPoints->GetEntries(),fPpsdRecPoints->GetEntries(),
b73f246d 472 fTrackSegments->GetEntries(),fRecParticles->GetEntries());
5f20d3fb 473
474 // 4. Expand or Shrink the arrays to the proper size
475
476 Int_t size ;
477
478 size = fEmcRecPoints->GetEntries() ;
479 fEmcRecPoints->Expand(size) ;
ed4205d8 480
5f20d3fb 481 size = fPpsdRecPoints->GetEntries() ;
482 fPpsdRecPoints->Expand(size) ;
483
484 size = fTrackSegments->GetEntries() ;
485 fTrackSegments->Expand(size) ;
486
487 size = fRecParticles->GetEntries() ;
488 fRecParticles->Expand(size) ;
489
490 gAlice->TreeR()->Fill() ;
5f20d3fb 491 // 5.
492
4a2ca5e9 493 gAlice->TreeR()->Write(0,TObject::kOverwrite) ;
5f20d3fb 494
495 // Deleting reconstructed objects
496 ResetReconstruction();
497
498}
499
5f20d3fb 500//____________________________________________________________________________
501void AliPHOSv1::ResetReconstruction()
502{
503 // Deleting reconstructed objects
504
b73f246d 505 if ( fEmcRecPoints ) fEmcRecPoints ->Delete();
5f20d3fb 506 if ( fPpsdRecPoints ) fPpsdRecPoints->Delete();
507 if ( fTrackSegments ) fTrackSegments->Delete();
b73f246d 508 if ( fRecParticles ) fRecParticles ->Delete();
5f20d3fb 509
510}
5f20d3fb 511
5f20d3fb 512//____________________________________________________________________________
513
7587f5a5 514void AliPHOSv1::StepManager(void)
515{
b2a60966 516 // Accumulates hits as long as the track stays in a single crystal or PPSD gas Cell
b2a60966 517
ed4205d8 518// if (gMC->IsTrackEntering())
519// cout << "Track enters the volume " << gMC->CurrentVolName() << endl;
520// if (gMC->IsTrackExiting())
521// cout << "Track leaves the volume " << gMC->CurrentVolName() << endl;
522
7587f5a5 523 Int_t relid[4] ; // (box, layer, row, column) indices
fa412d9b 524 Int_t absid ; // absolute cell ID number
2168f43b 525 Float_t xyze[4]={0,0,0,0} ; // position wrt MRS and energy deposited
fa412d9b 526 TLorentzVector pos ; // Lorentz vector of the track current position
037cc66d 527 TLorentzVector pmom ; //momentum of the particle initiated hit
7854a24a 528 Float_t xyd[3] ; //local posiiton of the entering
037cc66d 529 Bool_t entered = kFALSE ;
fa412d9b 530 Int_t copy ;
7587f5a5 531
bea63bea 532 Int_t tracknumber = gAlice->CurrentTrack() ;
fa412d9b 533 Int_t primary = gAlice->GetPrimary( gAlice->CurrentTrack() );
534 TString name = fGeom->GetName() ;
037cc66d 535 Int_t trackpid = 0 ;
536
537 if( gMC->IsTrackEntering() ){ // create hit with position and momentum of new particle,
538 // but may be without energy deposition
539
540 // Current position of the hit in the local ref. system
541 gMC -> TrackPosition(pos);
542 Float_t xyzm[3], xyzd[3] ;
543 Int_t i;
544 for (i=0; i<3; i++) xyzm[i] = pos[i];
545 gMC -> Gmtod (xyzm, xyzd, 1); // transform coordinate from master to daughter system
546 xyd[0] = xyzd[0];
7854a24a 547 xyd[1] =-xyzd[1];
548 xyd[2] =-xyzd[2];
549
037cc66d 550
551 // Current momentum of the hit's track in the local ref. system
552 gMC -> TrackMomentum(pmom);
553 Float_t pm[3], pd[3];
554 for (i=0; i<3; i++) pm[i] = pmom[i];
555 gMC -> Gmtod (pm, pd, 2); // transform 3-momentum from master to daughter system
556 pmom[0] = pd[0];
557 pmom[1] =-pd[1];
558 pmom[2] =-pd[2];
559
560 trackpid = gMC->TrackPid();
561 entered = kTRUE ; // Mark to create hit even withou energy deposition
562
563 }
564
565
ed4205d8 566 if ( name == "GPS2" || name == "MIXT" ) { // ======> CPV is a GPS' PPSD
fa412d9b 567
b2a60966 568 if( gMC->CurrentVolID(copy) == gMC->VolId("GCEL") ) // We are inside a gas cell
7587f5a5 569 {
570 gMC->TrackPosition(pos) ;
571 xyze[0] = pos[0] ;
572 xyze[1] = pos[1] ;
573 xyze[2] = pos[2] ;
bea63bea 574 xyze[3] = gMC->Edep() ;
7587f5a5 575
037cc66d 576 if ( (xyze[3] != 0) || entered ) { // there is deposited energy or new particle entering PPSD
7587f5a5 577 gMC->CurrentVolOffID(5, relid[0]) ; // get the PHOS Module number
fad3e5b9 578 if ( name == "MIXT" && strcmp(gMC->CurrentVolOffName(5),"PHO1") == 0 ){
ed4205d8 579 relid[0] += fGeom->GetNModules() - fGeom->GetNPPSDModules();
fad3e5b9 580 }
7587f5a5 581 gMC->CurrentVolOffID(3, relid[1]) ; // get the Micromegas Module number
ed4205d8 582 // 1-> fGeom->GetNumberOfModulesPhi() * fGeom->GetNumberOfModulesZ() upper
583 // > fGeom->GetNumberOfModulesPhi() * fGeom->GetNumberOfModulesZ() lower
7587f5a5 584 gMC->CurrentVolOffID(1, relid[2]) ; // get the row number of the cell
585 gMC->CurrentVolID(relid[3]) ; // get the column number
586
587 // get the absolute Id number
588
bea63bea 589 fGeom->RelToAbsNumbering(relid, absid) ;
7587f5a5 590
bea63bea 591 // add current hit to the hit list
037cc66d 592 AddHit(fIshunt, primary, tracknumber, absid, xyze, trackpid, pmom, xyd);
593
7587f5a5 594
595 } // there is deposited energy
fa412d9b 596 } // We are inside the gas of the CPV
597 } // GPS2 configuration
598
ed4205d8 599 if ( name == "IHEP" || name == "MIXT" ) { // ======> CPV is a IHEP's one
fa412d9b 600
601 // Yuri Kharlov, 28 September 2000
602
603 if( gMC->CurrentVolID(copy) == gMC->VolId("CPVQ") &&
037cc66d 604 entered &&
605 gMC->TrackCharge() != 0) {
fa412d9b 606
037cc66d 607 // Digitize the current CPV hit:
608
609 // 1. find pad response and
fa412d9b 610
a3dfe79c 611 Int_t moduleNumber;
612 gMC->CurrentVolOffID(3,moduleNumber);
613 moduleNumber--;
fa412d9b 614
fa412d9b 615
3d402178 616 TClonesArray *cpvDigits = new TClonesArray("AliPHOSCPVDigit",0); // array of digits for current hit
a3dfe79c 617 CPVDigitize(pmom,xyd,moduleNumber,cpvDigits);
fa412d9b 618
619 Float_t xmean = 0;
620 Float_t zmean = 0;
621 Float_t qsum = 0;
cd461ab8 622 Int_t idigit,ndigits;
fa412d9b 623
624 // 2. go through the current digit list and sum digits in pads
625
626 ndigits = cpvDigits->GetEntriesFast();
cd461ab8 627 for (idigit=0; idigit<ndigits-1; idigit++) {
3d402178 628 AliPHOSCPVDigit *cpvDigit1 = (AliPHOSCPVDigit*) cpvDigits->UncheckedAt(idigit);
fa412d9b 629 Float_t x1 = cpvDigit1->GetXpad() ;
630 Float_t z1 = cpvDigit1->GetYpad() ;
631 for (Int_t jdigit=idigit+1; jdigit<ndigits; jdigit++) {
3d402178 632 AliPHOSCPVDigit *cpvDigit2 = (AliPHOSCPVDigit*) cpvDigits->UncheckedAt(jdigit);
fa412d9b 633 Float_t x2 = cpvDigit2->GetXpad() ;
634 Float_t z2 = cpvDigit2->GetYpad() ;
635 if (x1==x2 && z1==z2) {
636 Float_t qsum = cpvDigit1->GetQpad() + cpvDigit2->GetQpad() ;
637 cpvDigit2->SetQpad(qsum) ;
638 cpvDigits->RemoveAt(idigit) ;
639 }
640 }
641 }
642 cpvDigits->Compress() ;
643
644 // 3. add digits to temporary hit list fTmpHits
645
646 ndigits = cpvDigits->GetEntriesFast();
cd461ab8 647 for (idigit=0; idigit<ndigits; idigit++) {
3d402178 648 AliPHOSCPVDigit *cpvDigit = (AliPHOSCPVDigit*) cpvDigits->UncheckedAt(idigit);
a3dfe79c 649 relid[0] = moduleNumber + 1 ; // CPV (or PHOS) module number
fa412d9b 650 relid[1] =-1 ; // means CPV
651 relid[2] = cpvDigit->GetXpad() ; // column number of a pad
652 relid[3] = cpvDigit->GetYpad() ; // row number of a pad
653
654 // get the absolute Id number
655 fGeom->RelToAbsNumbering(relid, absid) ;
656
657 // add current digit to the temporary hit list
658 xyze[0] = 0. ;
659 xyze[1] = 0. ;
660 xyze[2] = 0. ;
661 xyze[3] = cpvDigit->GetQpad() ; // amplitude in a pad
662 primary = -1; // No need in primary for CPV
037cc66d 663 AddHit(fIshunt, primary, tracknumber, absid, xyze, trackpid, pmom, xyd);
fa412d9b 664
665 if (cpvDigit->GetQpad() > 0.02) {
666 xmean += cpvDigit->GetQpad() * (cpvDigit->GetXpad() + 0.5);
667 zmean += cpvDigit->GetQpad() * (cpvDigit->GetYpad() + 0.5);
668 qsum += cpvDigit->GetQpad();
669 }
670 }
671 delete cpvDigits;
672 }
673 } // end of IHEP configuration
7587f5a5 674
037cc66d 675
fa412d9b 676 if(gMC->CurrentVolID(copy) == gMC->VolId("PXTL") ) { // We are inside a PBWO crystal
677 gMC->TrackPosition(pos) ;
678 xyze[0] = pos[0] ;
679 xyze[1] = pos[1] ;
680 xyze[2] = pos[2] ;
681 xyze[3] = gMC->Edep() ;
ed4205d8 682
037cc66d 683
684 if ( (xyze[3] != 0) || entered ) { // Track is inside the crystal and deposits some energy or just entered
ed4205d8 685
fa412d9b 686 gMC->CurrentVolOffID(10, relid[0]) ; // get the PHOS module number ;
037cc66d 687
fad3e5b9 688 if ( name == "MIXT" && strcmp(gMC->CurrentVolOffName(10),"PHO1") == 0 )
689 relid[0] += fGeom->GetNModules() - fGeom->GetNPPSDModules();
690
fa412d9b 691 relid[1] = 0 ; // means PBW04
692 gMC->CurrentVolOffID(4, relid[2]) ; // get the row number inside the module
693 gMC->CurrentVolOffID(3, relid[3]) ; // get the cell number inside the module
694
695 // get the absolute Id number
fa412d9b 696 fGeom->RelToAbsNumbering(relid, absid) ;
ed4205d8 697
fa412d9b 698 // add current hit to the hit list
037cc66d 699 AddHit(fIshunt, primary,tracknumber, absid, xyze, trackpid,pmom, xyd);
700
ed4205d8 701
fa412d9b 702 } // there is deposited energy
703 } // we are inside a PHOS Xtal
037cc66d 704
705
fa412d9b 706}
707
708//____________________________________________________________________________
709void AliPHOSv1::CPVDigitize (TLorentzVector p, Float_t *zxhit, Int_t moduleNumber, TClonesArray *cpvDigits)
710{
711 // ------------------------------------------------------------------------
712 // Digitize one CPV hit:
713 // On input take exact 4-momentum p and position zxhit of the hit,
714 // find the pad response around this hit and
715 // put the amplitudes in the pads into array digits
716 //
717 // Author: Yuri Kharlov (after Serguei Sadovsky)
718 // 2 October 2000
719 // ------------------------------------------------------------------------
720
a3dfe79c 721 const Float_t kCelWr = fGeom->GetPadSizePhi()/2; // Distance between wires (2 wires above 1 pad)
722 const Float_t kDetR = 0.1; // Relative energy fluctuation in track for 100 e-
723 const Float_t kdEdx = 4.0; // Average energy loss in CPV;
724 const Int_t kNgamz = 5; // Ionization size in Z
725 const Int_t kNgamx = 9; // Ionization size in Phi
726 const Float_t kNoise = 0.03; // charge noise in one pad
fa412d9b 727
728 Float_t rnor1,rnor2;
729
730 // Just a reminder on axes notation in the CPV module:
731 // axis Z goes along the beam
732 // axis X goes across the beam in the module plane
733 // axis Y is a normal to the module plane showing from the IP
734
735 Float_t hitX = zxhit[0];
736 Float_t hitZ =-zxhit[1];
737 Float_t pX = p.Px();
738 Float_t pZ =-p.Pz();
739 Float_t pNorm = p.Py();
a3dfe79c 740 Float_t eloss = kdEdx;
3d402178 741
7eb9d12d 742// cout << "CPVDigitize: YVK : "<<hitX<<" "<<hitZ<<" | "<<pX<<" "<<pZ<<" "<<pNorm<<endl;
743
fa412d9b 744 Float_t dZY = pZ/pNorm * fGeom->GetCPVGasThickness();
745 Float_t dXY = pX/pNorm * fGeom->GetCPVGasThickness();
746 gRandom->Rannor(rnor1,rnor2);
a3dfe79c 747 eloss *= (1 + kDetR*rnor1) *
748 TMath::Sqrt((1 + ( pow(dZY,2) + pow(dXY,2) ) / pow(fGeom->GetCPVGasThickness(),2)));
fa412d9b 749 Float_t zhit1 = hitZ + fGeom->GetCPVActiveSize(1)/2 - dZY/2;
750 Float_t xhit1 = hitX + fGeom->GetCPVActiveSize(0)/2 - dXY/2;
751 Float_t zhit2 = zhit1 + dZY;
752 Float_t xhit2 = xhit1 + dXY;
753
a3dfe79c 754 Int_t iwht1 = (Int_t) (xhit1 / kCelWr); // wire (x) coordinate "in"
755 Int_t iwht2 = (Int_t) (xhit2 / kCelWr); // wire (x) coordinate "out"
fa412d9b 756
757 Int_t nIter;
758 Float_t zxe[3][5];
759 if (iwht1==iwht2) { // incline 1-wire hit
760 nIter = 2;
761 zxe[0][0] = (zhit1 + zhit2 - dZY*0.57735) / 2;
a3dfe79c 762 zxe[1][0] = (iwht1 + 0.5) * kCelWr;
763 zxe[2][0] = eloss/2;
fa412d9b 764 zxe[0][1] = (zhit1 + zhit2 + dZY*0.57735) / 2;
a3dfe79c 765 zxe[1][1] = (iwht1 + 0.5) * kCelWr;
766 zxe[2][1] = eloss/2;
fa412d9b 767 }
768 else if (TMath::Abs(iwht1-iwht2) != 1) { // incline 3-wire hit
769 nIter = 3;
770 Int_t iwht3 = (iwht1 + iwht2) / 2;
a3dfe79c 771 Float_t xwht1 = (iwht1 + 0.5) * kCelWr; // wire 1
772 Float_t xwht2 = (iwht2 + 0.5) * kCelWr; // wire 2
773 Float_t xwht3 = (iwht3 + 0.5) * kCelWr; // wire 3
fa412d9b 774 Float_t xwr13 = (xwht1 + xwht3) / 2; // center 13
775 Float_t xwr23 = (xwht2 + xwht3) / 2; // center 23
776 Float_t dxw1 = xhit1 - xwr13;
777 Float_t dxw2 = xhit2 - xwr23;
a3dfe79c 778 Float_t egm1 = TMath::Abs(dxw1) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
779 Float_t egm2 = TMath::Abs(dxw2) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
780 Float_t egm3 = kCelWr / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) + kCelWr );
fa412d9b 781 zxe[0][0] = (dXY*(xwr13-xwht1)/dXY + zhit1 + zhit1) / 2;
782 zxe[1][0] = xwht1;
a3dfe79c 783 zxe[2][0] = eloss * egm1;
fa412d9b 784 zxe[0][1] = (dXY*(xwr23-xwht1)/dXY + zhit1 + zhit2) / 2;
785 zxe[1][1] = xwht2;
a3dfe79c 786 zxe[2][1] = eloss * egm2;
fa412d9b 787 zxe[0][2] = dXY*(xwht3-xwht1)/dXY + zhit1;
788 zxe[1][2] = xwht3;
a3dfe79c 789 zxe[2][2] = eloss * egm3;
fa412d9b 790 }
791 else { // incline 2-wire hit
792 nIter = 2;
a3dfe79c 793 Float_t xwht1 = (iwht1 + 0.5) * kCelWr;
794 Float_t xwht2 = (iwht2 + 0.5) * kCelWr;
fa412d9b 795 Float_t xwr12 = (xwht1 + xwht2) / 2;
796 Float_t dxw1 = xhit1 - xwr12;
797 Float_t dxw2 = xhit2 - xwr12;
798 Float_t egm1 = TMath::Abs(dxw1) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) );
799 Float_t egm2 = TMath::Abs(dxw2) / ( TMath::Abs(dxw1) + TMath::Abs(dxw2) );
800 zxe[0][0] = (zhit1 + zhit2 - dZY*egm1) / 2;
801 zxe[1][0] = xwht1;
a3dfe79c 802 zxe[2][0] = eloss * egm1;
fa412d9b 803 zxe[0][1] = (zhit1 + zhit2 + dZY*egm2) / 2;
804 zxe[1][1] = xwht2;
a3dfe79c 805 zxe[2][1] = eloss * egm2;
fa412d9b 806 }
bea63bea 807
fa412d9b 808 // Finite size of ionization region
809
ed4205d8 810 Int_t nCellZ = fGeom->GetNumberOfCPVPadsZ();
811 Int_t nCellX = fGeom->GetNumberOfCPVPadsPhi();
a3dfe79c 812 Int_t nz3 = (kNgamz+1)/2;
813 Int_t nx3 = (kNgamx+1)/2;
814 cpvDigits->Expand(nIter*kNgamx*kNgamz);
fa412d9b 815 TClonesArray &ldigits = *(TClonesArray *)cpvDigits;
816
817 for (Int_t iter=0; iter<nIter; iter++) {
818
819 Float_t zhit = zxe[0][iter];
820 Float_t xhit = zxe[1][iter];
821 Float_t qhit = zxe[2][iter];
822 Float_t zcell = zhit / fGeom->GetPadSizeZ();
823 Float_t xcell = xhit / fGeom->GetPadSizePhi();
824 if ( zcell<=0 || xcell<=0 ||
825 zcell>=nCellZ || xcell>=nCellX) return;
826 Int_t izcell = (Int_t) zcell;
827 Int_t ixcell = (Int_t) xcell;
828 Float_t zc = zcell - izcell - 0.5;
829 Float_t xc = xcell - ixcell - 0.5;
a3dfe79c 830 for (Int_t iz=1; iz<=kNgamz; iz++) {
fa412d9b 831 Int_t kzg = izcell + iz - nz3;
832 if (kzg<=0 || kzg>nCellZ) continue;
833 Float_t zg = (Float_t)(iz-nz3) - zc;
a3dfe79c 834 for (Int_t ix=1; ix<=kNgamx; ix++) {
fa412d9b 835 Int_t kxg = ixcell + ix - nx3;
836 if (kxg<=0 || kxg>nCellX) continue;
837 Float_t xg = (Float_t)(ix-nx3) - xc;
838
839 // Now calculate pad response
840 Float_t qpad = CPVPadResponseFunction(qhit,zg,xg);
a3dfe79c 841 qpad += kNoise*rnor2;
fa412d9b 842 if (qpad<0) continue;
843
844 // Fill the array with pad response ID and amplitude
3d402178 845 new(ldigits[cpvDigits->GetEntriesFast()]) AliPHOSCPVDigit(kxg,kzg,qpad);
fa412d9b 846 }
fa412d9b 847 }
fa412d9b 848 }
849}
850
851//____________________________________________________________________________
852Float_t AliPHOSv1::CPVPadResponseFunction(Float_t qhit, Float_t zhit, Float_t xhit) {
853 // ------------------------------------------------------------------------
854 // Calculate the amplitude in one CPV pad using the
855 // cumulative pad response function
856 // Author: Yuri Kharlov (after Serguei Sadovski)
857 // 3 October 2000
858 // ------------------------------------------------------------------------
859
860 Double_t dz = fGeom->GetPadSizeZ() / 2;
861 Double_t dx = fGeom->GetPadSizePhi() / 2;
862 Double_t z = zhit * fGeom->GetPadSizeZ();
863 Double_t x = xhit * fGeom->GetPadSizePhi();
864 Double_t amplitude = qhit *
865 (CPVCumulPadResponse(z+dz,x+dx) - CPVCumulPadResponse(z+dz,x-dx) -
866 CPVCumulPadResponse(z-dz,x+dx) + CPVCumulPadResponse(z-dz,x-dx));
867 return (Float_t)amplitude;
7587f5a5 868}
869
fa412d9b 870//____________________________________________________________________________
871Double_t AliPHOSv1::CPVCumulPadResponse(Double_t x, Double_t y) {
872 // ------------------------------------------------------------------------
873 // Cumulative pad response function
874 // It includes several terms from the CF decomposition in electrostatics
875 // Note: this cumulative function is wrong since omits some terms
876 // but the cell amplitude obtained with it is correct because
877 // these omitting terms cancel
878 // Author: Yuri Kharlov (after Serguei Sadovski)
879 // 3 October 2000
880 // ------------------------------------------------------------------------
881
a3dfe79c 882 const Double_t kA=1.0;
883 const Double_t kB=0.7;
fa412d9b 884
885 Double_t r2 = x*x + y*y;
886 Double_t xy = x*y;
887 Double_t cumulPRF = 0;
888 for (Int_t i=0; i<=4; i++) {
a3dfe79c 889 Double_t b1 = (2*i + 1) * kB;
fa412d9b 890 cumulPRF += TMath::Power(-1,i) * TMath::ATan( xy / (b1*TMath::Sqrt(b1*b1 + r2)) );
891 }
a3dfe79c 892 cumulPRF *= kA/(2*TMath::Pi());
fa412d9b 893 return cumulPRF;
894}
7eb9d12d 895