]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALv1.cxx
Correct a bug in StepManager when calculating the if from layer #
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv1.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 version v1 of EMCAL Manager class 
20 // An object of this class does not produce digits
21 // It is the one to use if you do want to produce outputs in TREEH 
22 //                  
23 //*-- Author: Sahal Yacoob (LBL /UCT)
24 //*--       : Jennifer Klay (LBL)
25
26 // This Class not stores information on all particles prior to EMCAL entry - in order to facilitate analysis.
27 // This is done by setting fIShunt =2, and flagging all parents of particles entering the EMCAL.
28
29 // 15/02/2002 .... Yves Schutz
30 //  1. fSamplingFraction and fLayerToPreshowerRatio have been removed
31 //  2. Timing signal is collected and added to hit
32
33 // --- ROOT system ---
34 #include "TParticle.h"
35 #include "TVirtualMC.h"
36
37 // --- Standard library ---
38
39 // --- AliRoot header files ---
40 #include "AliEMCALv1.h"
41 #include "AliEMCALHit.h"
42 #include "AliEMCALGeometry.h"
43 #include "AliRun.h"
44 #include "AliMC.h"
45
46 ClassImp(AliEMCALv1)
47
48
49 //______________________________________________________________________
50 AliEMCALv1::AliEMCALv1():AliEMCALv0(){
51   // ctor
52
53 }
54
55 //______________________________________________________________________
56 AliEMCALv1::AliEMCALv1(const char *name, const char *title):
57     AliEMCALv0(name,title){
58     // Standard Creator.
59
60     fHits= new TClonesArray("AliEMCALHit",1000);
61     gAlice->GetMCApp()->AddHitList(fHits);
62
63     fNhits = 0;
64     fIshunt     =  2; // All hits are associated with particles entering the calorimeter
65 }
66
67 //______________________________________________________________________
68 AliEMCALv1::~AliEMCALv1(){
69     // dtor
70
71     if ( fHits) {
72         fHits->Delete();
73         delete fHits;
74         fHits = 0;
75     }
76 }
77 //______________________________________________________________________
78 void AliEMCALv1::AddHit(Int_t shunt, Int_t primary, Int_t tracknumber, Int_t iparent, Float_t ienergy, 
79                         Int_t id, Float_t * hits,Float_t * p){
80     // Add a hit to the hit list.
81     // An EMCAL hit is the sum of all hits in a tower section (PRE, ECAL, HCAL) 
82     //   originating from the same entering particle 
83     Int_t hitCounter;
84     
85     AliEMCALHit *newHit;
86     AliEMCALHit *curHit;
87     Bool_t deja = kFALSE;
88
89     newHit = new AliEMCALHit(shunt, primary, tracknumber, iparent, ienergy, id, hits, p);
90     for ( hitCounter = fNhits-1; hitCounter >= 0 && !deja; hitCounter-- ) {
91         curHit = (AliEMCALHit*) (*fHits)[hitCounter];
92         // We add hits with the same tracknumber, while GEANT treats
93         // primaries succesively
94         if(curHit->GetPrimary() != primary) 
95           break;
96         if( *curHit == *newHit ) {
97             *curHit = *curHit + *newHit;
98             deja = kTRUE;
99         } // end if
100     } // end for hitCounter
101
102     if ( !deja ) {
103         new((*fHits)[fNhits]) AliEMCALHit(*newHit);
104         fNhits++;
105     } // end if
106
107     delete newHit;
108 }
109 //______________________________________________________________________
110 void AliEMCALv1::StepManager(void){
111   // Accumulates hits as long as the track stays in a tower
112
113   Int_t          id[2];           // (layer, phi, Eta) indices
114   // position wrt MRS and energy deposited
115   Float_t        xyzte[5]={0.,0.,0.,0.,0.};// position wrt MRS, time and energy deposited
116   Float_t        pmom[4]={0.,0.,0.,0.};
117   TLorentzVector pos; // Lorentz vector of the track current position.
118   TLorentzVector mom; // Lorentz vector of the track current momentum.
119   Int_t tracknumber =  gAlice->GetMCApp()->GetCurrentTrackNumber();
120   Int_t primary = 0;
121   static Int_t iparent = 0;
122   static Float_t ienergy = 0;
123   Int_t copy = 0;
124   
125   AliEMCALGeometry * geom = GetGeometry() ; 
126
127   if(gMC->IsTrackEntering() && (strcmp(gMC->CurrentVolName(),"XALU") == 0)){ // This Particle in enterring the Calorimeter
128     gMC->TrackPosition(pos) ;
129     xyzte[0] = pos[0] ;
130     xyzte[1] = pos[1] ;
131     xyzte[2] = pos[2] ;
132     if ( (xyzte[0]*xyzte[0] + xyzte[1]*xyzte[1])  
133          <  (geom->GetEnvelop(0)+geom->GetGap2Active()+1.5 )*(geom->GetEnvelop(0)+geom->GetGap2Active()+1.5 ) ) {
134       iparent = tracknumber;
135       gMC->TrackMomentum(mom);
136       ienergy = mom[3]; 
137       TParticle * part = 0 ;
138       Int_t parent = iparent ;
139       while ( parent != -1 ) { // <------------- flags this particle to be kept and
140         //all the ancestors of this particle
141         part = gAlice->GetMCApp()->Particle(parent) ;
142         part->SetBit(kKeepBit);
143         parent = part->GetFirstMother() ;
144       }
145     }
146   }
147   if(gMC->CurrentVolID(copy) == gMC->VolId("XPHI") ) { // We are in a Scintillator Layer 
148     
149     Float_t depositedEnergy ; 
150     
151     if( (depositedEnergy = gMC->Edep()) > 0.){// Track is inside a scintillator and deposits some energy
152      
153       gMC->TrackPosition(pos);
154       xyzte[0] = pos[0];
155       xyzte[1] = pos[1];
156       xyzte[2] = pos[2];
157       xyzte[3] = gMC->TrackTime() ;       
158       
159       gMC->TrackMomentum(mom);
160       pmom[0] = mom[0];
161       pmom[1] = mom[1];
162       pmom[2] = mom[2];
163       pmom[3] = mom[3];
164       
165       gMC->CurrentVolOffID(1, id[0]); // get the POLY copy number;
166       gMC->CurrentVolID(id[1]); // get the phi number inside the layer
167       
168       Int_t tower = (id[0]-1) % geom->GetNZ() + 1 + (id[1] - 1) * geom->GetNZ() ;  
169       Int_t layer = static_cast<Int_t>((id[0]-1)/(geom->GetNZ())) + 1 ; 
170       Int_t absid = tower ; 
171       if (layer <= geom->GetNPRLayers() )
172         absid += geom->GetNZ() * geom->GetNPhi() ;
173       else if (layer > geom->GetNECLayers() + geom->GetNPRLayers() )
174         absid += 2 * geom->GetNZ() * geom->GetNPhi() ;
175       else {
176         Int_t nlayers = geom->GetNPRLayers()+ geom->GetNECLayers()+ geom->GetNHCLayers() ;
177         if (layer > nlayers) 
178           Fatal("StepManager", "Wrong calculation of layer number: layer = %d > %d\n", layer, nlayers) ;
179       }
180         
181       Float_t lightYield =  depositedEnergy ;
182                                              ;
183       xyzte[4] = lightYield  ;
184    
185       primary = gAlice->GetMCApp()->GetPrimary(tracknumber);
186
187       if (gDebug == 2) 
188         Info("StepManager", "id0 = %d, id1 = %d, absid = %d tower = %d layer = %d energy = %f\n", id[0], id[1], absid, tower, layer, xyzte[4]) ;
189
190       AddHit(fIshunt, primary,tracknumber, iparent, ienergy, absid, xyzte, pmom);
191     } // there is deposited energy
192   }
193 }