]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCAL.cxx
1. Style modifications to clone PHOS
[u/mrichter/AliRoot.git] / EMCAL / AliEMCAL.cxx
CommitLineData
2012850d 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:
ffa6d63b 20// This class contains material definitions
21// for the EMCAL - It does not place the detector in Alice
2012850d 22//*-- Author: Yves Schutz (SUBATECH)
b13bbe81 23//
24//*-- Additional Contributions: Sahal Yacoob (LBNL/UCT)
25//
2012850d 26//////////////////////////////////////////////////////////////////////////////
27
2012850d 28// --- ROOT system ---
b13bbe81 29class TFile;
2012850d 30#include "TBranch.h"
31#include "TClonesArray.h"
32#include "TTree.h"
33
05a92d59 34// --- Standard library ---
35#include <strstream.h>
2012850d 36
05a92d59 37// --- AliRoot header files ---
2012850d 38#include "AliEMCAL.h"
2012850d 39#include "AliMC.h"
40#include "AliRun.h"
41#include "AliMagF.h"
05a92d59 42#include "AliEMCALGeometry.h"
43//#include "AliEMCALQAChecker.h"
2012850d 44
45ClassImp(AliEMCAL)
2012850d 46//____________________________________________________________________________
47AliEMCAL::AliEMCAL():AliDetector()
48{
05a92d59 49 // Default ctor
50 fName="EMCAL";
51 //fQATask = 0;
52 fTreeQA = 0;
2012850d 53}
05a92d59 54
2012850d 55//____________________________________________________________________________
05a92d59 56AliEMCAL::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;
2012850d 62}
05a92d59 63
2012850d 64//____________________________________________________________________________
05a92d59 65AliEMCAL::~AliEMCAL()
66{
67
2012850d 68}
69
70//____________________________________________________________________________
05a92d59 71void AliEMCAL::CreateMaterials()
72{
2012850d 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
b13bbe81 79
2012850d 80 // --- Lead ---
81 AliMaterial(1, "Pb$", 207.2, 82, 11.35, 0.56, 0., 0, 0) ;
82
b13bbe81 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
2012850d 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() ;
b13bbe81 104
105
2012850d 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
b13bbe81 116
117 // The scintillator of the CPV made of Polystyrene scintillator -> idtmed[1601]
118 AliMedium(2, "CPV scint. $", 2, 1,
61e0abb5 119 isxfld, sxmgmx, 10.0, 0.001, 0.1, 0.001, 0.001, 0, 0) ;
b13bbe81 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
2012850d 126
2012850d 127
b13bbe81 128// --- Set decent energy thresholds for gamma and electron tracking
2012850d 129
130 // Tracking threshold for photons and electrons in Lead
ffa6d63b 131 gMC->Gstpar(idtmed[1600],"CUTGAM",0.00008) ;
132 gMC->Gstpar(idtmed[1600],"CUTELE",0.001) ;
133 gMC->Gstpar(idtmed[1600],"BCUTE",0.0001) ;
2012850d 134
135 // --- Generate explicitly delta rays in Lead ---
136 gMC->Gstpar(idtmed[1600], "LOSS",3.) ;
137 gMC->Gstpar(idtmed[1600], "DRAY",1.) ;
05a92d59 138 gMC->Gstpar(idtmed[1600], "DCUTE",0.00001) ;
139 gMC->Gstpar(idtmed[1600], "DCUTM",0.00001) ;
140
b13bbe81 141// --- and in aluminium parts ---
142 gMC->Gstpar(idtmed[1602], "LOSS",3.) ;
143 gMC->Gstpar(idtmed[1602], "DRAY",1.) ;
05a92d59 144 gMC->Gstpar(idtmed[1602], "DCUTE",0.00001) ;
145 gMC->Gstpar(idtmed[1602], "DCUTM",0.00001) ;
b13bbe81 146
61e0abb5 147
ffa6d63b 148// --- and finally thresholds for photons and electrons in the scintillator ---
61e0abb5 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
2012850d 154}
05a92d59 155
156//____________________________________________________________________________
157AliEMCALGeometry * AliEMCAL::GetGeometry() const
158{
159 // gets the pointer to the AliEMCALGeometry unique instance
160
161 return AliEMCALGeometry::GetInstance(GetTitle(),"") ;
162
163}
164
2012850d 165//____________________________________________________________________________
166void 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 }
2012850d 179}
180
05a92d59 181//____________________________________________________________________________
182void 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}
2012850d 201