]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOS.cxx
Removed the QA checker mechanism
[u/mrichter/AliRoot.git] / PHOS / AliPHOS.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 /* $Id$ */
16
17 //_________________________________________________________________________
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) 
25 //////////////////////////////////////////////////////////////////////////////
26
27
28 // --- ROOT system ---
29 class TFile;
30 #include <TFolder.h> 
31 #include <TTree.h>
32 #include <TVirtualMC.h> 
33 #include <TH1F.h> 
34 #include <TF1.h> 
35 #include <TRandom.h> 
36
37 // --- Standard library ---
38
39 // --- AliRoot header files ---
40 #include "AliMagF.h"
41 #include "AliPHOS.h"
42 #include "AliPHOSGetter.h"
43 #include "AliRun.h"
44 #include "AliPHOSDigitizer.h"
45 #include "AliPHOSSDigitizer.h"
46 #include "AliPHOSDigit.h"
47 #include "AliAltroBuffer.h"
48 #include "AliLog.h"
49
50 ClassImp(AliPHOS)
51
52 Double_t AliPHOS::fgCapa        = 1.;        // 1pF 
53 Int_t    AliPHOS::fgOrder       = 2 ;
54 Double_t AliPHOS::fgTimeMax     = 2.56E-5 ;  // each sample is over 100 ns fTimeMax/fTimeBins
55 Double_t AliPHOS::fgTimePeak    = 4.1E-6 ;   // 4 micro seconds
56 Double_t AliPHOS::fgTimeTrigger = 100E-9 ;      // 100ns, just for a reference
57
58 //____________________________________________________________________________
59   AliPHOS:: AliPHOS() : AliDetector()
60 {
61   // Default ctor
62   fName   = "PHOS" ;
63   fDebug  = 0; 
64
65 }
66
67 //____________________________________________________________________________
68 AliPHOS::AliPHOS(const char* name, const char* title): AliDetector(name, title)
69 {
70   //   ctor : title is used to identify the layout
71   
72   fDebug  = 0 ; 
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
78 }
79
80 //____________________________________________________________________________
81 AliPHOS::~AliPHOS() 
82 {  
83 }
84
85 //____________________________________________________________________________
86 void AliPHOS::Copy(AliPHOS & phos)
87 {
88   // copy method to be used byy the cpy ctor
89   TObject::Copy(phos) ; 
90   phos.fHighCharge        = fHighCharge ;
91   phos.fHighGain          = fHighGain ; 
92   phos.fHighLowGainFactor = fHighLowGainFactor ;  
93   phos.fLowGainOffset     = fLowGainOffset;   
94 }
95
96 //____________________________________________________________________________
97 AliDigitizer* AliPHOS::CreateDigitizer(AliRunDigitizer* manager) const
98 {
99   return new AliPHOSDigitizer(manager);
100 }
101
102 //____________________________________________________________________________
103 void AliPHOS::CreateMaterials()
104 {
105   // Definitions of materials to build PHOS and associated tracking media.
106   // media number in idtmed are 699 to 798.
107
108   // --- The PbWO4 crystals ---
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 ;
113
114   AliMixture(0, "PbWO4$", aX, zX, dX, -3, wX) ;
115
116
117   // --- The polysterene scintillator (CH) ---
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 ;
122
123   AliMixture(1, "Polystyrene$", aP, zP, dP, -2, wP) ;
124
125   // --- Aluminium ---
126   AliMaterial(2, "Al$", 26.98, 13., 2.7, 8.9, 999., 0, 0) ;
127   // ---         Absorption length is ignored ^
128
129  // --- Tyvek (CnH2n) ---
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 ;
134
135   AliMixture(3, "Tyvek$", aT, zT, dT, -2, wT) ;
136
137   // --- Polystyrene foam ---
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 ;
142
143   AliMixture(4, "Foam$", aF, zF, dF, -2, wF) ;
144
145  // --- Titanium ---
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 ;
150
151   AliMixture(5, "Titanium$", aTIT, zTIT, dTIT, -3, wTIT);
152
153  // --- Silicon ---
154   AliMaterial(6, "Si$", 28.0855, 14., 2.33, 9.36, 42.3, 0, 0) ;
155
156
157
158   // --- Foam thermo insulation ---
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} ;
162   Float_t dTI = 0.04 ;
163
164   AliMixture(7, "Thermo Insul.$", aTI, zTI, dTI, -2, wTI) ;
165
166   // --- Textolith ---
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 ;
171
172   AliMixture(8, "Textolit$", aTX, zTX, dTX, -4, wTX) ;
173
174   //--- FR4  ---
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} ;
178   Float_t dFR = 1.8 ; 
179
180   AliMixture(9, "FR4$", aFR, zFR, dFR, -4, wFR) ;
181
182   // --- The Composite Material for  micromegas (so far polyetylene) ---                                       
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 ; 
187
188   AliMixture(10, "Compo Mat$", aCM, zCM, dCM, -2, wCM) ;
189
190   // --- Copper ---                                                                    
191   AliMaterial(11, "Cu$", 63.546, 29, 8.96, 1.43, 14.8, 0, 0) ;
192  
193   // --- G10 : Printed Circuit material ---                                                  
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 ;
198   
199   AliMixture(12, "G10$", aG10, zG10, dG10, -4, wG10);
200
201   // --- Lead ---                                                                     
202   AliMaterial(13, "Pb$", 207.2, 82, 11.35, 0.56, 0., 0, 0) ;
203
204  // --- The gas mixture ---                                                                
205  // Co2
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 ; 
210
211   AliMixture(14, "CO2$", aCO, zCO, dCO, -2, wCO);
212
213  // Ar
214   Float_t dAr = 0.001782 ; 
215   AliMaterial(15, "Ar$", 39.948, 18.0, dAr, 14.0, 0., 0, 0) ;   
216  
217  // ArCo2
218   Char_t namate[21]="";
219   Float_t aGM[2] ; 
220   Float_t zGM[2] ; 
221   Float_t wGM[2] ; 
222   Float_t dGM ; 
223
224   Float_t absL, radL, density ;
225   Float_t buf[1] ;
226   Int_t nbuf ;
227
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 
230
231
232   // Create gas mixture 
233
234   Float_t arContent    = 0.80 ;  // Ar-content of the Ar/CO2-mixture (80% / 20%) 
235  
236   wGM[0] = arContent;
237   wGM[1] = 1. - arContent ;
238   dGM    = wGM[0] * dAr + wGM[1] * dCO;
239
240   
241   AliMixture(16, "ArCO2$", aGM, zGM, dGM,  2, wGM) ;
242
243   // --- Stainless steel (let it be pure iron) ---
244   AliMaterial(17, "Steel$", 55.845, 26, 7.87, 1.76, 0., 0, 0) ;
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
266   // --- Air ---
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;
271  
272   AliMixture(99, "Air$", aAir, zAir, dAir, 4, wAir) ;
273
274   // DEFINITION OF THE TRACKING MEDIA
275
276   // for PHOS: idtmed[699->798] equivalent to fIdtmed[0->100]
277   Int_t * idtmed = fIdtmed->GetArray() - 699 ; 
278   Int_t   isxfld = gAlice->Field()->Integ() ;
279   Float_t sxmgmx = gAlice->Field()->Max() ;
280
281   // The scintillator of the calorimeter made of PBW04                              -> idtmed[699]
282   AliMedium(0, "PHOS Xtal    $", 0, 1,
283             isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
284
285   // The scintillator of the CPV made of Polystyrene scintillator                   -> idtmed[700]
286   AliMedium(1, "CPV scint.   $", 1, 1,
287             isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
288
289   // Various Aluminium parts made of Al                                             -> idtmed[701]
290   AliMedium(2, "Al parts     $", 2, 0,
291              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
292
293   // The Tywek which wraps the calorimeter crystals                                 -> idtmed[702]
294   AliMedium(3, "Tyvek wrapper$", 3, 0,
295              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.001, 0.001, 0, 0) ;
296
297   // The Polystyrene foam around the calorimeter module                             -> idtmed[703]
298   AliMedium(4, "Polyst. foam $", 4, 0,
299              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
300
301   // The Titanium around the calorimeter crystal                                    -> idtmed[704]
302   AliMedium(5, "Titan. cover $", 5, 0,
303              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.0001, 0.0001, 0, 0) ;
304
305   // The Silicon of the pin diode to read out the calorimeter crystal               -> idtmed[705] 
306  AliMedium(6, "Si PIN       $", 6, 0,
307              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.01, 0.01, 0, 0) ;
308
309  // The thermo insulating material of the box which contains the calorimeter module -> idtmed[706]
310   AliMedium(7, "Thermo Insul.$", 7, 0,
311              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
312
313   // The Textolit which makes up the box which contains the calorimeter module      -> idtmed[707]
314   AliMedium(8, "Textolit     $", 8, 0,
315              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
316
317   // FR4: The Plastic which makes up the frame of micromegas                        -> idtmed[708]
318   AliMedium(9, "FR4 $", 9, 0,
319              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.0001, 0, 0) ; 
320
321
322   // The Composite Material for  micromegas                                         -> idtmed[709]
323   AliMedium(10, "CompoMat   $", 10, 0,
324              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
325
326   // Copper                                                                         -> idtmed[710]
327   AliMedium(11, "Copper     $", 11, 0,
328              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.0001, 0, 0) ;
329
330   // G10: Printed Circuit material                                                  -> idtmed[711]
331  
332   AliMedium(12, "G10        $", 12, 0,
333              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.01, 0, 0) ;
334
335   // The Lead                                                                       -> idtmed[712]
336  
337   AliMedium(13, "Lead      $", 13, 0,
338              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.1, 0, 0) ;
339
340   // The gas mixture: ArCo2                                                         -> idtmed[715]
341  
342   AliMedium(16, "ArCo2      $", 16, 1,
343              isxfld, sxmgmx, 10.0, 0.1, 0.1, 0.1, 0.01, 0, 0) ;
344  
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
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
357   // Air                                                                            -> idtmed[798] 
358   AliMedium(99, "Air          $", 99, 0,
359              isxfld, sxmgmx, 10.0, 1.0, 0.1, 0.1, 10.0, 0, 0) ;
360
361   // --- Set decent energy thresholds for gamma and electron tracking
362
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) ;
366  
367   // --- Generate explicitly delta rays in the titan cover ---
368   gMC->Gstpar(idtmed[704], "LOSS",3.) ;
369   gMC->Gstpar(idtmed[704], "DRAY",1.) ;
370   // --- and in aluminium parts ---
371   gMC->Gstpar(idtmed[701], "LOSS",3.) ;
372   gMC->Gstpar(idtmed[701], "DRAY",1.) ;
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 
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) ;
390   gMC->Gstpar(idtmed[715], "LOSS",2.) ;
391   gMC->Gstpar(idtmed[715], "DRAY",0.) ;
392   gMC->Gstpar(idtmed[715], "STRA",2.) ;
393
394 }
395
396 //____________________________________________________________________________
397 void AliPHOS::Digits2Raw()
398 {
399 // convert digits of the current event to raw data
400   
401   AliPHOSLoader * loader = dynamic_cast<AliPHOSLoader*>(fLoader) ; 
402
403   // get the digits
404   loader->LoadDigits();
405   TClonesArray* digits = loader->Digits() ;
406
407   if (!digits) {
408     AliError(Form("No digits found !"));
409     return;
410   }
411
412   // get the digitizer 
413   loader->LoadDigitizer();
414   AliPHOSDigitizer * digitizer = dynamic_cast<AliPHOSDigitizer *>(loader->Digitizer())  ; 
415   
416   // get the geometry
417   AliPHOSGeometry* geom = GetGeometry();
418   if (!geom) {
419     AliError(Form("No geometry found !"));
420     return;
421   }
422
423   // some digitization constants
424   const Int_t    kDDLOffset = 0x600; // assigned to PHOS
425   const Int_t    kThreshold = 1; // skip digits below this threshold
426
427   AliAltroBuffer* buffer = NULL;
428   Int_t prevDDL = -1;
429   Int_t adcValuesLow[fkTimeBins];
430   Int_t adcValuesHigh[fkTimeBins];
431
432   // loop over digits (assume ordered digits)
433   for (Int_t iDigit = 0; iDigit < digits->GetEntries(); iDigit++) {
434     AliPHOSDigit* digit = dynamic_cast<AliPHOSDigit *>(digits->At(iDigit)) ;
435     if (digit->GetAmp() < kThreshold) 
436       continue;
437     Int_t relId[4];
438     geom->AbsToRelNumbering(digit->GetId(), relId);
439     Int_t module = relId[0];
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
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
459       TString fileName("PHOS_") ;
460       fileName += (iDDL + kDDLOffset) ; 
461       fileName += ".ddl" ; 
462       buffer = new AliAltroBuffer(fileName.Data(), 1);
463       buffer->WriteDataHeader(kTRUE, kFALSE);  //Dummy;
464
465       prevDDL = iDDL;
466     }
467
468     // out of time range signal (?)
469     if (digit->GetTimeR() > GetRawFormatTimeMax() ) {
470       buffer->FillBuffer(digit->GetAmp());
471       buffer->FillBuffer(GetRawFormatTimeBins() );  // time bin
472       buffer->FillBuffer(3);          // bunch length      
473       buffer->WriteTrailer(3, relId[3], relId[2], module);  // trailer
474       
475     // calculate the time response function
476     } else {
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         
483       Bool_t lowgain = RawSampledResponse(digit->GetTimeR(), energy, adcValuesHigh, adcValuesLow) ; 
484       
485      if (lowgain) 
486         buffer->WriteChannel(relId[3], relId[2], module + fLowGainOffset, 
487                            GetRawFormatTimeBins(), adcValuesLow, kThreshold);
488       else 
489         buffer->WriteChannel(relId[3], relId[2], module, 
490                              GetRawFormatTimeBins(), adcValuesHigh, kThreshold);
491       
492     }
493   }
494   
495   // write real header and close last file
496   if (buffer) {
497     buffer->Flush();
498     buffer->WriteDataHeader(kFALSE, kFALSE);
499     delete buffer;
500   }
501   
502   loader->UnloadDigits();
503 }
504
505 //____________________________________________________________________________
506 void AliPHOS::Hits2SDigits()  
507
508 // create summable digits
509
510   AliPHOSSDigitizer phosDigitizer(fLoader->GetRunLoader()->GetFileName().Data()) ;
511   phosDigitizer.SetEventRange(0, -1) ; // do all the events
512   phosDigitizer.ExecuteTask("all") ; 
513 }
514
515 //____________________________________________________________________________
516 AliLoader* 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
524 //__________________________________________________________________
525 Double_t AliPHOS::RawResponseFunction(Double_t *x, Double_t *par) 
526 {
527   // Shape of the electronics raw reponse:
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
535   
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 //__________________________________________________________________
549 Double_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
554 }
555
556 //__________________________________________________________________
557 Bool_t AliPHOS::RawSampledResponse(const Double_t dtime, const Double_t damp, Int_t * adcH, Int_t * adcL) const 
558 {
559   // for a start time dtime and an amplitude damp given by digit, 
560   // calculates the raw sampled response AliPHOS::RawResponseFunction
561
562   const Int_t kRawSignalOverflow = 0x3FF ; 
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
587   }
588   return lowGain ; 
589 }
590
591 //____________________________________________________________________________
592 void AliPHOS::SetTreeAddress()
593
594   // Links Hits in the Tree to Hits array
595   TBranch *branch;
596   char branchname[20];
597   sprintf(branchname,"%s",GetName());
598   // Branch address for hit tree
599     TTree *treeH = TreeH();
600   if (treeH) {
601     branch = treeH->GetBranch(branchname);
602     if (branch) 
603      { 
604        if (fHits == 0x0) fHits= new TClonesArray("AliPHOSHit",1000);
605        //AliInfo(Form("<%s> Setting Hits Address",GetName()));
606        branch->SetAddress(&fHits);
607      }
608   }
609 }
610