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