]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFT0.cxx
Removing the fake copy constructors and assignment operator, moving their declaration...
[u/mrichter/AliRoot.git] / TOF / AliTOFT0.cxx
CommitLineData
d599d913 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
88cb7938 16/* $Id$ */
17
d599d913 18//_________________________________________________________________________
0e46b9ae 19//
d599d913 20// This is a TTask that made the calculation of the Time zero using TOF.
7aeeaf38 21// Description: The algorithm used to calculate the time zero of
22// interaction using TOF detector is the following.
23// We select in the MonteCarlo some primary particles - or tracks in
24// the following - that strike the TOF detector (the larger part are
25// pions, kaons or protons).
26// We choose a set of 10 selected tracks, for each track You have the
27// length of the track when the TOF is reached (a standard TOF hit
28// does not contain this additional information, this is the reason
29// why we implemented a new time zero dedicated TOF hit class
30// AliTOFhitT0; in order to store this type of hit You have to use the
31// AliTOFv4T0 as TOF class in Your Config.C. In AliTOFv4T0 the
32// StepManager was modified in order to fill the TOF hit branch with
33// this type of hits; in fact the AliTOF::AddT0Hit is called rather
34// that the usual AliTOF::AddHit), the momentum at generation (from
35// TreeK) and the time of flight given by the TOF detector.
36// (Observe that the ctor of the AliTOF class, when the AliTOFv4T0
37// class is used, is called with the "tzero" option: it is in order
38// create the fHits TClonesArray filled with AliTOFhitT0 objects,
39// rather than with normal AliTOFhit)
40// Then Momentum and time of flight for each track are smeared
41// according to known experimental resolution (all sources of error
42// have been token into account).
43// Let consider now only one set of 10 tracks (the algorithm is the
44// same for all sets).
45// Assuming the (mass) hypothesis that each track can be AUT a pion,
46// AUT a kaon, AUT a proton, we consider all the 3 at 10 possible
47// cases.
d599d913 48// For each track in each (mass) configuration
7aeeaf38 49// (a configuration can be
50// e.g. pion/pion/kaon/proton/pion/proton/kaon/kaon/pion/pion)
51// we calculate the time zero (we know in fact the velocity of the
52// track after the assumption about its mass, the time of flight given
53// by the TOF, and the corresponding path travelled till the TOF
54// detector). Then for each mass configuration we have 10 time zero
55// and we can calculate the ChiSquare for the current configuration
56// using the weighted mean over all 10 time zero.
57// We call the best assignment the mass configuration that gives the
58// minimum value of the ChiSquare.
59// We plot the weighted mean over all 10 time zero for the best
60// assignment, the ChiSquare for the best assignment and the
61// corresponding confidence level.
62// The strong assumption is the MC selection of primary particles. It
63// will be introduced in the future also some more realistic
64// simulation about this point.
0e46b9ae 65//
d599d913 66// Use case:
67// root [0] AliTOFT0 * tzero = new AliTOFT0("galice.root")
68// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
69// root [1] tzero->ExecuteTask()
70// root [2] tzero->ExecuteTask("tim")
71// // available parameters:
72// tim - print benchmarking information
7aeeaf38 73// all - print usefull informations about the number of
74// misidentified tracks and a comparison about the
75// true configuration (known from MC) and the best
d599d913 76// assignment
0e46b9ae 77//
d599d913 78//-- Author: F. Pierella
0e46b9ae 79//
80//_________________________________________________________________________
81
e939a978 82#include <TCanvas.h>
83#include <TClonesArray.h>
84#include <TFile.h>
85#include <TFolder.h>
86#include <TFrame.h>
87#include <TH1.h>
88#include <TParticle.h>
89#include <TBenchmark.h>
90#include <TTask.h>
91#include <TTree.h>
92#include <TRandom.h>
0e46b9ae 93
d3c7bfac 94#include "AliMC.h"
88cb7938 95#include "AliRun.h"
d3c7bfac 96
d599d913 97#include "AliTOFhitT0.h"
0e46b9ae 98#include "AliTOFT0.h"
99#include "AliTOF.h"
100
d599d913 101ClassImp(AliTOFT0)
102
103//____________________________________________________________________________
655e379f 104AliTOFT0::AliTOFT0():
105 TTask("AliTOFT0",""),
106 fNevents(0),
107 fTimeResolution(0),
108 fLowerMomBound(0),
109 fUpperMomBound(0),
110 fT0File(""),
111 fHeadersFile("")
d599d913 112{
113 // ctor
d599d913 114}
115
116//____________________________________________________________________________
655e379f 117AliTOFT0::AliTOFT0(char* headerFile, Int_t nEvents):
118 TTask("AliTOFT0",""),
119 fNevents(nEvents),
120 fTimeResolution(1.2e-10),
121 fLowerMomBound(1.5),
122 fUpperMomBound(2.),
123 fT0File(""),
124 fHeadersFile(headerFile)
d599d913 125{
7aeeaf38 126 //
127 //
128 //
129
655e379f 130 //fNevents=nEvents ; // Number of events for which calculate the T0,
d599d913 131 // default 0: it means all evens in current file
655e379f 132 //fLowerMomBound=1.5; // [GeV/c] default value
133 //fUpperMomBound=2. ; // [GeV/c] default value
134 //fTimeResolution = 1.2e-10; // 120 ps by default
135 //fHeadersFile = headerFile ;
d599d913 136
137 TFile * file = (TFile*) gROOT->GetFile(fHeadersFile.Data() ) ;
138
139 //File was not opened yet
140 if(file == 0){
141 if(fHeadersFile.Contains("rfio"))
142 file = TFile::Open(fHeadersFile,"update") ;
143 else
144 file = new TFile(fHeadersFile.Data(),"update") ;
145 gAlice = (AliRun *) file->Get("gAlice") ;
146 }
147
148 // add Task to //root/Tasks folder
149 TTask * roottasks = (TTask*)gROOT->GetRootFolder()->FindObject("Tasks") ;
150 roottasks->Add(this) ;
151}
152
5c016a7b 153//____________________________________________________________________________
655e379f 154AliTOFT0::AliTOFT0(const AliTOFT0 & tzero):
155 TTask("AliTOFT0",""),
156 fNevents(0),
157 fTimeResolution(0),
158 fLowerMomBound(0),
159 fUpperMomBound(0),
160 fT0File(""),
161 fHeadersFile("")
5c016a7b 162{
7aeeaf38 163 // copy ctr
164
5c016a7b 165( (AliTOFT0 &)tzero ).Copy(*this);
166}
167
d599d913 168//____________________________________________________________________________
169 AliTOFT0::~AliTOFT0()
170{
171 // dtor
172}
173
174//____________________________________________________________________________
175void AliTOFT0::Exec(Option_t *option)
176{
177 //
178 // calculate T0 distribution for all events using chisquare
179 //
180 Int_t ngood=0;
181 Int_t nmisidentified=0;
182 Int_t nmisidentified0=0;
183 Int_t nmisidentified1=0;
184 Int_t nmisidentified2=0;
185 Int_t nmisidentified3=0;
186 Int_t nmisidentified4=0;
187 Int_t nmisidentified5=0;
188 Int_t nmisidentified6=0;
189 Int_t nmisidentified7=0;
190 Int_t nmisidentified8=0;
191 Int_t nmisidentified9=0;
192 Int_t ipartold = -1;
193 Int_t ipart;
194 Int_t selected=0;
195 Int_t istop=0;
196 Float_t timeresolutioninns=fTimeResolution*(1.e+9); // convert in [ns]
197 const Int_t kUPDATE = 5; // for visual option
198 Int_t itimes=0;
199 TCanvas* c1=0;
200 TCanvas* c2=0;
201 TCanvas* c3=0;
202
203 if(strstr(option,"visual")){
204 // Create a new canvas.
205 //c1 = new TCanvas("c1","Dynamic Visual Filling of time zero histo",10,10,500,500);
206 c1 = new TCanvas("c1","Dynamic Visual Filling of time zero histo",10,10,370,370);
207 c1->SetFillColor(35);
208 c1->GetFrame()->SetFillColor(21);
209 c1->GetFrame()->SetBorderSize(6);
210 c1->GetFrame()->SetBorderMode(-1);
211
212 //c2 = new TCanvas("c2","Dynamic Visual Filling of chisquare histo",550,10,500,500);
213 c2 = new TCanvas("c2","Dynamic Visual Filling of chisquare histo",380,10,370,370);
214 c2->SetFillColor(35);
215 c2->GetFrame()->SetFillColor(21);
216 c2->GetFrame()->SetBorderSize(6);
217 c2->GetFrame()->SetBorderMode(-1);
218
219 //c3 = new TCanvas("c3","Dynamic Visual Filling of confidence level histo",280,550,500,500);
220 c3 = new TCanvas("c3","Dynamic Visual Filling of confidence level histo",760,10,370,370);
221 c3->SetFillColor(35);
222 c3->GetFrame()->SetFillColor(21);
223 c3->GetFrame()->SetBorderSize(6);
224 c3->GetFrame()->SetBorderMode(-1);
225 }
226
227 if(strstr(option,"tim") || strstr(option,"all"))
228 gBenchmark->Start("TOFT0");
229
230 TH1F *htzerobest= new TH1F("htzerobest","T0 for best assignment",200,-1.,1.);
231 TH1F* hchibest = new TH1F("hchibest","ChiSquare Min Distribution",80,0.,40.);
232 TH1F* hchibestconflevel = new TH1F("hchibestconflevel","ChiSquare Min Confidence Level",10,0.,1.);
233
234 // setting histo colors
235 if(strstr(option,"visual")){
236 htzerobest->SetFillColor(48);
237 hchibest->SetFillColor(50);
238 hchibestconflevel->SetFillColor(52);
239 }
240
241 Int_t assparticle[10]={3,3,3,3,3,3,3,3,3,3};
242 Int_t truparticle[10]={3,3,3,3,3,3,3,3,3,3};
243 Float_t t0best=999.;
244 Float_t timeofflight[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
245 Float_t momentum[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
246 Float_t timezero[10];
247 Float_t weightedtimezero[10];
248 Float_t beta[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
249 Float_t sqMomError[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
250 Float_t sqTrackError[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
251 Float_t massarray[3]={0.13957,0.493677,0.9382723};
252 Float_t dummychisquare=0.;
253 Float_t chisquare=999.;
254 Float_t tracktoflen[10]={0.,0.,0.,0.,0.,0.,0.,0.,0.,0.};
255
7aeeaf38 256 AliTOF *detTOF = (AliTOF *) gAlice->GetDetector ("TOF");
d599d913 257
7aeeaf38 258 if (!detTOF) {
d599d913 259 Error("AliTOFT0","TOF not found");
260 return;
261 }
262
263 if(strstr(option,"all")){
0e46b9ae 264 AliInfo(Form("Selecting primary tracks with momentum between %d GeV/c and %d GeV/c", fLowerMomBound, fUpperMomBound));
265 AliInfo("Memorandum: 0 means PION | 1 means KAON | 2 means PROTON")
d599d913 266 }
267
268 if (fNevents == 0) fNevents = (Int_t) gAlice->TreeE()->GetEntries();
269
270 for (Int_t ievent = 0; ievent < fNevents; ievent++) {
271 gAlice->GetEvent(ievent);
7aeeaf38 272 TTree *hitTree = detTOF->TreeH ();
273 if (!hitTree)
d599d913 274 return;
275 TParticle* particle;
276 AliTOFhitT0* tofHit;
7aeeaf38 277 TClonesArray* tofHits = detTOF->Hits();
d599d913 278
279 Int_t lasttrack=-1;
280 Int_t nset=0;
5fff655e 281
7aeeaf38 282 hitTree->SetBranchStatus("*",0); // switch off all branches
283 hitTree->SetBranchStatus("TOF*",1); // switch on only TOF
5fff655e 284
d599d913 285 // Start loop on primary tracks in the hits containers
286
7aeeaf38 287 Int_t ntracks = static_cast<Int_t>(hitTree->GetEntries());
d599d913 288 for (Int_t track = 0; track < ntracks; track++)
289 {
290 if(nset>=5) break; // check on the number of set analyzed
291
292 gAlice->ResetHits();
7aeeaf38 293 hitTree->GetEvent(track);
0e46b9ae 294
295 AliMC *mcApplication = (AliMC*)gAlice->GetMCApp();
296
297 particle = mcApplication->Particle(track);
7aeeaf38 298 Int_t nhits = tofHits->GetEntriesFast();
d599d913 299
300 for (Int_t hit = 0; hit < nhits; hit++)
301 {
7aeeaf38 302 tofHit = (AliTOFhitT0 *) tofHits->UncheckedAt(hit);
d599d913 303 ipart = tofHit->GetTrack();
304 // check to discard the case when the same particle is selected more than one
305 // time
306
307 if (ipart != ipartold){
308
5d12ce38 309 particle = (TParticle*)gAlice->GetMCApp()->Particle(ipart);
d599d913 310
311 Float_t idealtime=tofHit->GetTof();
312 // Float_t time=idealtime;
313 Float_t time = gRandom->Gaus(idealtime, fTimeResolution);
314 Float_t toflen=tofHit->GetLen();
315 toflen=toflen/100.; // toflen given in m
316 Int_t pdg = particle->GetPdgCode();
317 Int_t abspdg =TMath::Abs(pdg);
318 Float_t idealmom = particle->P();
319 Float_t momres=idealmom*0.025; // 2.5% res token into account for all momenta
320 Float_t mom =gRandom->Gaus(idealmom,momres);
321
322 Bool_t isgoodpart=(abspdg==211 || abspdg==2212 || abspdg==321);
323
324 time*=1.E+9; // tof given in nanoseconds
325 if (particle->GetFirstMother() < 0 && isgoodpart && mom<=fUpperMomBound && mom>=fLowerMomBound){
326 selected+=1;
327 istop=selected;
328 if(istop>10) break;
329 Int_t index=selected-1;
330 timeofflight[index]=time;
331 tracktoflen[index]=toflen;
332 momentum[index]=mom;
0e46b9ae 333 //AliInfo(Form(" %d %d %d ", timeofflight[index], tracktoflen[index], momentum[index]));
d599d913 334 switch (abspdg) {
335 case 211:
336 truparticle[index]=0;
337 break ;
338 case 321:
339 truparticle[index]=1;
340 break ;
341 case 2212:
342 truparticle[index]=2;
343 break ;
344 }
345
346 }
347 ipartold = ipart;
348
349 if(istop==10){ // start analysis on current set
350 nset+=1;
351 lasttrack=track;
352 istop=0;
353 selected=0;
0e46b9ae 354 //AliInfo("starting t0 calculation for current set");
d599d913 355 for (Int_t i1=0; i1<3;i1++) {
ea7a588a 356 beta[0]=momentum[0]/sqrt(massarray[i1]*massarray[i1]+momentum[0]*momentum[0]);
d599d913 357 for (Int_t i2=0; i2<3;i2++) {
ea7a588a 358 beta[1]=momentum[1]/sqrt(massarray[i2]*massarray[i2]+momentum[1]*momentum[1]);
d599d913 359 for (Int_t i3=0; i3<3;i3++) {
ea7a588a 360 beta[2]=momentum[2]/sqrt(massarray[i3]*massarray[i3]+momentum[2]*momentum[2]);
d599d913 361 for (Int_t i4=0; i4<3;i4++) {
ea7a588a 362 beta[3]=momentum[3]/sqrt(massarray[i4]*massarray[i4]+momentum[3]*momentum[3]);
d599d913 363 for (Int_t i5=0; i5<3;i5++) {
ea7a588a 364 beta[4]=momentum[4]/sqrt(massarray[i5]*massarray[i5]+momentum[4]*momentum[4]);
d599d913 365 for (Int_t i6=0; i6<3;i6++) {
ea7a588a 366 beta[5]=momentum[5]/sqrt(massarray[i6]*massarray[i6]+momentum[5]*momentum[5]);
d599d913 367 for (Int_t i7=0; i7<3;i7++) {
ea7a588a 368 beta[6]=momentum[6]/sqrt(massarray[i7]*massarray[i7]+momentum[6]*momentum[6]);
d599d913 369 for (Int_t i8=0; i8<3;i8++) {
ea7a588a 370 beta[7]=momentum[7]/sqrt(massarray[i8]*massarray[i8]+momentum[7]*momentum[7]);
d599d913 371 for (Int_t i9=0; i9<3;i9++) {
ea7a588a 372 beta[8]=momentum[8]/sqrt(massarray[i9]*massarray[i9]+momentum[8]*momentum[8]);
d599d913 373 for (Int_t i10=0; i10<3;i10++) {
d599d913 374 beta[9]=momentum[9]/sqrt(massarray[i10]*massarray[i10]+momentum[9]*momentum[9]);
375
d599d913 376 Float_t meantzero=0.;
377 Float_t sumAllweights=0.;
378 for (Int_t itz=0; itz<10;itz++) {
379 sqMomError[itz]=((1.-beta[itz]*beta[itz])*0.025)*((1.-beta[itz]*beta[itz])*0.025)*(tracktoflen[itz]/(0.299792*beta[itz]))*(tracktoflen[itz]/(0.299792*beta[itz])); // this gives the square of the momentum error in nanoseconds
380 sqTrackError[itz]=(timeresolutioninns*timeresolutioninns+sqMomError[itz]); // total error for the current track
381 sumAllweights+=1./sqTrackError[itz];
ea7a588a 382
383 timezero[itz]=(tracktoflen[itz]/(beta[itz]*0.299792))-timeofflight[itz];
384 weightedtimezero[itz]=((tracktoflen[itz]/(beta[itz]*0.299792))-timeofflight[itz])/sqTrackError[itz];// weighted time zero for current track
d599d913 385 meantzero+=weightedtimezero[itz];
386 } // end loop for (Int_t itz=0; itz<10;itz++)
387 meantzero=meantzero/sumAllweights; // it is given in [ns]
388
389 dummychisquare=0.;
390 // calculate the chisquare for the current assignment
391 for (Int_t icsq=0; icsq<10;icsq++) {
392 dummychisquare+=(timezero[icsq]-meantzero)*(timezero[icsq]-meantzero)/sqTrackError[icsq];
393 } // end loop for (Int_t icsq=0; icsq<10;icsq++)
394
395 if(dummychisquare<=chisquare){
396 assparticle[0]=i1;
397 assparticle[1]=i2;
398 assparticle[2]=i3;
399 assparticle[3]=i4;
400 assparticle[4]=i5;
401 assparticle[5]=i6;
402 assparticle[6]=i7;
403 assparticle[7]=i8;
404 assparticle[8]=i9;
405 assparticle[9]=i10;
406 chisquare=dummychisquare;
407 t0best=meantzero;
408 } // close if(dummychisquare<=chisquare)
409
410 } // end loop on i10
411 } // end loop on i9
412 } // end loop on i8
413 } // end loop on i7
414 } // end loop on i6
415 } // end loop on i5
416 } // end loop on i4
417 } // end loop on i3
418 } // end loop on i2
419 } // end loop on i1
420
421 if(truparticle[0]==assparticle[0] && truparticle[1]==assparticle[1] && truparticle[2]==assparticle[2] && truparticle[3]==assparticle[3] && truparticle[4]==assparticle[4]&& truparticle[5]==assparticle[5] && truparticle[6]==assparticle[6] && truparticle[7]==assparticle[7] && truparticle[8]==assparticle[8] && truparticle[9]==assparticle[9]) ngood+=1;
422 if(truparticle[0]!=assparticle[0]) nmisidentified0+=1;
423 if(truparticle[1]!=assparticle[1]) nmisidentified1+=1;
424 if(truparticle[2]!=assparticle[2]) nmisidentified2+=1;
425 if(truparticle[3]!=assparticle[3]) nmisidentified3+=1;
426 if(truparticle[4]!=assparticle[4]) nmisidentified4+=1;
427 if(truparticle[5]!=assparticle[5]) nmisidentified5+=1;
428 if(truparticle[6]!=assparticle[6]) nmisidentified6+=1;
429 if(truparticle[7]!=assparticle[7]) nmisidentified7+=1;
430 if(truparticle[8]!=assparticle[8]) nmisidentified8+=1;
431 if(truparticle[9]!=assparticle[9]) nmisidentified9+=1;
432 // filling histos
433 htzerobest->Fill(t0best);
434 hchibest->Fill(chisquare);
435 Double_t dblechisquare=(Double_t)chisquare;
436 Float_t confLevel=(Float_t)TMath::Prob(dblechisquare,9); // ndf 10-1=9
437 hchibestconflevel->Fill(confLevel);
438 itimes++;
439 if(strstr(option,"all")){
0e46b9ae 440 AliInfo(Form("True Assignment %d %d %d %d %d %d %d %d %d %d", truparticle[0], truparticle[1], truparticle[2], truparticle[3], truparticle[4], truparticle[5], truparticle[6], truparticle[7], truparticle[8], truparticle[9]));
441 AliInfo(Form("Best Assignment %d %d %d %d %d %d %d %d %d %d", assparticle[0], assparticle[1], assparticle[2], assparticle[3], assparticle[4], assparticle[5], assparticle[6], assparticle[7], assparticle[8], assparticle[9]));
442 AliInfo(Form("Minimum ChiSquare for current set %d ", chisquare));
443 AliInfo(Form("Confidence Level (Minimum ChiSquare) %d", confLevel));
d599d913 444 }
445 if (strstr(option,"visual") && itimes && (itimes%kUPDATE) == 0) {
446 if (itimes == kUPDATE){
447 c1->cd();
448 htzerobest->Draw();
449 c2->cd();
450 hchibest->Draw();
451 c3->cd();
452 hchibestconflevel->Draw();
453 }
454 c1->Modified();
455 c1->Update();
456 c2->Modified();
457 c2->Update();
458 c3->Modified();
459 c3->Update();
460 if (gSystem->ProcessEvents())
461 break;
462 }
463 chisquare=999.;
464 t0best=999.;
465
466 } // end for the current set. close if(istop==5)
467 } // end condition on ipartold
468 } // end loop on hits for the current track
469 if(istop>=10) break;
470 } // end loop on ntracks
471 } //event loop
472
473 if(strstr(option,"all")){
474 nmisidentified=(nmisidentified0+nmisidentified1+nmisidentified2+nmisidentified3+nmisidentified4+nmisidentified5+nmisidentified6+nmisidentified7+nmisidentified8+nmisidentified9);
0e46b9ae 475 AliInfo(Form("total number of tracks token into account %i", 10*5*fNevents));
d599d913 476 Float_t badPercentage=100.*(Float_t)nmisidentified/(10*5*fNevents);
0e46b9ae 477 AliInfo(Form("total misidentified %i (%d %) ", nmisidentified, badPercentage));
478 AliInfo(Form("Total Number of set token into account %i", 5*fNevents));
d599d913 479 Float_t goodSetPercentage=100.*(Float_t)ngood/(5*fNevents);
0e46b9ae 480 AliInfo(Form("Number of set with no misidentified tracks %i (%d %)", ngood, goodSetPercentage));
d599d913 481 }
482
483 // free used memory for canvas
484 delete c1; c1=0;
485 delete c2; c2=0;
486 delete c3; c3=0;
487
488 // generating output filename only if not previously specified using SetTZeroFile
489 char outFileName[70];
490 strcpy(outFileName,"ht010tr120ps"); // global time resolution has to be converted from Int_t to char
491 // in order to have in the output filename this parameter
492 strcat(outFileName,fHeadersFile);
493
494 if(fT0File.IsNull()) fT0File=outFileName;
495
496 TFile* houtfile = new TFile(fT0File,"recreate");
497 houtfile->cd();
498 htzerobest->Write(0,TObject::kOverwrite);
499 hchibest->Write(0,TObject::kOverwrite);
500 hchibestconflevel->Write(0,TObject::kOverwrite);
501 houtfile->Close();
502
503
504 if(strstr(option,"tim") || strstr(option,"all")){
505 gBenchmark->Stop("TOFT0");
0e46b9ae 506 AliInfo("AliTOFT0:");
507 /*
d599d913 508 cout << " took " << gBenchmark->GetCpuTime("TOFT0") << " seconds in order to calculate T0 "
0e46b9ae 509 << gBenchmark->GetCpuTime("TOFT0")/fNevents << " seconds per event " << endl ;
510 */
511 gBenchmark->Print("TOFT0");
d599d913 512 }
513}
514
515//__________________________________________________________________
7aeeaf38 516void AliTOFT0::SetTZeroFile(char * file )
517{
518 //
519 //
520 //
521 printf("Destination file : %s \n", file) ;
d599d913 522 fT0File=file;
7aeeaf38 523
d599d913 524}
7aeeaf38 525
d599d913 526//__________________________________________________________________
5c016a7b 527void AliTOFT0::Print(Option_t* /*option*/)const
d599d913 528{
7aeeaf38 529 //
530 //
531 //
532 printf("------------------- %s -------------\n", GetName()) ;
d599d913 533 if(!fT0File.IsNull())
7aeeaf38 534 printf(" Writing T0 Distribution to file %s \n",(char*) fT0File.Data());
535
d599d913 536}
537
538//__________________________________________________________________
539Bool_t AliTOFT0::operator==( AliTOFT0 const &tzero )const
540{
7aeeaf38 541 //
542 // Equal operator
d599d913 543 //
544
545 if( (fTimeResolution==tzero.fTimeResolution)&&(fLowerMomBound==tzero.fLowerMomBound)&&(fUpperMomBound==tzero.fUpperMomBound))
546 return kTRUE ;
547 else
548 return kFALSE ;
549}