]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSv4.cxx
polish
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv4.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 //_________________________________________________________________________
19 // Implementation of the PHOS manager class for fast simulations     
20 // Tracks particles until the reach a grossly designed PHOS module
21 // Modify the particles property (momentum, energy, type) according to
22 //  the PHOS response function. The result is called a virtual reconstructed
23 //  particle.                
24 //
25 //*-- Author: Yves Schutz (SUBATECH)
26
27 // --- ROOT system ---
28
29 #include "TBRIK.h"
30 #include "TNode.h"
31 #include "TParticle.h"
32
33 // --- Standard library ---
34
35 #include <stdio.h>
36
37 // --- AliRoot header files ---
38
39 #include "AliPHOSv4.h"
40 #include "AliRun.h"
41 #include "AliConst.h"
42
43 ClassImp(AliPHOSv4)
44
45 //____________________________________________________________________________
46 AliPHOSv4::AliPHOSv4(const char *name, const char *title):
47   AliPHOS(name,title)
48 {
49   // ctor
50
51   // gets an instance of the geometry parameters class  
52    
53   if ( strcmp(title, "") != 0 ) 
54     fGeom =  AliPHOSGeometry::GetInstance(title, "") ; 
55   
56   if (fGeom != 0 ) {
57     cout << "AliPHOSv4 : PHOS geometry intialized for " << fGeom->GetName() << endl ;
58     
59     SetBigBox(0, fGeom->GetOuterBoxSize(0) ) ;
60     SetBigBox(1, fGeom->GetOuterBoxSize(1) + fGeom->GetPPSDBoxSize(1) ) ; 
61     SetBigBox(2, fGeom->GetOuterBoxSize(0) ); 
62     
63     fNRecParticles = 0 ; 
64     fFastRecParticles = new AliPHOSFastRecParticle::FastRecParticlesList("AliPHOSFastRecParticle", 100) ;
65     
66     fResPara1 = 0.030 ;    // GeV
67     fResPara2 = 0.00003 ; 
68     fResPara3 = 0.00001 ; 
69     
70     fPosParaA0 = 2.87 ;    // mm
71     fPosParaA1 = -0.0975 ;  
72     fPosParaB0 = 0.257 ;   
73     fPosParaB1 = 0.137 ; 
74     fPosParaB2 = 0.00619 ; 
75   }
76   else
77     cout << "AliPHOSv4 : PHOS geometry initialization failed !" << endl ;   
78 }
79
80 //____________________________________________________________________________
81 AliPHOSv4::~AliPHOSv4()
82 {
83   // dtor
84  
85   fFastRecParticles->Delete() ; 
86   delete fFastRecParticles ;
87   fFastRecParticles = 0 ; 
88
89 }
90
91 //____________________________________________________________________________
92 void AliPHOSv4::AddRecParticle(const AliPHOSFastRecParticle & rp)
93 {  
94   // Add a virtually reconstructed particle to the list 
95
96   new( (*fFastRecParticles)[fNRecParticles] ) AliPHOSFastRecParticle(rp) ;
97   fNRecParticles++ ; 
98 }
99
100 //____________________________________________________________________________
101 void AliPHOSv4::BuildGeometry()
102 {
103   // Build the PHOS geometry for the ROOT display
104    //BEGIN_HTML
105   /*
106     <H2>
107      PHOS FAST in ALICE displayed by root
108     </H2>
109     <H4> All Views </H4>
110     <P>
111     <CENTER>
112     <IMG Align=BOTTOM ALT="Fast All Views" SRC="../images/AliPHOSv4AllViews.gif"> 
113     </CENTER></P>
114     <H4> Front View </H4>
115     <P>
116     <CENTER>
117     <IMG Align=BOTTOM ALT="Fast Front View" SRC="../images/AliPHOSv4FrontView.gif"> 
118     </CENTER></P>
119   */
120   //END_HTML  
121  
122   const Int_t kColorPHOS = kRed ;
123   
124   Double_t const kRADDEG = 180.0 / kPI ;
125   
126   new TBRIK( "BigBox", "PHOS box", "void", GetBigBox(0)/2, 
127              GetBigBox(1)/2, 
128              GetBigBox(2)/2 );
129   
130   // position PHOS into ALICE
131
132   Float_t r = fGeom->GetIPtoCrystalSurface() + GetBigBox(1) / 2.0 ;
133   Int_t number = 988 ; 
134   Float_t pphi =  TMath::ATan( GetBigBox(0)  / ( 2.0 * fGeom->GetIPtoCrystalSurface() ) ) ;
135   pphi *= kRADDEG ;
136   TNode * top = gAlice->GetGeometry()->GetNode("alice") ;
137  
138   char * nodename = new char[20] ;  
139   char * rotname  = new char[20] ; 
140
141   for( Int_t i = 1; i <= fGeom->GetNModules(); i++ ) { 
142    Float_t angle = pphi * 2 * ( i - fGeom->GetNModules() / 2.0 - 0.5 ) ;
143    sprintf(rotname, "%s%d", "rot", number++) ;
144    new TRotMatrix(rotname, rotname, 90, angle, 90, 90 + angle, 0, 0);
145    top->cd();
146    sprintf(nodename,"%s%d", "Module", i) ;    
147    Float_t x =  r * TMath::Sin( angle / kRADDEG ) ;
148    Float_t y = -r * TMath::Cos( angle / kRADDEG ) ;
149    TNode * bigboxnode = new TNode(nodename, nodename, "BigBox", x, y, 0, rotname ) ;
150    bigboxnode->SetLineColor(kColorPHOS) ;
151    fNodes->Add(bigboxnode) ;
152   }
153   delete[] nodename ; 
154   delete[] rotname ; 
155 }
156
157 //____________________________________________________________________________
158 void AliPHOSv4::CreateGeometry()
159 {
160   // Create the geometry for GEANT
161   
162   AliPHOSv4 *phostmp = (AliPHOSv4*)gAlice->GetModule("PHOS") ;
163   
164   if ( phostmp == NULL ) {
165     
166     fprintf(stderr, "PHOS detector not found!\n") ;
167     return ;
168     
169   }
170
171   // Get pointer to the array containing media indeces
172   Int_t *idtmed = fIdtmed->GetArray() - 699 ;
173   
174   Float_t bigbox[3] ; 
175   bigbox[0] =   GetBigBox(0) / 2.0 ;
176   bigbox[1] =   GetBigBox(1) / 2.0 ;
177   bigbox[2] =   GetBigBox(2) / 2.0 ;
178   
179   gMC->Gsvolu("PHOS", "BOX ", idtmed[798], bigbox, 3) ;
180   
181   // --- Position  PHOS mdules in ALICE setup ---
182   
183   Int_t idrotm[99] ;
184   Double_t const kRADDEG = 180.0 / kPI ;
185   
186   for( Int_t i = 1; i <= fGeom->GetNModules(); i++ ) {
187     
188     Float_t angle = fGeom->GetPHOSAngle(i) ;
189     AliMatrix(idrotm[i-1], 90.0, angle, 90.0, 90.0+angle, 0.0, 0.0) ;
190  
191     Float_t r = fGeom->GetIPtoCrystalSurface() + GetBigBox(1) / 2.0 ;
192
193     Float_t xP1 = r * TMath::Sin( angle / kRADDEG ) ;
194     Float_t yP1 = -r * TMath::Cos( angle / kRADDEG ) ;
195     gMC->Gspos("PHOS", i, "ALIC", xP1, yP1, 0.0, idrotm[i-1], "ONLY") ;
196  
197   } // for GetNModules
198
199 }
200
201
202 //____________________________________________________________________________
203 void AliPHOSv4::Init(void)
204 {
205   // Prints out an information message
206   
207   Int_t i;
208
209   printf("\n");
210   for(i=0;i<35;i++) printf("*");
211   printf(" FAST PHOS_INIT ");
212   for(i=0;i<35;i++) printf("*");
213   printf("\n");
214
215   // Here the PHOS initialisation code (if any!)
216
217   for(i=0;i<80;i++) printf("*");
218   printf("\n");
219   
220 }
221
222 //___________________________________________________________________________
223 Float_t AliPHOSv4::GetBigBox(Int_t index)
224 {
225   // Get the X, Y or Z dimension of the box describing a PHOS module
226   
227   Float_t rv = 0 ; 
228
229   switch (index) {
230   case 0:
231     rv = fBigBoxX ; 
232     break ; 
233   case 1:
234      rv = fBigBoxY ; 
235     break ; 
236   case 2:
237      rv = fBigBoxZ ; 
238     break ; 
239  }
240   return rv ; 
241 }
242
243 //___________________________________________________________________________
244 void AliPHOSv4::MakeBranch(Option_t* opt)
245 {  
246   // Create new branch in the current reconstructed Root Tree
247  
248   AliDetector::MakeBranch(opt) ;
249   
250   char branchname[10];
251   sprintf(branchname,"%s",GetName());
252   char *cd = strstr(opt,"R");
253   
254   if (fFastRecParticles && gAlice->TreeR() && cd) {
255     gAlice->TreeR()->Branch(branchname, &fFastRecParticles, fBufferSize);
256   }
257 }
258
259 //____________________________________________________________________________
260 Double_t AliPHOSv4::MakeEnergy(const Double_t energy)
261 {  
262   // Smears the energy according to the energy dependent energy resolution.
263   // A gaussian distribution is assumed
264
265   Double_t sigma  = SigmaE(energy) ; 
266   return  fRan.Gaus(energy, sigma) ;   
267 }
268
269 //____________________________________________________________________________
270 TVector3 AliPHOSv4::MakePosition(const Double_t energy, const TVector3 pos, const Double_t theta, const Double_t phi)
271 {
272   // Smears the impact position according to the energy dependent position resolution
273   // A gaussian position distribution is assumed
274
275   TVector3 newpos ;
276   Double_t sigma = SigmaP( energy, theta*180./TMath::Pi() ) ;
277   Double_t x = fRan.Gaus( pos.X(), sigma ) ;
278   sigma = SigmaP( energy, phi*180./TMath::Pi() ) ;
279   Double_t z = fRan.Gaus( pos.Z(), sigma ) ;
280   Double_t y = pos.Y() ; 
281   
282   newpos.SetX(x) ; 
283   newpos.SetY(y) ; 
284   newpos.SetZ(z) ; 
285               
286   return newpos ; 
287 }
288
289 //____________________________________________________________________________
290 void AliPHOSv4::MakeRecParticle(const Int_t modid, const TVector3 pos, AliPHOSFastRecParticle & rp)
291 {
292   // Modify the primary particle properties according
293   //  1. the response function of PHOS
294   //  2. the performance of the EMC+PPSD setup
295   
296   Int_t type = MakeType( rp ) ;
297   rp.SetType(type) ;
298
299   
300   // get the detected energy
301
302   TLorentzVector momentum ;  
303   rp.Momentum(momentum) ; 
304   Double_t kineticenergy = TMath::Sqrt( TMath::Power(momentum.E(), 2) - TMath::Power(rp.GetMass(), 2) ) ; 
305   Double_t modifiedkineticenergy = MakeEnergy(kineticenergy ) ;
306   Double_t modifiedenergy = TMath::Sqrt( TMath::Power(modifiedkineticenergy, 2)  
307                                          + TMath::Power( rp.GetMass(), 2) ) ;
308  
309   // get the angle of incidence 
310   
311   Double_t incidencetheta = 90. * TMath::Pi() /180 - rp.Theta() ; 
312   Double_t incidencephi   = ( 270 + fGeom->GetPHOSAngle(modid) ) * TMath::Pi() / 180. - rp.Phi() ;   
313
314   // get the detected direction
315   
316   TVector3 modifiedposition = MakePosition(kineticenergy, pos, incidencetheta, incidencephi) ; 
317   modifiedposition *= modifiedkineticenergy / modifiedposition.Mag() ; 
318
319   // Set the modified 4-momentum of the reconstructed particle
320
321   rp.SetMomentum(modifiedposition.X(), modifiedposition.Y(), modifiedposition.Z(), modifiedenergy) ; 
322
323  }
324
325 //____________________________________________________________________________
326 Int_t AliPHOSv4::MakeType(AliPHOSFastRecParticle & rp )
327 {
328   // Generate a particle type using the performance of the EMC+PPSD setup
329
330   Int_t rv =   AliPHOSFastRecParticle::kUNDEFINED ;
331   Int_t charge = (Int_t)rp.GetPDG()->Charge() ;
332   Int_t test ; 
333   Float_t ran ; 
334   if ( charge != 0 && ( TMath::Abs(rp.GetPdgCode()) != 11 ) ) 
335     test = - 1 ;
336   else
337     test = rp.GetPdgCode() ; 
338
339   switch (test) { 
340
341   case 22:    // it's a photon
342     ran = fRan.Rndm() ; 
343     if ( ran <= 0.5 )  // 50 % 
344       rv =  AliPHOSFastRecParticle::kGAMMA ; 
345     else {
346       ran = fRan.Rndm() ; 
347       if( ran <= 0.9498 )
348         rv =  AliPHOSFastRecParticle::kNEUTRALEM ; 
349       else
350         rv =  AliPHOSFastRecParticle::kNEUTRALHA ; 
351     }     
352     break ; 
353
354   case 2112:  // it's a neutron
355     ran = fRan.Rndm() ; 
356     if ( ran <= 0.9998 )
357       rv =  AliPHOSFastRecParticle::kNEUTRALHA ; 
358     else 
359       rv = AliPHOSFastRecParticle::kNEUTRALEM ; 
360     break ; 
361
362   case -2112: // it's a anti-neutron
363     ran = fRan.Rndm() ; 
364     if ( ran <= 0.9984 )
365       rv =  AliPHOSFastRecParticle::kNEUTRALHA ; 
366     else 
367       rv =  AliPHOSFastRecParticle::kNEUTRALEM ; 
368     break ; 
369     
370   case 11:    // it's a electron
371     ran = fRan.Rndm() ; 
372     if ( ran <= 0.9996 )
373       rv =  AliPHOSFastRecParticle::kELECTRON ; 
374     else 
375       rv =  AliPHOSFastRecParticle::kCHARGEDHA ; 
376     break; 
377
378   case -11:   // it's a positon
379     ran = fRan.Rndm() ; 
380     if ( ran <= 0.9996 )
381       rv =  AliPHOSFastRecParticle::kELECTRON ; 
382     else 
383       rv =  AliPHOSFastRecParticle::kCHARGEDHA ; 
384     break; 
385
386   case -1:    // it's a charged
387     ran = fRan.Rndm() ; 
388     if ( ran <= 0.9996 )
389       rv =  AliPHOSFastRecParticle::kCHARGEDHA ; 
390     else 
391       rv =  AliPHOSFastRecParticle::kGAMMA ; 
392
393     break ; 
394   }
395     
396   
397   return rv ;
398 }
399
400 //___________________________________________________________________________
401 void AliPHOSv4::ResetPoints()
402 {
403   // This overloads the method in AliDetector
404   
405   ResetFastRecParticles() ; 
406 }
407
408 //___________________________________________________________________________
409 void AliPHOSv4::ResetFastRecParticles()
410 {
411   // Resets the list of virtual reconstructed particles
412  
413   if (fFastRecParticles) 
414     fFastRecParticles->Clear() ;
415   fNRecParticles = 0 ; 
416 }
417
418 //___________________________________________________________________________
419 void AliPHOSv4::SetBigBox(Int_t index, Float_t value)
420 {
421   // Set the size of the Box describing a PHOS module
422   
423   switch (index) {
424   case 0:
425     fBigBoxX = value ; 
426     break ; 
427   case 1:
428     fBigBoxY = value ; 
429     break ; 
430   case 2:
431     fBigBoxZ = value ; 
432     break ; 
433  }
434
435 }
436
437 //____________________________________________________________________________
438 Double_t AliPHOSv4::SigmaE(Double_t energy)
439 {
440   // Calculates the energy dependent energy resolution
441   
442   Double_t rv = -1 ; 
443   
444   rv = TMath::Sqrt( TMath::Power(fResPara1/energy, 2) 
445                + TMath::Power(fResPara2/TMath::Sqrt(energy), 2) 
446                + TMath::Power(fResPara3, 2) ) ;  
447
448   return rv * energy ; 
449 }
450
451 //____________________________________________________________________________
452 Double_t AliPHOSv4::SigmaP(Double_t energy, Int_t incidence)
453 {
454   // Calculates the energy dependent position resolution 
455
456   Double_t paraA = fPosParaA0 + fPosParaA1 * incidence ; 
457   Double_t paraB = fPosParaB0 + fPosParaB1 * incidence + fPosParaB2 * incidence * incidence ; 
458
459   return ( paraA / TMath::Sqrt(energy) + paraB ) * 0.1   ; // in cm  
460 }
461
462 //____________________________________________________________________________
463 void AliPHOSv4::StepManager(void)
464 {
465   // Only verifies if the particle reaches PHOS and stops the tracking 
466   
467   Int_t primary =  gAlice->GetPrimary( gAlice->CurrentTrack() ); 
468   TLorentzVector lv ; 
469   gMC->TrackPosition(lv) ;
470   TVector3 pos = lv.Vect() ; 
471   Int_t modid  ; 
472   gMC->CurrentVolID(modid);
473   
474   // Makes a reconstructed particle from the primary particle
475
476   TClonesArray * particlelist = gAlice->Particles() ;
477   TParticle * part = (TParticle *)particlelist->At(primary) ;  
478
479   AliPHOSFastRecParticle rp(*part) ;
480   rp.SetPrimary(primary) ; 
481
482   // Adds the response of PHOS to the particle
483
484   MakeRecParticle(modid, pos, rp) ;
485   
486   // add the primary particle to the FastRecParticles list
487   
488   AddRecParticle(rp) ;
489
490   // stop the track as soon PHOS is reached
491   
492   gMC->StopTrack() ; 
493
494 }
495