]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCAL.cxx
Removed a mem leak by deleting curSDigit in Exec()
[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 "TBranch.h" 
31 #include "TClonesArray.h" 
32 #include "TTree.h" 
33
34 // --- Standard library ---
35 #include <strstream.h>
36
37 // --- AliRoot header files ---
38 #include "AliEMCAL.h"
39 #include "AliMC.h"
40 #include "AliRun.h"
41 #include "AliMagF.h"
42 #include "AliEMCALGeometry.h"
43 //#include "AliEMCALQAChecker.h" 
44
45 ClassImp(AliEMCAL)
46 //____________________________________________________________________________
47 AliEMCAL::AliEMCAL():AliDetector()
48 {
49   // Default ctor 
50   fName="EMCAL";
51   //fQATask = 0;
52   fTreeQA = 0;
53 }
54
55 //____________________________________________________________________________
56 AliEMCAL::AliEMCAL(const char* name, const char* title): AliDetector(name,title)
57 {
58   //   ctor : title is used to identify the layout
59   
60   //fQATask = 0;
61   fTreeQA = 0;
62 }
63
64 //____________________________________________________________________________
65 AliEMCAL::~AliEMCAL()
66 {
67
68 }
69
70 //____________________________________________________________________________
71 void AliEMCAL::CreateMaterials()
72 {
73   // Definitions of materials to build EMCAL and associated tracking media.
74   // media number in idtmed are 1599 to 1698.
75
76   // --- Air ---
77   AliMaterial(0, "Air$", 14.61, 7.3, 0.001205, 30420., 67500., 0, 0) ;
78
79
80   // --- Lead ---                                                                     
81   AliMaterial(1, "Pb$", 207.2, 82, 11.35, 0.56, 0., 0, 0) ;
82
83
84   // --- The polysterene scintillator (CH) ---
85   Float_t aP[2] = {12.011, 1.00794} ;
86   Float_t zP[2] = {6.0, 1.0} ;
87   Float_t wP[2] = {1.0, 1.0} ;
88   Float_t dP = 1.032 ;
89
90   AliMixture(2, "Polystyrene$", aP, zP, dP, -2, wP) ;
91
92   // --- Aluminium ---
93   AliMaterial(3, "Al$", 26.98, 13., 2.7, 8.9, 999., 0, 0) ;
94   // ---         Absorption length is ignored ^
95
96
97
98   // DEFINITION OF THE TRACKING MEDIA
99
100   // for EMCAL: idtmed[1599->1698] equivalent to fIdtmed[0->100]
101   Int_t * idtmed = fIdtmed->GetArray() - 1599 ; 
102   Int_t   isxfld = gAlice->Field()->Integ() ;
103   Float_t sxmgmx = gAlice->Field()->Max() ;
104  
105
106
107    // Air                                                                           -> idtmed[1599] 
108   AliMedium(0, "Air          $", 0, 0,
109              isxfld, sxmgmx, 10.0, 1.0, 0.1, 0.1, 10.0, 0, 0) ;
110
111   // The Lead                                                                       -> idtmed[1600]
112  
113   AliMedium(1, "Lead      $", 1, 0,
114              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
115
116  
117  // The scintillator of the CPV made of Polystyrene scintillator                   -> idtmed[1601]
118   AliMedium(2, "CPV scint.   $", 2, 1,
119             isxfld, sxmgmx, 10.0, 0.001, 0.1, 0.001, 0.001, 0, 0) ;
120
121   // Various Aluminium parts made of Al                                             -> idtmed[1602]
122   AliMedium(3, "Al parts     $", 3, 0,
123              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
124
125
126
127
128 // --- Set decent energy thresholds for gamma and electron tracking
129
130   // Tracking threshold for photons and electrons in Lead 
131   gMC->Gstpar(idtmed[1600],"CUTGAM",0.00008) ;
132   gMC->Gstpar(idtmed[1600],"CUTELE",0.001) ;
133   gMC->Gstpar(idtmed[1600],"BCUTE",0.0001) ;
134
135   // --- Generate explicitly delta rays in Lead ---
136   gMC->Gstpar(idtmed[1600], "LOSS",3.) ;
137   gMC->Gstpar(idtmed[1600], "DRAY",1.) ;
138   gMC->Gstpar(idtmed[1600], "DCUTE",0.00001) ;
139   gMC->Gstpar(idtmed[1600], "DCUTM",0.00001) ;
140
141 // --- and in aluminium parts ---
142   gMC->Gstpar(idtmed[1602], "LOSS",3.) ;
143   gMC->Gstpar(idtmed[1602], "DRAY",1.) ;
144   gMC->Gstpar(idtmed[1602], "DCUTE",0.00001) ;
145   gMC->Gstpar(idtmed[1602], "DCUTM",0.00001) ;
146
147
148 // --- and finally thresholds for photons and electrons in the scintillator ---
149   gMC->Gstpar(idtmed[1601],"CUTGAM",0.00008) ;
150   gMC->Gstpar(idtmed[1601],"CUTELE",0.001) ;
151   gMC->Gstpar(idtmed[1601],"BCUTE",0.0001) ;
152
153
154 }
155
156 //____________________________________________________________________________
157 AliEMCALGeometry * AliEMCAL::GetGeometry() const 
158 {  
159   // gets the pointer to the AliEMCALGeometry unique instance 
160   
161   return AliEMCALGeometry::GetInstance(GetTitle(),"") ;  
162
163 }
164
165 //____________________________________________________________________________
166 void AliEMCAL::SetTreeAddress()
167
168
169   TBranch *branch;
170   char branchname[20];
171   sprintf(branchname,"%s",GetName());
172   
173   // Branch address for hit tree
174   TTree *treeH = gAlice->TreeH();
175   if (treeH && fHits) {
176     branch = treeH->GetBranch(branchname);
177     if (branch) branch->SetAddress(&fHits);
178   }
179 }
180
181 //____________________________________________________________________________
182 void AliEMCAL::WriteQA()
183 {
184
185   // Make TreeQA in the output file. 
186
187   if(fTreeQA == 0)
188     fTreeQA = new TTree("TreeQA", "QA Alarms") ;    
189   // Create Alarms branches
190 //   Int_t bufferSize = 32000 ;    
191 //   Int_t splitlevel = 0 ; 
192 //   TFolder * alarmsF = (TFolder*)gROOT->FindObjectAny("Folders/Run/Conditions/QA/PHOS") ; 
193 //   TString branchName(alarmsF->GetName());  
194 //   TBranch * alarmsBranch = fTreeQA->Branch(branchName,"TFolder", &alarmsF, bufferSize, splitlevel);
195 //   TString branchTitle = branchName + " QA alarms" ; 
196 //   alarmsBranch->SetTitle(branchTitle);
197 //   alarmsBranch->Fill() ; 
198
199   //fTreeQA->Fill() ; 
200 }
201