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