]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOF.cxx
TOF library splitting and conversion of some printout messages in AliLog schema ...
[u/mrichter/AliRoot.git] / TOF / AliTOF.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 //                                                                           //
20 //  Time Of Flight                                                           //
21 //  This class contains the basic functions for the Time Of Flight           //
22 //  detector. Functions specific to one particular geometry are              //
23 //  contained in the derived classes                                         //
24 //
25 //  VERSIONE WITH 5 SYMMETRIC MODULES ALONG Z AXIS
26 //  ==============================================
27 //  
28 //  VERSION WITH HOLES FOR PHOS AND TRD IN SPACEFRAME WITH HOLES
29 //
30 //  Volume sensibile : FPAD
31 //
32 //
33 //
34 // Begin_Html
35 /*
36 <img src="picts/AliTOFClass.gif">
37 */
38 //End_Html
39 //             
40 //
41 //                                                                           //
42 ///////////////////////////////////////////////////////////////////////////////
43
44
45 #include <Riostream.h>
46 #include <Rstrstream.h>
47 #include <stdlib.h>
48
49 #include <TBRIK.h>
50 #include <TFile.h>
51 #include <TFolder.h>
52 #include <TNode.h>
53 #include <TObject.h>
54 #include <TROOT.h>
55 #include <TSystem.h>
56 #include <TTask.h>
57 #include <TTree.h>
58 #include <TVirtualMC.h>
59
60 #include "AliLog.h"
61 #include "AliConfig.h"
62 #include "AliHeader.h"
63 #include "AliConst.h"
64 #include "AliLoader.h"
65 #include "AliMagF.h"
66 #include "AliRun.h"
67 #include "AliTOF.h"
68 #include "AliTOFGeometry.h"
69 #include "AliTOFSDigit.h"
70 #include "AliTOFdigit.h"
71 #include "AliTOFhit.h"
72 #include "AliTOFhitT0.h"
73 #include "AliMC.h"
74 #include "AliTOFDigitizer.h"
75 #include "AliTOFDDLRawData.h"
76  
77 ClassImp(AliTOF)
78  
79 //_____________________________________________________________________________
80 AliTOF::AliTOF()
81 {
82   //
83   // Default constructor
84   //
85   fFGeom  = 0x0;
86   fDTask  = 0x0;
87   fReTask = 0x0;
88   fIshunt   = 0;
89   fSDigits  = 0 ;
90   fNSDigits = 0;
91   fDigits   = 0 ;
92   fReconParticles = 0x0;
93   fName="TOF";
94   fTZero  = kFALSE;
95   fTOFGeometry = 0;
96 }
97  
98 //_____________________________________________________________________________
99 AliTOF::AliTOF(const char *name, const char *title, Option_t *option)
100        : AliDetector(name,title)
101 {
102   //
103   // AliTOF standard constructor
104   // 
105   // Here are fixed some important parameters
106   //
107
108   // Initialization of hits, sdigits and digits array
109   // added option for time zero analysis
110   fFGeom  = 0x0; //skowron
111   fDTask  = 0x0;
112   fReTask = 0x0;
113   fReconParticles= 0x0;
114   fTOFGeometry = 0;
115
116   if (strstr(option,"tzero")){
117     fHits   = new TClonesArray("AliTOFhitT0",  1000);
118     fTZero = kTRUE;
119     AliWarning("tzero option requires AliTOFv4T0 as TOF version (check Your Config.C)");
120   }else{
121     fHits   = new TClonesArray("AliTOFhit",  1000);
122     fTZero = kFALSE;
123   }
124   if (gAlice==0) {
125      AliFatal("gAlice==0 !");
126   }
127   if (gAlice->GetMCApp()->GetHitLists())
128      gAlice->GetMCApp()->AddHitList(fHits);
129   else AliError("gAlice->GetHitLists()==0");
130
131   fIshunt  = 0;
132   fSDigits = new TClonesArray("AliTOFSDigit", 1000);
133   fDigits  = new TClonesArray("AliTOFdigit",  1000);
134   fNSDigits = 0;
135
136   fFGeom = 0x0;
137   fDTask = 0x0;
138   fReTask = 0x0;
139   fReconParticles = 0x0;
140
141   //
142   // Digitization parameters
143   //
144   // (Transfer Functions to be inserted here)
145   //
146   SetMarkerColor(7);
147   SetMarkerStyle(2);
148   SetMarkerSize(0.4);
149
150 // Strip Parameters
151   //fGapA    =   4.; //cm  Gap beetween tilted strip in A-type plate
152   //fGapB    =   6.; //cm  Gap beetween tilted strip in B-type plate
153
154   // Physical performances
155   //fTimeRes = 100.;//ps
156   //fChrgRes = 100.;//pC
157
158 }
159
160 //_____________________________________________________________________________
161 void AliTOF::CreateTOFFolders()
162 {
163   // create the ALICE TFolder
164   // create the ALICE TTasks
165   // create the ALICE main TFolder
166   // to be done by AliRun
167
168   TFolder * alice = new TFolder();
169   alice->SetNameTitle("FPAlice", "Alice Folder") ;
170   gROOT->GetListOfBrowsables()->Add(alice) ;
171
172   TFolder * aliceF  = alice->AddFolder("folders", "Alice memory Folder") ;
173   //  make it the owner of the objects that it contains
174   aliceF->SetOwner() ;
175   // geometry folder
176   TFolder * geomF = aliceF->AddFolder("Geometry", "Geometry objects") ;
177   TFolder * aliceT  = alice->AddFolder("tasks", "Alice tasks Folder") ;   
178   //  make it the owner of the objects that it contains
179   aliceT->SetOwner() ;
180
181   TTask * aliceDi = new TTask("(S)Digitizer", "Alice SDigitizer & Digitizer") ;
182   aliceT->Add(aliceDi);
183
184   TTask * aliceRe = new TTask("Reconstructioner", "Alice Reconstructioner") ;
185   aliceT->Add(aliceRe);
186
187   char * tempo = new char[80] ;
188
189   // creates the TOF Digitizer and adds it to alice main (S)Digitizer task
190   sprintf(tempo, "%sDigitizers container",GetName() ) ;
191   fDTask = new TTask(GetName(), tempo);
192   aliceDi->Add(fDTask) ;
193
194   // creates the TOF reconstructioner and adds it to alice main Reconstructioner task
195   sprintf(tempo, "%sReconstructioner container",GetName() ) ;
196   fReTask = new TTask(GetName(), tempo);
197   aliceRe->Add(fReTask) ;
198
199   delete [] tempo ;
200  
201   // creates the TOF geometry  folder
202   geomF->AddFolder("TOF", "Geometry for TOF") ;
203 }
204
205 //_____________________________________________________________________________
206 AliTOF::~AliTOF()
207 {
208   // dtor:
209   // it remove also the alice folder 
210   // and task that TOF creates instead of AliRun
211   /* PH Temporarily commented because of problems
212   TFolder * alice = (TFolder*)gROOT->GetListOfBrowsables()->FindObject("FPAlice") ;
213   delete alice;
214   alice = 0;
215   */
216   if (fHits)
217     {
218       fHits->Delete ();
219       delete fHits;
220       fHits = 0;
221     }
222   if (fDigits)
223     {
224       fDigits->Delete ();
225       delete fDigits;
226       fDigits = 0;
227     }
228   if (fSDigits)
229     {
230       fSDigits->Delete();
231       delete fSDigits;
232       fSDigits = 0;
233     }
234   if (fReconParticles)
235     {
236       fReconParticles->Delete ();
237       delete fReconParticles;
238       fReconParticles = 0;
239     }
240
241 }
242
243 //_____________________________________________________________________________
244 void AliTOF::AddHit(Int_t track, Int_t *vol, Float_t *hits)
245 {
246   //
247   // Add a TOF hit
248   // new with placement used
249   //
250   TClonesArray &lhits = *fHits;
251   new(lhits[fNhits++]) AliTOFhit(fIshunt, track, vol, hits);
252 }
253
254 //_____________________________________________________________________________
255 void AliTOF::AddT0Hit(Int_t track, Int_t *vol, Float_t *hits)
256 {
257   //
258   // Add a TOF hit
259   // new with placement used
260   //
261   TClonesArray &lhits = *fHits;
262   new(lhits[fNhits++]) AliTOFhitT0(fIshunt, track, vol, hits);
263 }
264
265 //_____________________________________________________________________________
266 void AliTOF::AddDigit(Int_t *tracks, Int_t *vol, Float_t *digits)
267 {
268   //
269   // Add a TOF digit
270   // new with placement used
271   //
272   TClonesArray &ldigits = *fDigits;
273   new (ldigits[fNdigits++]) AliTOFdigit(tracks, vol, digits);
274 }
275
276 //___________________________________________
277 void AliTOF::AddSDigit(Int_t tracknum, Int_t *vol, Float_t *digits)
278 {
279      
280 //
281 // Add a TOF sdigit
282 //
283         
284   TClonesArray &lSDigits = *fSDigits;   
285   new(lSDigits[fNSDigits++]) AliTOFSDigit(tracknum, vol, digits);
286 }
287
288 //_____________________________________________________________________________
289 void AliTOF::SetTreeAddress ()
290 {
291   // Set branch address for the Hits and Digits Tree.
292   
293   if (fLoader->TreeH())
294    {
295      if (fHits == 0x0)
296       {
297         if (fTZero) fHits   = new TClonesArray("AliTOFhitT0", 1000);
298         else fHits   = new TClonesArray("AliTOFhit", 1000);
299       }
300    }
301   AliDetector::SetTreeAddress ();
302
303   TBranch *branch;
304
305   if (fLoader->TreeS () )
306     {
307       branch = fLoader->TreeS ()->GetBranch ("TOF");
308       if (branch) {
309         if (fSDigits == 0x0) fSDigits = new TClonesArray("AliTOFSDigit",  1000);
310         branch->SetAddress (&fSDigits);
311       }
312     }
313
314   if (fLoader->TreeR() && fReconParticles) //I do not know where this array is created - skowron
315     {
316       branch = fLoader->TreeR()->GetBranch("TOF"); 
317       if (branch) 
318        {
319          branch->SetAddress(&fReconParticles) ;
320        }
321     }   
322 }
323
324 //_____________________________________________________________________________
325 void AliTOF::CreateGeometry()
326 {
327   //
328   // Common geometry code 
329   //
330   //Begin_Html
331   /*
332     <img src="picts/AliTOFv23.gif">
333   */
334   //End_Html
335   //
336   const Double_t kPi=TMath::Pi();
337   const Double_t kDegrad=kPi/180.;
338   //
339   Float_t xTof, yTof, wall;
340
341   // frame inbetween TOF modules
342   wall = 4.;//cm
343
344   // Sizes of TOF module with its support etc..
345   xTof = 2.*(AliTOFGeometry::Rmin()*TMath::Tan(10*kDegrad)-wall/2-.5);
346   yTof = AliTOFGeometry::Rmax()-AliTOFGeometry::Rmin();
347
348 //  TOF module internal definitions 
349   //TOFpc(xTof, yTof, fZlenC, fZlenB, fZlenA, AliTOFGeometry::MaxhZtof());
350   TOFpc(xTof, yTof, AliTOFGeometry::ZlenC(), AliTOFGeometry::ZlenB(), AliTOFGeometry::ZlenA(), AliTOFGeometry::MaxhZtof());
351 }
352
353 //_____________________________________________________________________________
354 void AliTOF::DrawModule() const
355 {
356   //
357   // Draw a shaded view of the common part of the TOF geometry
358   //
359
360   AliInfo(" Drawing of AliTOF"); 
361   // Set everything unseen
362   gMC->Gsatt("*", "seen", -1);
363   // 
364   // Set ALIC mother transparent
365   gMC->Gsatt("ALIC","SEEN",0);
366   //
367   // Set the volumes visible
368   gMC->Gsatt("FTOA","SEEN",1);
369   gMC->Gsatt("FTOB","SEEN",1);
370   gMC->Gsatt("FTOC","SEEN",1);
371   gMC->Gsatt("FLTA","SEEN",1);
372   gMC->Gsatt("FLTB","SEEN",1);
373   gMC->Gsatt("FLTC","SEEN",1);
374   gMC->Gsatt("FSTR","SEEN",1);
375   //
376   gMC->Gdopt("hide", "on");
377   gMC->Gdopt("shad", "on");
378   gMC->Gsatt("*", "fill", 7);
379   gMC->SetClipBox(".");
380   gMC->SetClipBox("*", 0, 1000, -1000, 1000, -1000, 1000);
381   gMC->DefaultRange();
382   gMC->Gdraw("alic", 40, 30, 0, 12, 9.5, .02, .02);
383   gMC->Gdhead(1111, "Time Of Flight");
384   gMC->Gdman(18, 4, "MAN");
385   gMC->Gdopt("hide","off");
386 }
387
388 //_____________________________________________________________________________
389 void AliTOF::CreateMaterials()
390 {
391   //
392   // Defines TOF materials for all versions
393   // Revision: F. Pierella 18-VI-2002
394   //
395
396   Int_t   isxfld = gAlice->Field()->Integ();
397   Float_t sxmgmx = gAlice->Field()->Max();
398   //
399   //--- Quartz (SiO2) to simulate float glass
400   //    density tuned to have correct float glass 
401   //    radiation length
402   Float_t   aq[2] = { 28.0855,15.9994 };
403   Float_t   zq[2] = { 14.,8. };
404   Float_t   wq[2] = { 1.,2. };
405   Float_t   dq = 2.55; // std value: 2.2
406   Int_t nq = -2;
407
408   // --- Freon C2F4H2 (TOF-TDR pagg.)
409   // Geant Manual CONS110-1, pag. 43 (Geant, Detector Description and Simulation Tool)
410   Float_t afre[3]  = {12.011,18.998,1.007};
411   Float_t zfre[3]  = { 6., 9., 1.}; 
412   Float_t wfre[3]  = { 2., 4., 2.};
413   Float_t densfre  = 0.00375;   
414 // http://www.fi.infn.it/sezione/prevprot/gas/freon.html
415   Int_t nfre = -3; 
416 /*
417   //-- Isobutane quencher C4H10 (5% in the sensitive mixture)
418   Float_t aiso[2]  = {12.011,1.007};
419   Float_t ziso[2]  = { 6.,  1.};
420   Float_t wiso[2]  = { 4., 10.};
421   Float_t densiso  = .......;  // (g/cm3) density
422   Int_t nfre = -2; // < 0 i.e. proportion by number of atoms of each kind
423   //-- SF6 (5% in the sensitive mixture)
424   Float_t asf[3]  = {32.066,18.998};
425   Float_t zsf[3]  = { 16., 9.};
426   Float_t wsf[3]  = {  1., 6.}; 
427   Float_t denssf  = .....;   // (g/cm3) density
428   Int_t nfre = -2; // < 0 i.e. proportion by number of atoms of each kind
429 */
430   // --- CO2 
431   Float_t ac[2]   = {12.,16.};
432   Float_t zc[2]   = { 6., 8.};
433   Float_t wc[2]   = { 1., 2.};
434   Float_t dc = .001977;
435   Int_t nc = -2;
436    // For mylar (C5H4O2) 
437   Float_t amy[3] = { 12., 1., 16. };
438   Float_t zmy[3] = {  6., 1.,  8. };
439   Float_t wmy[3] = {  5., 4.,  2. };
440   Float_t dmy    = 1.39;
441   Int_t nmy = -3;
442  // For polyethilene (CH2) - honeycomb -
443   Float_t ape[2] = { 12., 1. };
444   Float_t zpe[2] = {  6., 1. };
445   Float_t wpe[2] = {  1., 2. };
446   Float_t dpe    = 0.935*0.479; //To have 1%X0 for 1cm as for honeycomb
447   Int_t npe = -2;
448   // --- G10 
449   Float_t ag10[4] = { 12.,1.,16.,28. };
450   Float_t zg10[4] = {  6.,1., 8.,14. };
451   Float_t wmatg10[4] = { .259,.288,.248,.205 };
452   Float_t densg10  = 1.7;
453   Int_t nlmatg10 = -4;
454
455   // plexiglass CH2=C(CH3)CO2CH3
456   Float_t aplex[3] = { 12.,1.,16.};
457   Float_t zplex[3] = {  6.,1., 8.};
458   Float_t wmatplex[3] = {5.,8.,2.};
459   Float_t densplex  =1.16;
460   Int_t nplex = -3;
461
462   // ---- ALUMINA (AL203) 
463   Float_t aal[2] = { 27.,16.};
464   Float_t zal[2] = { 13., 8.};
465   Float_t wmatal[2] = { 2.,3. };
466   Float_t densal  = 2.3;
467   Int_t nlmatal = -2;
468   // -- Water
469   Float_t awa[2] = {  1., 16. };
470   Float_t zwa[2] = {  1.,  8. };
471   Float_t wwa[2] = {  2.,  1. };
472   Float_t dwa    = 1.0;
473   Int_t nwa = -2;
474
475 // stainless steel
476   Float_t asteel[4] = { 55.847,51.9961,58.6934,28.0855 };
477   Float_t zsteel[4] = { 26.,24.,28.,14. };
478   Float_t wsteel[4] = { .715,.18,.1,.005 };
479
480   //AliMaterial(0, "Vacuum$", 1e-16, 1e-16, 1e-16, 1e16, 1e16);
481
482   // AIR
483   Float_t aAir[4]={12.0107,14.0067,15.9994,39.948};
484   Float_t zAir[4]={6.,7.,8.,18.};
485   Float_t wAir[4]={0.000124,0.755267,0.231781,0.012827};
486   Float_t dAir = 1.20479E-3;
487
488   AliMixture( 1, "Air$", aAir, zAir, dAir, 4, wAir);
489
490   AliMaterial( 2, "Cu $",  63.54, 29.0, 8.96, 1.43, 14.8);
491   AliMaterial( 3, "C  $",  12.01,  6.0, 2.265,18.8, 74.4);
492   AliMixture ( 4, "Polyethilene$", ape, zpe, dpe, npe, wpe);
493   AliMixture ( 5, "G10$", ag10, zg10, densg10, nlmatg10, wmatg10);
494   AliMixture ( 6, "PLE$", aplex, zplex, densplex, nplex, wmatplex);
495   AliMixture ( 7, "CO2$", ac, zc, dc, nc, wc);
496   AliMixture ( 8, "ALUMINA$", aal, zal, densal, nlmatal, wmatal);
497   AliMaterial( 9, "Al $", 26.98, 13., 2.7, 8.9, 37.2);
498   AliMaterial(10, "C-TRD$", 12.01, 6., 2.265*18.8/69.282*15./100, 18.8, 74.4); // for 15%
499   AliMixture (11, "Mylar$",  amy, zmy, dmy, nmy, wmy);
500   AliMixture (12, "Freon$",  afre, zfre, densfre, nfre, wfre);
501   AliMixture (13, "Glass$", aq, zq, dq, nq, wq);
502   AliMixture (14, "Water$",  awa, zwa, dwa, nwa, wwa);
503   AliMixture (15, "STAINLESS STEEL$", asteel, zsteel, 7.88, 4, wsteel);
504
505   Float_t epsil, stmin, deemax, stemax;
506  
507   //   Previous data
508   //       EPSIL  =  0.1   ! Tracking precision, 
509   //       STEMAX = 0.1      ! Maximum displacement for multiple scattering
510   //       DEEMAX = 0.1    ! Maximum fractional energy loss, DLS 
511   //       STMIN  = 0.1 
512   //
513   //   New data  
514   epsil  = .001;  // Tracking precision,
515   stemax = -1.;   // Maximum displacement for multiple scattering
516   deemax = -.3;   // Maximum fractional energy loss, DLS
517   stmin  = -.8;
518
519   AliMedium( 1, "Air$"  ,  1, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
520   AliMedium( 2, "Cu $"  ,  2, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
521   AliMedium( 3, "C  $"  ,  3, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
522   AliMedium( 4, "Pol$"  ,  4, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
523   AliMedium( 5, "G10$"  ,  5, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
524   AliMedium( 6, "PLE$"  ,  6, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
525   AliMedium( 7, "CO2$"  ,  7, 0, isxfld, sxmgmx, 10., -.01, -.1, .01, -.01);
526   AliMedium( 8,"ALUMINA$", 8, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
527   AliMedium( 9,"Al Frame$",9, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
528   AliMedium(10, "DME-S$",  6, 1, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
529   AliMedium(11, "C-TRD$", 10, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
530   AliMedium(12, "Myl$"  , 11, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
531   AliMedium(13, "Fre$"  , 12, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
532   AliMedium(14, "Fre-S$", 12, 1, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
533   AliMedium(15, "Glass$", 13, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
534   AliMedium(16, "Water$", 14, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
535   AliMedium(17, "STEEL$", 15, 0, isxfld, sxmgmx, 10., stemax, deemax, epsil, stmin);
536 }
537
538 //_____________________________________________________________________________
539 Int_t AliTOF::DistancetoPrimitive(Int_t , Int_t ) const
540 {
541   //
542   // Returns distance from mouse pointer to detector, default version
543   //
544   return 9999;
545 }
546
547 //___________________________________________
548 void AliTOF::ResetHits ()
549 {
550   // Reset number of clusters and the cluster array for this detector
551   AliDetector::ResetHits ();
552 }
553
554 //____________________________________________
555 void AliTOF::ResetDigits ()
556 {
557   //
558   // Reset number of digits and the digits array for this detector
559   AliDetector::ResetDigits ();
560   //
561
562 //____________________________________________
563 void AliTOF::ResetSDigits ()
564 {
565   //
566   // Reset number of sdigits and the sdigits array for this detector
567   fNSDigits = 0;
568   //fSDigits = 0x0;
569   //
570
571 //_____________________________________________________________________________
572 void AliTOF::Init()
573 {
574   //
575   // Initialise TOF detector after it has been built
576   //
577   // Set id of TOF sensitive volume
578   if (IsVersion() !=0) fIdSens=gMC->VolId("FPAD");
579   //
580   // Save the geometry
581   TDirectory* saveDir = gDirectory;
582   gAlice->GetRunLoader()->CdGAFile();
583   fTOFGeometry->Write("TOFGeometry");
584   saveDir->cd();
585 }
586
587 //____________________________________________________________________________
588 void AliTOF::MakeBranch(Option_t* option)
589 {
590  //
591  // Initializes the Branches of the TOF inside the 
592  // trees written for each event. 
593  // AliDetector::MakeBranch initializes just the 
594  // Branch inside TreeH. Here we add the branches in 
595  // TreeD, TreeS and TreeR.
596  //
597   const char *oH = strstr(option,"H");
598   if (fLoader->TreeH() && oH)
599    {
600      if (fHits == 0x0)
601       {
602         if (fTZero) fHits   = new TClonesArray("AliTOFhitT0", 1000);
603         else fHits   = new TClonesArray("AliTOFhit", 1000);
604       }
605    }
606   
607   AliDetector::MakeBranch(option);
608
609   Int_t buffersize = 4000;
610   Char_t branchname[10];
611   sprintf(branchname,"%s",GetName());
612   
613   const char *oD = strstr(option,"D");
614   const char *oS = strstr(option,"S");
615   const char *oR = strstr(option,"R");
616
617   if (fLoader->TreeD() && oD){
618     if (fDigits == 0x0) fDigits = new TClonesArray("AliTOFdigit",  1000); 
619     MakeBranchInTree(fLoader->TreeD(), branchname, &fDigits,buffersize, 0) ;
620   }
621
622   if (fLoader->TreeS() && oS){
623     if (fSDigits == 0x0) fSDigits = new TClonesArray("AliTOFSDigit",  1000);
624     MakeBranchInTree(fLoader->TreeS(), branchname, &fSDigits,buffersize, 0) ;
625   }
626
627   if (fReconParticles && fLoader->TreeR() && oR){
628     MakeBranchInTree(fLoader->TreeR(), branchname, &fReconParticles,buffersize, 0) ;
629   }
630 }
631
632 //____________________________________________________________________________
633 void AliTOF::Makehits(Bool_t hits) 
634 {
635 // default argument used, see AliTOF.h
636 // Enable/Disable the writing of the TOF-hits branch 
637 // on TreeH
638 // by default : enabled for TOFv1, v2, v3, v4
639 //              disabled for TOFv0
640 // 
641    if (hits &&  (IsVersion()!=0))
642       fIdSens = gMC->VolId("FPAD");
643    else
644       AliInfo("Option for writing the TOF-hits branch on TreeH: disabled");
645 }
646
647 //____________________________________________________________________________
648 void AliTOF::FinishEvent()
649 {
650 // do nothing
651 }
652
653 //---------------------------------------------------------------------
654 void AliTOF::Hits2SDigits()
655 {
656 //
657 // Use the TOF SDigitizer to make TOF SDigits
658 //
659
660 //  cout<<"AliTOF::Hits2SDigits> start...\n";
661   
662   AliRunLoader * rl = fLoader->GetRunLoader();
663   AliTOFSDigitizer sd((rl->GetFileName()).Data());
664   ToAliDebug(1, sd.Print(""));
665
666   sd.Exec("") ;
667
668 }
669
670 //---------------------------------------------------------------------
671 void AliTOF::Hits2SDigits(Int_t evNumber1, Int_t evNumber2)
672 {
673 //
674 // Use the TOF SDigitizer to make TOF SDigits
675 //
676
677   if ((evNumber2-evNumber1)==1) 
678       AliDebug(1, Form("I am making sdigits for the %dth event", evNumber1))
679   else if ((evNumber2-evNumber1)>1)
680       AliDebug(1, Form("I am making sdigits for the events from the " 
681                        "%dth to the %dth", evNumber1, evNumber2-1));
682  
683   AliRunLoader * rl = fLoader->GetRunLoader();
684   AliTOFSDigitizer sd((rl->GetFileName()).Data(),evNumber1,evNumber2) ;
685   ToAliDebug(1, sd.Print(""));
686
687   sd.Exec("") ;
688
689 }
690
691 //___________________________________________________________________________
692 AliDigitizer* AliTOF::CreateDigitizer(AliRunDigitizer* manager) const
693 {
694   return new AliTOFDigitizer(manager);
695 }
696
697 //___________________________________________________________________________
698 Bool_t AliTOF::CheckOverlap(Int_t* vol, Float_t* digit,Int_t Track)
699 {
700 //
701 // Checks if 2 or more hits belong to the same pad.
702 // In this case the data assigned to the digit object
703 // are the ones of the first hit in order of Time.
704 // 2 hits from the same track on the same pad are collected.
705 // Called only by Hits2SDigits.
706 // This procedure has to be optimized in the next TOF release.
707 //
708
709         Bool_t overlap = kFALSE;
710         Int_t  vol2[5];
711
712         for (Int_t ndig=0; ndig<fSDigits->GetEntries(); ndig++){
713            AliTOFdigit* currentDigit = (AliTOFdigit*)(fSDigits->UncheckedAt(ndig));
714            currentDigit->GetLocation(vol2);
715            Bool_t idem= kTRUE;
716            // check on digit volume
717            for (Int_t i=0;i<=4;i++){
718                if (!idem) break;
719                if (vol[i]!=vol2[i]) idem=kFALSE;}
720
721            if (idem){  // same pad fired
722               Float_t tdc2 = digit[0];
723               Float_t tdc1 = currentDigit->GetTdc();
724
725               // we separate two digits on the same pad if
726               // they are separated in time by at least 25 ns
727               // remember that tdc time is given in ps
728
729               if (TMath::Abs(tdc1-tdc2)<25000){
730                   // in case of overlap we take the earliest
731                   if (tdc1>tdc2){
732                    currentDigit->SetTdc(tdc2); 
733                    currentDigit->SetAdc(digit[1]);
734                   }
735                   else {
736                    currentDigit->SetTdc(tdc1);
737                    currentDigit->SetAdc(digit[1]);
738                   }
739                   currentDigit->AddTrack(Track); // add track number in the track array
740                   overlap = kTRUE;
741                   return overlap;
742               } else 
743                 overlap= kFALSE;
744
745            } // close if (idem) -> two digits on the same TOF pad
746
747         } // end loop on existing sdigits
748
749         return overlap;
750 }
751
752
753 //____________________________________________________________________________
754 void AliTOF::Digits2Raw()
755 {
756 //
757 // Starting from the TOF digits, writes the Raw Data objects
758 //
759
760   fLoader->LoadDigits();
761
762   TTree* digits = fLoader->TreeD();
763   if (!digits) {
764     AliError("no digits tree");
765     return;
766   }
767   
768   AliTOFDDLRawData rawWriter;
769   rawWriter.SetVerbose(0);
770   
771   AliInfo("Formatting raw data for TOF");
772   digits->GetEvent(0);
773   rawWriter.RawDataTOF(digits->GetBranch("TOF"));  
774
775   fLoader->UnloadDigits();
776   
777 }
778 ////////////////////////////////////////////////////////////////////////
779 void AliTOF::RecreateSDigitsArray() {
780 //
781 // delete TClonesArray fSDigits and create it again
782 //  needed for backward compatability with PPR test production
783 //
784   delete fSDigits;
785   fSDigits       = new TClonesArray("AliTOFSDigit",  1000);
786 }
787 ////////////////////////////////////////////////////////////////////////
788 void AliTOF::CreateSDigitsArray() {
789 //
790 // create TClonesArray fSDigits
791 //  needed for backward compatability with PPR test production
792 //
793   fSDigits       = new TClonesArray("AliTOFSDigit",  1000);
794 }
795