]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOF.cxx
coding convention - RN17 violation: suppressed
[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 //                                                                           //
35 ///////////////////////////////////////////////////////////////////////////////
36 // Begin_Html
37 /*
38 <img src="picts/AliTOFClass.gif">
39 */
40 //End_Html
41
42 #include <TClonesArray.h>
43 #include <TFile.h>
44 #include <TFolder.h>
45 #include <TROOT.h>
46 #include <TTask.h>
47 #include <TTree.h>
48 #include <TVirtualMC.h>
49 #include <TStopwatch.h>
50
51 #include "AliConst.h"
52 #include "AliLoader.h"
53 #include "AliLog.h"
54 #include "AliMC.h"
55 #include "AliRun.h"
56
57 #include "AliTOFDDLRawData.h"
58 #include "AliTOFDigitizer.h"
59 #include "AliTOFdigit.h"
60 #include "AliTOFhitT0.h"
61 #include "AliTOFhit.h"
62 #include "AliTOFGeometry.h"
63 #include "AliTOFSDigitizer.h"
64 #include "AliTOFSDigit.h"
65 #include "AliTOF.h"
66
67 class AliTOFcluster;
68
69 extern TFile *gFile;
70 extern TROOT *gROOT;
71 extern TVirtualMC *gMC;
72
73 extern AliRun *gAlice;
74
75  
76 ClassImp(AliTOF)
77  
78 //_____________________________________________________________________________
79 AliTOF::AliTOF():
80   fFGeom(0x0),
81   fDTask(0x0),
82   fReTask(0x0),
83   fSDigits(0x0),
84   fNSDigits(0),
85   fReconParticles(0x0),
86   fIdSens(-1),
87   fTZero(kFALSE),
88   fTOFGeometry(0x0)
89 {
90   //
91   // Default constructor
92   //
93   fDigits = 0;
94   fIshunt   = 0;
95   fName = "TOF";
96 }
97  
98 //_____________________________________________________________________________
99 AliTOF::AliTOF(const char *name, const char *title, Option_t *option)
100        : 
101   AliDetector(name,title),
102   fFGeom(0x0),
103   fDTask(0x0),
104   fReTask(0x0),
105   fSDigits(0x0),
106   fNSDigits(0),
107   fReconParticles(0x0),
108   fIdSens(-1),
109   fTZero(kFALSE),
110   fTOFGeometry(0x0)
111 {
112   //
113   // AliTOF standard constructor
114   // 
115   // Here are fixed some important parameters
116   //
117
118   // Initialization of hits, sdigits and digits array
119   // added option for time zero analysis
120   //skowron
121   fTOFGeometry = new AliTOFGeometry();
122
123   if (strstr(option,"tzero")){
124     fHits   = new TClonesArray("AliTOFhitT0",  1000);
125     fTZero = kTRUE;
126     //    AliWarning("tzero option requires AliTOFv4T0/AliTOFv5T0 as TOF version (check Your Config.C)");
127   }else{
128     fHits   = new TClonesArray("AliTOFhit",  1000);
129     fTZero = kFALSE;
130   }
131   if (gAlice==0) {
132      AliFatal("gAlice==0 !");
133   }
134
135   AliMC *mcApplication = (AliMC*)gAlice->GetMCApp();
136
137   if (mcApplication->GetHitLists())
138      mcApplication->AddHitList(fHits);
139   else AliError("gAlice->GetHitLists()==0");
140
141   fIshunt  = 0;
142   fSDigits = new TClonesArray("AliTOFSDigit", 1000);
143   fDigits  = new TClonesArray("AliTOFdigit",  1000);
144
145   //
146   // Digitization parameters
147   //
148   // (Transfer Functions to be inserted here)
149   //
150   //PH  SetMarkerColor(7);
151   //PH  SetMarkerStyle(2);
152   //PH  SetMarkerSize(0.4);
153
154 // Strip Parameters
155   //fGapA    =   4.; //cm  Gap beetween tilted strip in A-type plate
156   //fGapB    =   6.; //cm  Gap beetween tilted strip in B-type plate
157
158   // Physical performances
159   //fTimeRes = 100.;//ps
160   //fChrgRes = 100.;//pC
161
162 }
163
164 //____________________________________________________________________________
165 void AliTOF::SetTOFSectors(Int_t *sectors)
166 {
167   // Setter for partial/full TOF configuration
168
169   for(Int_t isec=0;isec<18;isec++){
170     fTOFSectors[isec]=sectors[isec];
171   }
172 }
173 //____________________________________________________________________________
174 void AliTOF::GetTOFSectors(Int_t *sectors) const
175 {
176   // Getter for partial/full TOF configuration
177
178   for(Int_t isec=0;isec<18;isec++){
179     sectors[isec]=fTOFSectors[isec];
180   }
181 }
182 //_____________________________________________________________________________
183 AliTOF::AliTOF(const AliTOF &source)
184   :AliDetector(),
185   fFGeom(0x0),
186   fDTask(0x0),
187   fReTask(0x0),
188   fSDigits(0x0),
189   fNSDigits(0),
190   fReconParticles(0x0),
191   fIdSens(-1),
192   fTZero(kFALSE),
193   fTOFGeometry(0x0)
194 {
195   // copy constructor
196
197   this->fReconParticles=source.fReconParticles;
198   this->fSDigits=source.fSDigits;
199   this->fTOFGeometry=source.fTOFGeometry;
200
201 }
202
203 //_____________________________________________________________________________
204 AliTOF& AliTOF::operator=(const AliTOF &source)
205 {
206   // ass. op.
207
208   this->fReconParticles=source.fReconParticles;
209   this->fSDigits=source.fSDigits;
210   this->fTOFGeometry=source.fTOFGeometry;
211   return *this;
212
213 }
214
215 //_____________________________________________________________________________
216 void AliTOF::CreateTOFFolders()
217 {
218   // create the ALICE TFolder
219   // create the ALICE TTasks
220   // create the ALICE main TFolder
221   // to be done by AliRun
222
223   TFolder * alice = new TFolder();
224   alice->SetNameTitle("FPAlice", "Alice Folder") ;
225   gROOT->GetListOfBrowsables()->Add(alice) ;
226
227   TFolder * aliceF  = alice->AddFolder("folders", "Alice memory Folder") ;
228   //  make it the owner of the objects that it contains
229   aliceF->SetOwner() ;
230   // geometry folder
231   TFolder * geomF = aliceF->AddFolder("Geometry", "Geometry objects") ;
232   TFolder * aliceT  = alice->AddFolder("tasks", "Alice tasks Folder") ;   
233   //  make it the owner of the objects that it contains
234   aliceT->SetOwner() ;
235
236   TTask * aliceDi = new TTask("(S)Digitizer", "Alice SDigitizer & Digitizer") ;
237   aliceT->Add(aliceDi);
238
239   TTask * aliceRe = new TTask("Reconstructioner", "Alice Reconstructioner") ;
240   aliceT->Add(aliceRe);
241
242   char * tempo = new char[80] ;
243
244   // creates the TOF Digitizer and adds it to alice main (S)Digitizer task
245   sprintf(tempo, "%sDigitizers container",GetName() ) ;
246   fDTask = new TTask(GetName(), tempo);
247   aliceDi->Add(fDTask) ;
248
249   // creates the TOF reconstructioner and adds it to alice main Reconstructioner task
250   sprintf(tempo, "%sReconstructioner container",GetName() ) ;
251   fReTask = new TTask(GetName(), tempo);
252   aliceRe->Add(fReTask) ;
253
254   delete [] tempo ;
255  
256   // creates the TOF geometry  folder
257   geomF->AddFolder("TOF", "Geometry for TOF") ;
258 }
259
260 //_____________________________________________________________________________
261 AliTOF::~AliTOF()
262 {
263   // dtor:
264   // it remove also the alice folder 
265   // and task that TOF creates instead of AliRun
266   /* PH Temporarily commented because of problems
267   TFolder * alice = (TFolder*)gROOT->GetListOfBrowsables()->FindObject("FPAlice") ;
268   delete alice;
269   alice = 0;
270   */
271   if (fHits)
272     {
273       fHits->Delete ();
274       delete fHits;
275       fHits = 0;
276     }
277   if (fDigits)
278     {
279       fDigits->Delete ();
280       delete fDigits;
281       fDigits = 0;
282     }
283   if (fSDigits)
284     {
285       fSDigits->Delete();
286       delete fSDigits;
287       fSDigits = 0;
288     }
289
290   if (fReconParticles)
291     {
292       fReconParticles->Delete ();
293       delete fReconParticles;
294       fReconParticles = 0;
295     }
296
297 }
298
299 //_____________________________________________________________________________
300 void AliTOF::AddHit(Int_t track, Int_t *vol, Float_t *hits)
301 {
302   //
303   // Add a TOF hit
304   // new with placement used
305   //
306   TClonesArray &lhits = *fHits;
307   new(lhits[fNhits++]) AliTOFhit(fIshunt, track, vol, hits);
308 }
309
310 //_____________________________________________________________________________
311 void AliTOF::AddT0Hit(Int_t track, Int_t *vol, Float_t *hits)
312 {
313   //
314   // Add a TOF hit
315   // new with placement used
316   //
317   TClonesArray &lhits = *fHits;
318   new(lhits[fNhits++]) AliTOFhitT0(fIshunt, track, vol, hits);
319 }
320
321 //_____________________________________________________________________________
322 void AliTOF::AddDigit(Int_t *tracks, Int_t *vol, Int_t *digits)
323 {
324   //
325   // Add a TOF digit
326   // new with placement used
327   //
328   TClonesArray &ldigits = *fDigits;
329   new (ldigits[fNdigits++]) AliTOFdigit(tracks, vol, digits);
330 }
331
332 //_____________________________________________________________________________
333 void AliTOF::AddSDigit(Int_t tracknum, Int_t *vol, Int_t *digits)
334 {
335      
336 //
337 // Add a TOF sdigit
338 //
339         
340   TClonesArray &lSDigits = *fSDigits;   
341   new(lSDigits[fNSDigits++]) AliTOFSDigit(tracknum, vol, digits);
342 }
343
344 //_____________________________________________________________________________
345 void AliTOF::SetTreeAddress ()
346 {
347   // Set branch address for the Hits and Digits Tree.
348   
349   if (fLoader->TreeH())
350    {
351      if (fHits == 0x0)
352       {
353         if (fTZero) fHits   = new TClonesArray("AliTOFhitT0", 1000);
354         else fHits   = new TClonesArray("AliTOFhit", 1000);
355       }
356    }
357   AliDetector::SetTreeAddress ();
358
359   TBranch *branch;
360
361   if (fLoader->TreeS () )
362     {
363       branch = fLoader->TreeS ()->GetBranch ("TOF");
364       if (branch) {
365         if (fSDigits == 0x0) fSDigits = new TClonesArray("AliTOFSDigit",  1000);
366         branch->SetAddress (&fSDigits);
367       }
368     }
369
370   if (fLoader->TreeR() ) 
371     {
372       branch = fLoader->TreeR()->GetBranch("TOF"); 
373       if (branch) 
374        {
375          if (fReconParticles == 0x0) fReconParticles = new TClonesArray("AliTOFcluster",  1000);
376          branch->SetAddress(&fReconParticles);
377        }
378     }
379
380   /*
381   if (fLoader->TreeR() && fReconParticles) //I do not know where this array is created - skowron
382     {
383       branch = fLoader->TreeR()->GetBranch("TOF"); 
384       if (branch) 
385        {
386          branch->SetAddress(&fReconParticles) ;
387        }
388     }
389   */
390 }
391
392 //_____________________________________________________________________________
393 void AliTOF::CreateGeometry()
394 {
395   //
396   // Common geometry code 
397   //
398   //Begin_Html
399   /*
400     <img src="picts/AliTOFv23.gif">
401   */
402   //End_Html
403   //
404
405   Float_t xTof, yTof;
406
407   if (IsVersion()==8) {
408
409     xTof = 124.5;//fTOFGeometry->StripLength()+2.*(0.3+0.03); // cm,  x-dimension of FTOA volume
410     yTof = fTOFGeometry->Rmax()-fTOFGeometry->Rmin(); // cm,  y-dimension of FTOA volume
411     Float_t zTof = fTOFGeometry->ZlenA();             // cm,  z-dimension of FTOA volume
412     
413     //  TOF module internal definitions
414     TOFpc(xTof, yTof, zTof);
415
416   } else if (IsVersion()==7) {
417
418     xTof = 124.5;//fTOFGeometry->StripLength()+2.*(0.3+0.03); // cm,  x-dimension of FTOA volume
419     yTof = fTOFGeometry->Rmax()-fTOFGeometry->Rmin(); // cm,  y-dimension of FTOA volume
420     Float_t zTof = fTOFGeometry->ZlenA();             // cm,  z-dimension of FTOA volume
421     
422     //  TOF module internal definitions
423     TOFpc(xTof, yTof, zTof, fTOFGeometry->ZlenB());
424
425   } else {
426
427     Float_t wall = 4.;//cm // frame inbetween TOF modules
428
429     // Sizes of TOF module with its support etc..
430     xTof = 2.*(fTOFGeometry->Rmin()*TMath::Tan(10.*kDegrad)-wall/2.-0.5);
431     yTof = fTOFGeometry->Rmax()-fTOFGeometry->Rmin();
432
433     //  TOF module internal definitions 
434     TOFpc(xTof, yTof, fTOFGeometry->ZlenC(), fTOFGeometry->ZlenB(), fTOFGeometry->ZlenA(), fTOFGeometry->MaxhZtof());
435   }
436
437 }
438
439 //_____________________________________________________________________________
440 void AliTOF::DrawModule() const
441 {
442   //
443   // Draw a shaded view of the common part of the TOF geometry
444   //
445
446   AliInfo(" Drawing of AliTOF"); 
447   // Set everything unseen
448   gMC->Gsatt("*", "seen", -1);
449   // 
450   // Set ALIC mother transparent
451   gMC->Gsatt("ALIC","SEEN",0);
452   //
453   // Set the volumes visible
454   gMC->Gsatt("FTOA","SEEN",1);
455   gMC->Gsatt("FTOB","SEEN",1);
456   gMC->Gsatt("FTOC","SEEN",1);
457   gMC->Gsatt("FLTA","SEEN",1);
458   gMC->Gsatt("FLTB","SEEN",1);
459   gMC->Gsatt("FLTC","SEEN",1);
460   gMC->Gsatt("FSTR","SEEN",1);
461   //
462   gMC->Gdopt("hide", "on");
463   gMC->Gdopt("shad", "on");
464   gMC->Gsatt("*", "fill", 7);
465   gMC->SetClipBox(".");
466   gMC->SetClipBox("*", 0, 1000, -1000, 1000, -1000, 1000);
467   gMC->DefaultRange();
468   gMC->Gdraw("alic", 40, 30, 0, 12, 9.5, .02, .02);
469   gMC->Gdhead(1111, "Time Of Flight");
470   gMC->Gdman(18, 4, "MAN");
471   gMC->Gdopt("hide","off");
472 }
473
474 //_____________________________________________________________________________
475 Int_t AliTOF::DistancetoPrimitive(Int_t , Int_t )
476 {
477   //
478   // Returns distance from mouse pointer to detector, default version
479   //
480   return 9999;
481 }
482
483 //___________________________________________
484 void AliTOF::ResetHits ()
485 {
486   // Reset number of clusters and the cluster array for this detector
487   AliDetector::ResetHits ();
488 }
489
490 //____________________________________________
491 void AliTOF::ResetDigits ()
492 {
493   //
494   // Reset number of digits and the digits array for this detector
495   AliDetector::ResetDigits ();
496   //
497
498 //____________________________________________
499 void AliTOF::ResetSDigits ()
500 {
501   //
502   // Reset number of sdigits and the sdigits array for this detector
503   fNSDigits = 0;
504   //fSDigits = 0x0;
505   //
506
507 //_____________________________________________________________________________
508 void AliTOF::Init()
509 {
510   //
511   // Initialise TOF detector after it has been built
512   //
513   // Set id of TOF sensitive volume
514   if (IsVersion() !=0) fIdSens=gMC->VolId("FPAD");
515
516   /*
517   // Save the geometry
518   TDirectory* saveDir = gDirectory;
519   gAlice->GetRunLoader()->CdGAFile();
520   fTOFGeometry->Write("TOFGeometry");
521   saveDir->cd();
522   */
523 }
524
525 //____________________________________________________________________________
526 void AliTOF::MakeBranch(Option_t* option)
527 {
528  //
529  // Initializes the Branches of the TOF inside the 
530  // trees written for each event. 
531  // AliDetector::MakeBranch initializes just the 
532  // Branch inside TreeH. Here we add the branches in 
533  // TreeD, TreeS and TreeR.
534  //
535   const char *oH = strstr(option,"H");
536   if (fLoader->TreeH() && oH)
537    {
538      if (fHits == 0x0)
539       {
540         if (fTZero) fHits   = new TClonesArray("AliTOFhitT0", 1000);
541         else fHits   = new TClonesArray("AliTOFhit", 1000);
542       }
543    }
544   
545   AliDetector::MakeBranch(option);
546
547   Int_t buffersize = 4000;
548   Char_t branchname[10];
549   sprintf(branchname,"%s",GetName());
550   
551   const char *oD = strstr(option,"D");
552   const char *oS = strstr(option,"S");
553   const char *oR = strstr(option,"R");
554
555   if (fLoader->TreeD() && oD){
556     if (fDigits == 0x0) fDigits = new TClonesArray("AliTOFdigit",  1000); 
557     MakeBranchInTree(fLoader->TreeD(), branchname, &fDigits,buffersize, 0) ;
558   }
559
560   if (fLoader->TreeS() && oS){
561     if (fSDigits == 0x0) fSDigits = new TClonesArray("AliTOFSDigit",  1000);
562     MakeBranchInTree(fLoader->TreeS(), branchname, &fSDigits,buffersize, 0) ;
563   }
564
565   if (fLoader->TreeR() && oR){
566     if (fReconParticles == 0x0) fReconParticles = new TClonesArray("AliTOFcluster",  1000);
567     MakeBranchInTree(fLoader->TreeR(), branchname, &fReconParticles,buffersize, 0) ;
568   }
569
570   /*
571   if (fReconParticles && fLoader->TreeR() && oR){
572     MakeBranchInTree(fLoader->TreeR(), branchname, &fReconParticles,buffersize, 0) ;
573   }
574   */
575 }
576
577 //____________________________________________________________________________
578 void AliTOF::Makehits(Bool_t hits) 
579 {
580 // default argument used, see AliTOF.h
581 // Enable/Disable the writing of the TOF-hits branch 
582 // on TreeH
583 // by default :  enabled for TOFv1, v2, v3, v4, v5
584 //              disabled for TOFv0
585 // 
586    if (hits &&  (IsVersion()!=0))
587       fIdSens = gMC->VolId("FPAD");
588    else
589       AliInfo("Option for writing the TOF-hits branch on TreeH: disabled");
590 }
591
592 //____________________________________________________________________________
593 void AliTOF::FinishEvent()
594 {
595 // do nothing
596 }
597
598 //____________________________________________________________________________
599 void AliTOF::Hits2SDigits()
600 {
601 //
602 // Use the TOF SDigitizer to make TOF SDigits
603 //
604
605 //  AliInfo("Start...");
606   
607   AliRunLoader * rl = fLoader->GetRunLoader();
608   AliTOFSDigitizer sd((rl->GetFileName()).Data());
609   ToAliDebug(1, sd.Print(""));
610
611   sd.Exec("") ;
612
613 }
614
615 //____________________________________________________________________________
616 void AliTOF::Hits2SDigits(Int_t evNumber1, Int_t evNumber2)
617 {
618 //
619 // Use the TOF SDigitizer to make TOF SDigits
620 //
621
622   if ((evNumber2-evNumber1)==1) 
623     AliDebug(1, Form("I am making sdigits for the %dth event", evNumber1));
624   if ((evNumber2-evNumber1)>1)
625     AliDebug(1, Form("I am making sdigits for the events from the %dth to the %dth", evNumber1, evNumber2-1));
626  
627   AliRunLoader * rl = fLoader->GetRunLoader();
628   AliTOFSDigitizer sd((rl->GetFileName()).Data(),evNumber1,evNumber2) ;
629   ToAliDebug(1, sd.Print(""));
630
631   sd.Exec("") ;
632
633 }
634
635 //___________________________________________________________________________
636 AliDigitizer* AliTOF::CreateDigitizer(AliRunDigitizer* manager) const
637 {
638   return new AliTOFDigitizer(manager);
639 }
640
641 //___________________________________________________________________________
642 Bool_t AliTOF::CheckOverlap(Int_t* vol, Int_t* digit,Int_t Track)
643 {
644 //
645 // Checks if 2 or more hits belong to the same pad.
646 // In this case the data assigned to the digit object
647 // are the ones of the first hit in order of Time.
648 // 2 hits from the same track on the same pad are collected.
649 // Called only by Hits2SDigits.
650 // This procedure has to be optimized in the next TOF release.
651 //
652
653   Bool_t overlap = kFALSE;
654   Int_t  vol2[5];
655
656   for (Int_t ndig=0; ndig<fSDigits->GetEntries(); ndig++){
657     AliTOFdigit* currentDigit = (AliTOFdigit*)(fSDigits->UncheckedAt(ndig));
658     currentDigit->GetLocation(vol2);
659     Bool_t idem= kTRUE;
660     // check on digit volume
661     for (Int_t i=0;i<=4;i++){
662       if (!idem) break;
663       if (vol[i]!=vol2[i]) idem=kFALSE;}
664
665     if (idem){  // same pad fired
666       Int_t tdc2 = digit[0];
667       Int_t tdc1 = currentDigit->GetTdc();
668
669       // we separate two digits on the same pad if
670       // they are separated in time by at least 25 ns
671       // remember that tdc time is given in ps
672
673       if (TMath::Abs(tdc1-tdc2)<25000){
674         // in case of overlap we take the earliest
675         if (tdc1>tdc2){
676           currentDigit->SetTdc(tdc2); 
677           currentDigit->SetAdc(digit[1]);
678         }
679         else {
680           currentDigit->SetTdc(tdc1);
681           currentDigit->SetAdc(digit[1]);
682         }
683         currentDigit->AddTrack(Track); // add track number in the track array
684         overlap = kTRUE;
685         return overlap;
686       } else 
687         overlap= kFALSE;
688
689     } // close if (idem) -> two digits on the same TOF pad
690
691   } // end loop on existing sdigits
692
693   return overlap;
694 }
695 //____________________________________________________________________________
696 void AliTOF::Digits2Raw()
697 {
698 //
699 // Starting from the TOF digits, writes the Raw Data objects
700 //
701
702   TStopwatch stopwatch;
703   stopwatch.Start();
704
705   fLoader->LoadDigits();
706
707   TTree* digits = fLoader->TreeD();
708   if (!digits) {
709     AliError("no digits tree");
710     return;
711   }
712   
713   /*
714   fRunLoader->CdGAFile();
715   TFile *in=(TFile*)gFile;
716   in->cd();
717   AliTOFGeometry *geometry  = (AliTOFGeometry*)in->Get("TOFgeometry");
718   */
719   AliTOFDDLRawData rawWriter;
720   //AliTOFDDLRawData rawWriter;
721   rawWriter.SetVerbose(0);
722   //rawWriter.SetFakeOrphaneProduction(kTRUE);
723   //rawWriter.SetPackedAcquisitionMode(kFALSE);
724   if (rawWriter.GetPackedAcquisitionMode()) {
725     if(rawWriter.GetMatchingWindow()>8192)
726       AliWarning(Form("You are running in packing mode and the matching window is %.2f ns, i.e. greater than 199.8848 ns",
727                       rawWriter.GetMatchingWindow()*AliTOFGeometry::TdcBinWidth()*1.e-03));
728   }
729   
730   AliDebug(1,"Formatting raw data for TOF");
731   digits->GetEvent(0);
732   rawWriter.RawDataTOF(digits->GetBranch("TOF"));  
733
734   fLoader->UnloadDigits();
735   
736   AliDebug(1, Form("Execution time to write TOF raw data : R:%.2fs C:%.2fs",
737                    stopwatch.RealTime(),stopwatch.CpuTime()));
738
739 }
740
741 //____________________________________________________________________________
742 void AliTOF::RecreateSDigitsArray() {
743 //
744 // delete TClonesArray fSDigits and create it again
745 //  needed for backward compatability with PPR test production
746 //
747   delete fSDigits;
748   fSDigits       = new TClonesArray("AliTOFSDigit",  1000);
749 }
750 //____________________________________________________________________________
751 void AliTOF::CreateSDigitsArray() {
752 //
753 // create TClonesArray fSDigits
754 //  needed for backward compatability with PPR test production
755 //
756   fSDigits       = new TClonesArray("AliTOFSDigit",  1000);
757 }