]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCAL.cxx
0261c78e05776a0c71523b0b0caf4db660d2024a
[u/mrichter/AliRoot.git] / EMCAL / AliEMCAL.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 // Base Class for EMCAL description:
20 // This class contains material definitions    
21 // for the EMCAL - It does not place the detector in Alice
22 //*-- Author: Yves Schutz (SUBATECH) 
23 //
24 //*-- Additional Contributions: Sahal Yacoob (LBNL/UCT)
25 //
26 //////////////////////////////////////////////////////////////////////////////
27
28 // --- ROOT system ---
29 class TFile;
30 #include <TFolder.h> 
31 #include <TTree.h>
32 #include <TVirtualMC.h> 
33
34 // --- Standard library ---
35
36 // --- AliRoot header files ---
37 #include "AliMagF.h"
38 #include "AliESDCaloTrack.h" 
39 #include "AliESD.h"
40 #include "AliEMCAL.h"
41 #include "AliEMCALGetter.h"
42 #include "AliRun.h"
43 #include "AliEMCALSDigitizer.h"
44 #include "AliEMCALDigitizer.h"
45 #include "AliEMCALReconstructioner.h"
46
47 ClassImp(AliEMCAL)
48 //____________________________________________________________________________
49 AliEMCAL::AliEMCAL():AliDetector()
50 {
51   // Default ctor 
52   fName="EMCAL";
53   fGeom = 0 ; 
54 }
55
56 //____________________________________________________________________________
57 AliEMCAL::AliEMCAL(const char* name, const char* title): AliDetector(name,title)
58 {
59   //   ctor : title is used to identify the layout
60   fGeom = 0;
61 }
62
63 //____________________________________________________________________________
64 AliEMCAL::~AliEMCAL()
65 {
66
67 }
68
69 //____________________________________________________________________________
70 void AliEMCAL::Copy(AliEMCAL & emcal)
71 {
72   TObject::Copy(emcal) ; 
73 }
74
75 //____________________________________________________________________________
76 AliDigitizer* AliEMCAL::CreateDigitizer(AliRunDigitizer* manager) const
77 {
78   return new AliEMCALDigitizer(manager);
79 }
80
81 //____________________________________________________________________________
82 void AliEMCAL::CreateMaterials()
83 {
84   // Definitions of materials to build EMCAL and associated tracking media.
85   // media number in idtmed are 1599 to 1698.
86
87   // --- Air ---
88   AliMaterial(0, "Air$", 14.61, 7.3, 0.001205, 30420., 67500., 0, 0) ;
89
90
91   // --- Lead ---                                                                     
92   AliMaterial(1, "Pb$", 207.2, 82, 11.35, 0.56, 0., 0, 0) ;
93
94
95   // --- The polysterene scintillator (CH) ---
96   Float_t aP[2] = {12.011, 1.00794} ;
97   Float_t zP[2] = {6.0, 1.0} ;
98   Float_t wP[2] = {1.0, 1.0} ;
99   Float_t dP = 1.032 ;
100
101   AliMixture(2, "Polystyrene$", aP, zP, dP, -2, wP) ;
102
103   // --- Aluminium ---
104   AliMaterial(3, "Al$", 26.98, 13., 2.7, 8.9, 999., 0, 0) ;
105   // ---         Absorption length is ignored ^
106
107   // DEFINITION OF THE TRACKING MEDIA
108
109   // for EMCAL: idtmed[1599->1698] equivalent to fIdtmed[0->100]
110   Int_t * idtmed = fIdtmed->GetArray() - 1599 ; 
111   Int_t   isxfld = gAlice->Field()->Integ() ;
112   Float_t sxmgmx = gAlice->Field()->Max() ;
113  
114
115
116    // Air                                                                           -> idtmed[1599] 
117   AliMedium(0, "Air          $", 0, 0,
118              isxfld, sxmgmx, 10.0, 1.0, 0.1, 0.1, 10.0, 0, 0) ;
119
120   // The Lead                                                                      -> idtmed[1600]
121  
122   AliMedium(1, "Lead      $", 1, 0,
123              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
124
125  // The scintillator of the CPV made of Polystyrene scintillator                   -> idtmed[1601]
126   AliMedium(2, "CPV scint.   $", 2, 1,
127             isxfld, sxmgmx, 10.0, 0.001, 0.1, 0.001, 0.001, 0, 0) ;
128
129   // Various Aluminium parts made of Al                                            -> idtmed[1602]
130   AliMedium(3, "Al parts     $", 3, 0,
131              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
132
133
134 // --- Set decent energy thresholds for gamma and electron tracking
135
136   // Tracking threshold for photons and electrons in Lead 
137   gMC->Gstpar(idtmed[1600],"CUTGAM",0.00008) ;
138   gMC->Gstpar(idtmed[1600],"CUTELE",0.001) ;
139   gMC->Gstpar(idtmed[1600],"BCUTE",0.0001) ;
140
141   // --- Generate explicitly delta rays in Lead ---
142   gMC->Gstpar(idtmed[1600], "LOSS",3.) ;
143   gMC->Gstpar(idtmed[1600], "DRAY",1.) ;
144   gMC->Gstpar(idtmed[1600], "DCUTE",0.00001) ;
145   gMC->Gstpar(idtmed[1600], "DCUTM",0.00001) ;
146
147 // --- in aluminium parts ---
148   gMC->Gstpar(idtmed[1602], "LOSS",3.) ;
149   gMC->Gstpar(idtmed[1602], "DRAY",1.) ;
150   gMC->Gstpar(idtmed[1602], "DCUTE",0.00001) ;
151   gMC->Gstpar(idtmed[1602], "DCUTM",0.00001) ;
152
153 // --- and finally thresholds for photons and electrons in the scintillator ---
154   gMC->Gstpar(idtmed[1601],"CUTGAM",0.00008) ;
155   gMC->Gstpar(idtmed[1601],"CUTELE",0.001) ;
156   gMC->Gstpar(idtmed[1601],"BCUTE",0.0001) ;
157
158 }
159
160 //____________________________________________________________________________
161 void AliEMCAL::FillESD(AliESD* esd) const 
162 {
163   // Fill the ESD with all RecParticles
164   AliEMCALGetter *gime = AliEMCALGetter::Instance( (fLoader->GetRunLoader()->GetFileName()).Data() );
165   gime->Event(gime->EventNumber(), "P") ; 
166   TClonesArray *recParticles = gime->RecParticles();
167   Int_t nOfRecParticles = recParticles->GetEntries();
168   for (Int_t recpart=0; recpart<nOfRecParticles; recpart++) {
169     AliESDCaloTrack *ct = new AliESDCaloTrack((AliEMCALRecParticle*)recParticles->At(recpart));
170     esd->AddCaloTrack(ct);
171   }
172 }       
173
174
175 //____________________________________________________________________________
176 void AliEMCAL::Hits2SDigits()  
177
178 // create summable digits
179
180   AliEMCALSDigitizer* emcalDigitizer = 
181     new AliEMCALSDigitizer(fLoader->GetRunLoader()->GetFileName().Data()) ;
182   emcalDigitizer->SetEventRange(0, -1) ; // do all the events
183   emcalDigitizer->ExecuteTask() ;
184 }
185
186 //____________________________________________________________________________
187 void AliEMCAL::Reconstruct() const 
188
189   AliEMCALReconstructioner * rec = new AliEMCALReconstructioner((fLoader->GetRunLoader()->GetFileName()).Data()) ; 
190   rec->SetEventRange(0, -1) ; // do all the events  
191   rec->ExecuteTask() ; 
192 }
193
194 //____________________________________________________________________________
195 AliLoader* AliEMCAL::MakeLoader(const char* topfoldername)
196 {
197 //different behaviour than standard (singleton getter)
198 // --> to be discussed and made eventually coherent
199  fLoader = new AliEMCALLoader(GetName(),topfoldername);
200  return fLoader;
201 }
202
203 //____________________________________________________________________________
204 void AliEMCAL::SetTreeAddress()
205
206   // Linking Hits in Tree to Hits array
207   TBranch *branch;
208   char branchname[20];
209   sprintf(branchname,"%s",GetName());
210   
211   // Branch address for hit tree
212   TTree *treeH = TreeH();
213   if (treeH) {
214     branch = treeH->GetBranch(branchname);
215     if (branch) 
216       { 
217         if (fHits == 0x0) 
218           fHits= new TClonesArray("AliEMCALHit",1000);
219         branch->SetAddress(&fHits);
220       }
221     else
222       {
223         Warning("SetTreeAddress","<%s> Failed",GetName());
224       }
225   }
226 }
227
228
229
230
231