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