]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOS.cxx
04-mar-2005 NvE Installation scripts named amdgcclib.sh introduced in all /scripts...
[u/mrichter/AliRoot.git] / PHOS / AliPHOS.cxx
CommitLineData
4c039060 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 **************************************************************************/
b2a60966 15/* $Id$ */
16
d15a28e7 17//_________________________________________________________________________
b2a60966 18// Base Class for PHOS description:
19// PHOS consists of a PbWO4 calorimeter (EMCA) and a gazeous charged
20// particles detector (CPV or PPSD).
21// The only provided method here is CreateMaterials,
22// which defines the materials common to all PHOS versions.
23//
24//*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
d15a28e7 25//////////////////////////////////////////////////////////////////////////////
e84be1eb 26
fdeead01 27
fe4da5cc 28// --- ROOT system ---
2ab0c725 29class TFile;
88cb7938 30#include <TFolder.h>
88cb7938 31#include <TTree.h>
32#include <TVirtualMC.h>
046ae904 33#include <TH1F.h>
34#include <TF1.h>
e9a5efdf 35#include <TRandom.h>
fe4da5cc 36
37// --- Standard library ---
d15a28e7 38
548f0134 39// --- AliRoot header files ---
94de3818 40#include "AliMagF.h"
88cb7938 41#include "AliPHOS.h"
e9a5efdf 42#include "AliPHOSGetter.h"
85a5290f 43#include "AliRun.h"
44#include "AliPHOSDigitizer.h"
45#include "AliPHOSSDigitizer.h"
65792ca0 46#include "AliPHOSDigit.h"
47#include "AliAltroBuffer.h"
e4d04cf1 48#include "AliLog.h"
7f78a025 49
fe4da5cc 50ClassImp(AliPHOS)
e4d04cf1 51
52Double_t AliPHOS::fgCapa = 1.; // 1pF
53Int_t AliPHOS::fgOrder = 2 ;
54Double_t AliPHOS::fgTimeMax = 2.56E-5 ; // each sample is over 100 ns fTimeMax/fTimeBins
55Double_t AliPHOS::fgTimePeak = 4.1E-6 ; // 4 micro seconds
56Double_t AliPHOS::fgTimeTrigger = 100E-9 ; // 100ns, just for a reference
e4d04cf1 57
0ce0b56f 58//____________________________________________________________________________
046ae904 59 AliPHOS:: AliPHOS() : AliDetector()
6b87d0dd 60{
a532e9d8 61 // Default ctor
046ae904 62 fName = "PHOS" ;
3d60069b 63 fDebug = 0;
e4d04cf1 64
6b87d0dd 65}
fa7cce36 66
6b87d0dd 67//____________________________________________________________________________
046ae904 68AliPHOS::AliPHOS(const char* name, const char* title): AliDetector(name, title)
6b87d0dd 69{
a532e9d8 70 // ctor : title is used to identify the layout
71
046ae904 72 fDebug = 0 ;
e4d04cf1 73 fHighCharge = 8.2 ; // adjusted for a high gain range of 5.12 GeV (10 bits)
74 fHighGain = 6.64 ;
75 fHighLowGainFactor = 16. ; // adjusted for a low gain range of 82 GeV (10 bits)
76 fLowGainOffset = GetGeometry()->GetNModules() + 1 ;
77 // offset added to the module id to distinguish high and low gain data
6b87d0dd 78}
fa7cce36 79
0ce0b56f 80//____________________________________________________________________________
7b326aac 81AliPHOS::~AliPHOS()
82{
0ce0b56f 83}
84
780fda6d 85//____________________________________________________________________________
86void AliPHOS::Copy(AliPHOS & phos)
87{
7f78a025 88 // copy method to be used byy the cpy ctor
780fda6d 89 TObject::Copy(phos) ;
351dd634 90 phos.fHighCharge = fHighCharge ;
91 phos.fHighGain = fHighGain ;
92 phos.fHighLowGainFactor = fHighLowGainFactor ;
93 phos.fLowGainOffset = fLowGainOffset;
780fda6d 94}
95
487d23e3 96//____________________________________________________________________________
97AliDigitizer* AliPHOS::CreateDigitizer(AliRunDigitizer* manager) const
98{
99 return new AliPHOSDigitizer(manager);
100}
101
d15a28e7 102//____________________________________________________________________________
fe4da5cc 103void AliPHOS::CreateMaterials()
104{
b2a60966 105 // Definitions of materials to build PHOS and associated tracking media.
106 // media number in idtmed are 699 to 798.
fe4da5cc 107
d15a28e7 108 // --- The PbWO4 crystals ---
92862013 109 Float_t aX[3] = {207.19, 183.85, 16.0} ;
110 Float_t zX[3] = {82.0, 74.0, 8.0} ;
111 Float_t wX[3] = {1.0, 1.0, 4.0} ;
112 Float_t dX = 8.28 ;
fe4da5cc 113
92862013 114 AliMixture(0, "PbWO4$", aX, zX, dX, -3, wX) ;
fe4da5cc 115
fe4da5cc 116
d15a28e7 117 // --- The polysterene scintillator (CH) ---
92862013 118 Float_t aP[2] = {12.011, 1.00794} ;
119 Float_t zP[2] = {6.0, 1.0} ;
120 Float_t wP[2] = {1.0, 1.0} ;
121 Float_t dP = 1.032 ;
fe4da5cc 122
92862013 123 AliMixture(1, "Polystyrene$", aP, zP, dP, -2, wP) ;
fe4da5cc 124
d15a28e7 125 // --- Aluminium ---
126 AliMaterial(2, "Al$", 26.98, 13., 2.7, 8.9, 999., 0, 0) ;
127 // --- Absorption length is ignored ^
fe4da5cc 128
d15a28e7 129 // --- Tyvek (CnH2n) ---
92862013 130 Float_t aT[2] = {12.011, 1.00794} ;
131 Float_t zT[2] = {6.0, 1.0} ;
132 Float_t wT[2] = {1.0, 2.0} ;
133 Float_t dT = 0.331 ;
fe4da5cc 134
92862013 135 AliMixture(3, "Tyvek$", aT, zT, dT, -2, wT) ;
fe4da5cc 136
d15a28e7 137 // --- Polystyrene foam ---
92862013 138 Float_t aF[2] = {12.011, 1.00794} ;
139 Float_t zF[2] = {6.0, 1.0} ;
140 Float_t wF[2] = {1.0, 1.0} ;
141 Float_t dF = 0.12 ;
fe4da5cc 142
92862013 143 AliMixture(4, "Foam$", aF, zF, dF, -2, wF) ;
fe4da5cc 144
d15a28e7 145 // --- Titanium ---
92862013 146 Float_t aTIT[3] = {47.88, 26.98, 54.94} ;
147 Float_t zTIT[3] = {22.0, 13.0, 25.0} ;
148 Float_t wTIT[3] = {69.0, 6.0, 1.0} ;
149 Float_t dTIT = 4.5 ;
fe4da5cc 150
92862013 151 AliMixture(5, "Titanium$", aTIT, zTIT, dTIT, -3, wTIT);
fe4da5cc 152
d15a28e7 153 // --- Silicon ---
154 AliMaterial(6, "Si$", 28.0855, 14., 2.33, 9.36, 42.3, 0, 0) ;
fe4da5cc 155
fe4da5cc 156
fe4da5cc 157
d15a28e7 158 // --- Foam thermo insulation ---
92862013 159 Float_t aTI[2] = {12.011, 1.00794} ;
160 Float_t zTI[2] = {6.0, 1.0} ;
161 Float_t wTI[2] = {1.0, 1.0} ;
85218d13 162 Float_t dTI = 0.04 ;
fe4da5cc 163
92862013 164 AliMixture(7, "Thermo Insul.$", aTI, zTI, dTI, -2, wTI) ;
fe4da5cc 165
74e56d72 166 // --- Textolith ---
92862013 167 Float_t aTX[4] = {16.0, 28.09, 12.011, 1.00794} ;
168 Float_t zTX[4] = {8.0, 14.0, 6.0, 1.0} ;
169 Float_t wTX[4] = {292.0, 68.0, 462.0, 736.0} ;
170 Float_t dTX = 1.75 ;
fe4da5cc 171
92862013 172 AliMixture(8, "Textolit$", aTX, zTX, dTX, -4, wTX) ;
fe4da5cc 173
d15a28e7 174 //--- FR4 ---
74e56d72 175 Float_t aFR[4] = {16.0, 28.09, 12.011, 1.00794} ;
176 Float_t zFR[4] = {8.0, 14.0, 6.0, 1.0} ;
177 Float_t wFR[4] = {292.0, 68.0, 462.0, 736.0} ;
92862013 178 Float_t dFR = 1.8 ;
fe4da5cc 179
74e56d72 180 AliMixture(9, "FR4$", aFR, zFR, dFR, -4, wFR) ;
fe4da5cc 181
d15a28e7 182 // --- The Composite Material for micromegas (so far polyetylene) ---
92862013 183 Float_t aCM[2] = {12.01, 1.} ;
184 Float_t zCM[2] = {6., 1.} ;
185 Float_t wCM[2] = {1., 2.} ;
186 Float_t dCM = 0.935 ;
fe4da5cc 187
92862013 188 AliMixture(10, "Compo Mat$", aCM, zCM, dCM, -2, wCM) ;
fe4da5cc 189
d15a28e7 190 // --- Copper ---
191 AliMaterial(11, "Cu$", 63.546, 29, 8.96, 1.43, 14.8, 0, 0) ;
192
193 // --- G10 : Printed Circuit material ---
92862013 194 Float_t aG10[4] = { 12., 1., 16., 28.} ;
195 Float_t zG10[4] = { 6., 1., 8., 14.} ;
196 Float_t wG10[4] = { .259, .288, .248, .205} ;
197 Float_t dG10 = 1.7 ;
d15a28e7 198
92862013 199 AliMixture(12, "G10$", aG10, zG10, dG10, -4, wG10);
fe4da5cc 200
d15a28e7 201 // --- Lead ---
202 AliMaterial(13, "Pb$", 207.2, 82, 11.35, 0.56, 0., 0, 0) ;
fe4da5cc 203
d15a28e7 204 // --- The gas mixture ---
205 // Co2
92862013 206 Float_t aCO[2] = {12.0, 16.0} ;
207 Float_t zCO[2] = {6.0, 8.0} ;
208 Float_t wCO[2] = {1.0, 2.0} ;
209 Float_t dCO = 0.001977 ;
fe4da5cc 210
92862013 211 AliMixture(14, "CO2$", aCO, zCO, dCO, -2, wCO);
fe4da5cc 212
d15a28e7 213 // Ar
92862013 214 Float_t dAr = 0.001782 ;
215 AliMaterial(15, "Ar$", 39.948, 18.0, dAr, 14.0, 0., 0, 0) ;
d15a28e7 216
217 // ArCo2
00d6d986 218 Char_t namate[21]="";
92862013 219 Float_t aGM[2] ;
220 Float_t zGM[2] ;
221 Float_t wGM[2] ;
222 Float_t dGM ;
fe4da5cc 223
92862013 224 Float_t absL, radL, density ;
d15a28e7 225 Float_t buf[1] ;
226 Int_t nbuf ;
bc9ab547 227
92862013 228 gMC->Gfmate((*fIdmate)[15], namate, aGM[0], zGM[0], density, radL, absL, buf, nbuf) ; // Get properties of Ar
229 gMC->Gfmate((*fIdmate)[14], namate, aGM[1], zGM[1], density, radL, absL, buf, nbuf) ; // Get properties of CO2
bc9ab547 230
fe4da5cc 231
d15a28e7 232 // Create gas mixture
fe4da5cc 233
92862013 234 Float_t arContent = 0.80 ; // Ar-content of the Ar/CO2-mixture (80% / 20%)
d15a28e7 235
92862013 236 wGM[0] = arContent;
237 wGM[1] = 1. - arContent ;
238 dGM = wGM[0] * dAr + wGM[1] * dCO;
fe4da5cc 239
a7262d8e 240
92862013 241 AliMixture(16, "ArCO2$", aGM, zGM, dGM, 2, wGM) ;
fe4da5cc 242
a530ba0a 243 // --- Stainless steel (let it be pure iron) ---
244 AliMaterial(17, "Steel$", 55.845, 26, 7.87, 1.76, 0., 0, 0) ;
85218d13 245
246
247 // --- Fiberglass ---
248 Float_t aFG[4] = {16.0, 28.09, 12.011, 1.00794} ;
249 Float_t zFG[4] = {8.0, 14.0, 6.0, 1.0} ;
250 Float_t wFG[4] = {292.0, 68.0, 462.0, 736.0} ;
251 Float_t dFG = 1.9 ;
252
253 AliMixture(18, "Fibergla$", aFG, zFG, dFG, -4, wFG) ;
254
255 // --- Cables in Air box ---
256 // SERVICES
257
258 Float_t aCA[4] = { 1.,12.,55.8,63.5 };
259 Float_t zCA[4] = { 1.,6.,26.,29. };
260 Float_t wCA[4] = { .014,.086,.42,.48 };
261 Float_t dCA = 0.8 ; //this density is raw estimation, if you know better - correct
262
263 AliMixture(19, "Cables $", aCA, zCA, dCA, -4, wCA) ;
264
265
d15a28e7 266 // --- Air ---
a7262d8e 267 Float_t aAir[4]={12.0107,14.0067,15.9994,39.948};
268 Float_t zAir[4]={6.,7.,8.,18.};
269 Float_t wAir[4]={0.000124,0.755267,0.231781,0.012827};
270 Float_t dAir = 1.20479E-3;
d15a28e7 271
a7262d8e 272 AliMixture(99, "Air$", aAir, zAir, dAir, 4, wAir) ;
273
d15a28e7 274 // DEFINITION OF THE TRACKING MEDIA
fe4da5cc 275
d15a28e7 276 // for PHOS: idtmed[699->798] equivalent to fIdtmed[0->100]
277 Int_t * idtmed = fIdtmed->GetArray() - 699 ;
92862013 278 Int_t isxfld = gAlice->Field()->Integ() ;
279 Float_t sxmgmx = gAlice->Field()->Max() ;
fe4da5cc 280
d15a28e7 281 // The scintillator of the calorimeter made of PBW04 -> idtmed[699]
282 AliMedium(0, "PHOS Xtal $", 0, 1,
92862013 283 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 284
d15a28e7 285 // The scintillator of the CPV made of Polystyrene scintillator -> idtmed[700]
286 AliMedium(1, "CPV scint. $", 1, 1,
92862013 287 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 288
d15a28e7 289 // Various Aluminium parts made of Al -> idtmed[701]
290 AliMedium(2, "Al parts $", 2, 0,
92862013 291 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
fe4da5cc 292
d15a28e7 293 // The Tywek which wraps the calorimeter crystals -> idtmed[702]
294 AliMedium(3, "Tyvek wrapper$", 3, 0,
92862013 295 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
fe4da5cc 296
d15a28e7 297 // The Polystyrene foam around the calorimeter module -> idtmed[703]
298 AliMedium(4, "Polyst. foam $", 4, 0,
92862013 299 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 300
d15a28e7 301 // The Titanium around the calorimeter crystal -> idtmed[704]
302 AliMedium(5, "Titan. cover $", 5, 0,
92862013 303 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.0001, 0.0001, 0, 0) ;
fe4da5cc 304
d15a28e7 305 // The Silicon of the pin diode to read out the calorimeter crystal -> idtmed[705]
306 AliMedium(6, "Si PIN $", 6, 0,
7b326aac 307 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.01, 0.01, 0, 0) ;
fe4da5cc 308
d15a28e7 309 // The thermo insulating material of the box which contains the calorimeter module -> idtmed[706]
310 AliMedium(7, "Thermo Insul.$", 7, 0,
92862013 311 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 312
d15a28e7 313 // The Textolit which makes up the box which contains the calorimeter module -> idtmed[707]
314 AliMedium(8, "Textolit $", 8, 0,
92862013 315 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 316
d15a28e7 317 // FR4: The Plastic which makes up the frame of micromegas -> idtmed[708]
318 AliMedium(9, "FR4 $", 9, 0,
92862013 319 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.0001, 0, 0) ;
fe4da5cc 320
fe4da5cc 321
d15a28e7 322 // The Composite Material for micromegas -> idtmed[709]
323 AliMedium(10, "CompoMat $", 10, 0,
92862013 324 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 325
d15a28e7 326 // Copper -> idtmed[710]
327 AliMedium(11, "Copper $", 11, 0,
92862013 328 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.0001, 0, 0) ;
fe4da5cc 329
d15a28e7 330 // G10: Printed Circuit material -> idtmed[711]
331
332 AliMedium(12, "G10 $", 12, 0,
92862013 333 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.01, 0, 0) ;
fe4da5cc 334
d15a28e7 335 // The Lead -> idtmed[712]
336
337 AliMedium(13, "Lead $", 13, 0,
92862013 338 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
fe4da5cc 339
d15a28e7 340 // The gas mixture: ArCo2 -> idtmed[715]
341
342 AliMedium(16, "ArCo2 $", 16, 1,
92862013 343 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.01, 0, 0) ;
d15a28e7 344
a530ba0a 345 // Stainless steel -> idtmed[716]
346 AliMedium(17, "Steel $", 17, 0,
347 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.0001, 0, 0) ;
348
85218d13 349 // Fibergalss -> idtmed[717]
350 AliMedium(18, "Fiberglass$", 18, 0,
351 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
352
353 // Cables in air -> idtmed[718]
354 AliMedium(19, "Cables $", 19, 0,
355 isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
356
d15a28e7 357 // Air -> idtmed[798]
358 AliMedium(99, "Air $", 99, 0,
92862013 359 isxfld, sxmgmx, 10.0, 1.0, 0.1, 0.1, 10.0, 0, 0) ;
fe4da5cc 360
d15a28e7 361 // --- Set decent energy thresholds for gamma and electron tracking
fe4da5cc 362
d15a28e7 363 // Tracking threshold for photons and electrons in the scintillator crystal
364 gMC->Gstpar(idtmed[699], "CUTGAM",0.5E-4) ;
365 gMC->Gstpar(idtmed[699], "CUTELE",1.0E-4) ;
9f616d61 366
d15a28e7 367 // --- Generate explicitly delta rays in the titan cover ---
368 gMC->Gstpar(idtmed[704], "LOSS",3.) ;
369 gMC->Gstpar(idtmed[704], "DRAY",1.) ;
d15a28e7 370 // --- and in aluminium parts ---
371 gMC->Gstpar(idtmed[701], "LOSS",3.) ;
372 gMC->Gstpar(idtmed[701], "DRAY",1.) ;
92862013 373 // --- and in PIN diode
374 gMC->Gstpar(idtmed[705], "LOSS",3) ;
375 gMC->Gstpar(idtmed[705], "DRAY",1) ;
376 // --- and in the passive convertor
377 gMC->Gstpar(idtmed[712], "LOSS",3) ;
378 gMC->Gstpar(idtmed[712], "DRAY",1) ;
379 // Tracking threshold for photons and electrons in the gas ArC02
b7101219 380 gMC->Gstpar(idtmed[715], "CUTGAM",1.E-5) ;
381 gMC->Gstpar(idtmed[715], "CUTELE",1.E-5) ;
382 gMC->Gstpar(idtmed[715], "CUTNEU",1.E-5) ;
383 gMC->Gstpar(idtmed[715], "CUTHAD",1.E-5) ;
384 gMC->Gstpar(idtmed[715], "CUTMUO",1.E-5) ;
385 gMC->Gstpar(idtmed[715], "BCUTE",1.E-5) ;
386 gMC->Gstpar(idtmed[715], "BCUTM",1.E-5) ;
387 gMC->Gstpar(idtmed[715], "DCUTE",1.E-5) ;
388 gMC->Gstpar(idtmed[715], "DCUTM",1.E-5) ;
389 gMC->Gstpar(idtmed[715], "PPCUTM",1.E-5) ;
9f616d61 390 gMC->Gstpar(idtmed[715], "LOSS",2.) ;
391 gMC->Gstpar(idtmed[715], "DRAY",0.) ;
392 gMC->Gstpar(idtmed[715], "STRA",2.) ;
393
0c409cb2 394}
a532e9d8 395
65792ca0 396//____________________________________________________________________________
397void AliPHOS::Digits2Raw()
398{
399// convert digits of the current event to raw data
e4d04cf1 400
401 AliPHOSLoader * loader = dynamic_cast<AliPHOSLoader*>(fLoader) ;
65792ca0 402
403 // get the digits
e4d04cf1 404 loader->LoadDigits();
405 TClonesArray* digits = loader->Digits() ;
e9a5efdf 406
65792ca0 407 if (!digits) {
351dd634 408 AliError(Form("No digits found !"));
65792ca0 409 return;
410 }
411
e4d04cf1 412 // get the digitizer
413 loader->LoadDigitizer();
414 AliPHOSDigitizer * digitizer = dynamic_cast<AliPHOSDigitizer *>(loader->Digitizer()) ;
415
65792ca0 416 // get the geometry
e4d04cf1 417 AliPHOSGeometry* geom = GetGeometry();
65792ca0 418 if (!geom) {
351dd634 419 AliError(Form("No geometry found !"));
65792ca0 420 return;
421 }
422
423 // some digitization constants
046ae904 424 const Int_t kDDLOffset = 0x600; // assigned to PHOS
e4d04cf1 425 const Int_t kThreshold = 1; // skip digits below this threshold
65792ca0 426
427 AliAltroBuffer* buffer = NULL;
428 Int_t prevDDL = -1;
046ae904 429 Int_t adcValuesLow[fkTimeBins];
430 Int_t adcValuesHigh[fkTimeBins];
65792ca0 431
432 // loop over digits (assume ordered digits)
433 for (Int_t iDigit = 0; iDigit < digits->GetEntries(); iDigit++) {
e4d04cf1 434 AliPHOSDigit* digit = dynamic_cast<AliPHOSDigit *>(digits->At(iDigit)) ;
e9a5efdf 435 if (digit->GetAmp() < kThreshold)
436 continue;
65792ca0 437 Int_t relId[4];
438 geom->AbsToRelNumbering(digit->GetId(), relId);
439 Int_t module = relId[0];
e9a5efdf 440
441 // Begin FIXME
442 if (relId[1] != 0)
443 continue; // ignore digits from CPV
444 // End FIXME
445
446 // PHOS EMCA has 4 DDL per module. Splitting is done based on the row number
65792ca0 447 Int_t iDDL = 4 * (module - 1) + (4 * (relId[2] - 1)) / geom->GetNPhi();
448
449 // new DDL
450 if (iDDL != prevDDL) {
451 // write real header and close previous file
452 if (buffer) {
453 buffer->Flush();
454 buffer->WriteDataHeader(kFALSE, kFALSE);
455 delete buffer;
456 }
457
458 // open new file and write dummy header
e9a5efdf 459 TString fileName("PHOS_") ;
460 fileName += (iDDL + kDDLOffset) ;
461 fileName += ".ddl" ;
462 buffer = new AliAltroBuffer(fileName.Data(), 1);
65792ca0 463 buffer->WriteDataHeader(kTRUE, kFALSE); //Dummy;
464
465 prevDDL = iDDL;
466 }
467
468 // out of time range signal (?)
e4d04cf1 469 if (digit->GetTimeR() > GetRawFormatTimeMax() ) {
65792ca0 470 buffer->FillBuffer(digit->GetAmp());
e4d04cf1 471 buffer->FillBuffer(GetRawFormatTimeBins() ); // time bin
472 buffer->FillBuffer(3); // bunch length
65792ca0 473 buffer->WriteTrailer(3, relId[3], relId[2], module); // trailer
474
e4d04cf1 475 // calculate the time response function
65792ca0 476 } else {
e4d04cf1 477 Double_t energy = 0 ;
478 if ( digit->GetId() <= geom->GetNModules() * geom->GetNCristalsInModule())
479 energy = digit->GetAmp() * digitizer->GetEMCchannel() + digitizer->GetEMCpedestal() ;
480 else
481 energy = digit->GetAmp() * digitizer->GetCPVchannel() + digitizer->GetCPVpedestal() ;
482
addad4c9 483 Bool_t lowgain = RawSampledResponse(digit->GetTimeR(), energy, adcValuesHigh, adcValuesLow) ;
046ae904 484
addad4c9 485 if (lowgain)
486 buffer->WriteChannel(relId[3], relId[2], module + fLowGainOffset,
e4d04cf1 487 GetRawFormatTimeBins(), adcValuesLow, kThreshold);
addad4c9 488 else
489 buffer->WriteChannel(relId[3], relId[2], module,
490 GetRawFormatTimeBins(), adcValuesHigh, kThreshold);
491
65792ca0 492 }
493 }
046ae904 494
65792ca0 495 // write real header and close last file
496 if (buffer) {
497 buffer->Flush();
498 buffer->WriteDataHeader(kFALSE, kFALSE);
499 delete buffer;
500 }
046ae904 501
e4d04cf1 502 loader->UnloadDigits();
e9a5efdf 503}
504
505//____________________________________________________________________________
506void AliPHOS::Hits2SDigits()
507{
508// create summable digits
509
a1952ef7 510 AliPHOSSDigitizer phosDigitizer(fLoader->GetRunLoader()->GetFileName().Data()) ;
511 phosDigitizer.SetEventRange(0, -1) ; // do all the events
512 phosDigitizer.ExecuteTask("all") ;
e9a5efdf 513}
514
515//____________________________________________________________________________
516AliLoader* AliPHOS::MakeLoader(const char* topfoldername)
517{
518//different behaviour than standard (singleton getter)
519// --> to be discussed and made eventually coherent
520 fLoader = new AliPHOSLoader(GetName(),topfoldername);
521 return fLoader;
522}
523
046ae904 524//__________________________________________________________________
e4d04cf1 525Double_t AliPHOS::RawResponseFunction(Double_t *x, Double_t *par)
046ae904 526{
527 // Shape of the electronics raw reponse:
e4d04cf1 528 // It is a semi-gaussian, 2nd order Gamma function of the general form
529 // v(t) = n**n * Q * A**n / C *(t/tp)**n * exp(-n * t/tp) with
530 // tp : peaking time par[0]
531 // n : order of the function
532 // C : integrating capacitor in the preamplifier
533 // A : open loop gain of the preamplifier
534 // Q : the total APD charge to be measured Q = C * energy
046ae904 535
e4d04cf1 536 Double_t signal ;
537 Double_t xx = x[0] - ( fgTimeTrigger + par[3] ) ;
538
539 if (xx < 0 || xx > fgTimeMax)
540 signal = 0. ;
541 else {
542 Double_t fac = par[0] * TMath::Power(fgOrder, fgOrder) * TMath::Power(par[1], fgOrder) / fgCapa ;
543 signal = fac * par[2] * TMath::Power(xx / fgTimePeak, fgOrder) * TMath::Exp(-fgOrder * (xx / fgTimePeak)) ;
544 }
545 return signal ;
546}
547
548//__________________________________________________________________
549Double_t AliPHOS::RawResponseFunctionMax(Double_t charge, Double_t gain)
550{
551 return ( charge * TMath::Power(fgOrder, fgOrder) * TMath::Power(gain, fgOrder)
552 / ( fgCapa * TMath::Exp(fgOrder) ) );
553
046ae904 554}
555
556//__________________________________________________________________
e4d04cf1 557Bool_t AliPHOS::RawSampledResponse(const Double_t dtime, const Double_t damp, Int_t * adcH, Int_t * adcL) const
046ae904 558{
559 // for a start time dtime and an amplitude damp given by digit,
e4d04cf1 560 // calculates the raw sampled response AliPHOS::RawResponseFunction
046ae904 561
562 const Int_t kRawSignalOverflow = 0x3FF ;
e4d04cf1 563 Bool_t lowGain = kFALSE ;
564
565 TF1 signalF("signal", RawResponseFunction, 0, GetRawFormatTimeMax(), 4);
566
567 for (Int_t iTime = 0; iTime < GetRawFormatTimeBins(); iTime++) {
568 signalF.SetParameter(0, GetRawFormatHighCharge() ) ;
569 signalF.SetParameter(1, GetRawFormatHighGain() ) ;
570 signalF.SetParameter(2, damp) ;
571 signalF.SetParameter(3, dtime) ;
572 Double_t time = iTime * GetRawFormatTimeMax() / GetRawFormatTimeBins() ;
573 Double_t signal = signalF.Eval(time) ;
574 if ( static_cast<Int_t>(signal+0.5) > kRawSignalOverflow ){ // larger than 10 bits
575 signal = kRawSignalOverflow ;
576 lowGain = kTRUE ;
577 }
578 adcH[iTime] = static_cast<Int_t>(signal + 0.5) ;
579
580 signalF.SetParameter(0, GetRawFormatLowCharge() ) ;
581 signalF.SetParameter(1, GetRawFormatLowGain() ) ;
582 signal = signalF.Eval(time) ;
583 if ( static_cast<Int_t>(signal+0.5) > kRawSignalOverflow) // larger than 10 bits
584 signal = kRawSignalOverflow ;
585 adcL[iTime] = static_cast<Int_t>(0.5 + signal ) ;
586
046ae904 587 }
e4d04cf1 588 return lowGain ;
046ae904 589}
590
e9a5efdf 591//____________________________________________________________________________
592void AliPHOS::SetTreeAddress()
593{
594 // Links Hits in the Tree to Hits array
595 TBranch *branch;
596 char branchname[20];
597 sprintf(branchname,"%s",GetName());
e9a5efdf 598 // Branch address for hit tree
351dd634 599 TTree *treeH = TreeH();
e9a5efdf 600 if (treeH) {
601 branch = treeH->GetBranch(branchname);
602 if (branch)
603 {
604 if (fHits == 0x0) fHits= new TClonesArray("AliPHOSHit",1000);
351dd634 605 //AliInfo(Form("<%s> Setting Hits Address",GetName()));
e9a5efdf 606 branch->SetAddress(&fHits);
607 }
608 }
609}
610