]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliRunDigitizer.cxx
- TrackReference related methods and data members moved from AliDetector to AliModule
[u/mrichter/AliRoot.git] / STEER / AliRunDigitizer.cxx
CommitLineData
9ce40367 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
acd84897 16/* $Id$ */
9ce40367 17
18////////////////////////////////////////////////////////////////////////
19//
20// AliRunDigitizer.cxx
21//
22// Manager object for merging/digitization
23//
24// Instance of this class manages the digitization and/or merging of
25// Sdigits into Digits.
26//
27// Only one instance of this class is created in the macro:
a90ecf3c 28// AliRunDigitizer * manager =
29// new AliRunDigitizer(nInputStreams,SPERB);
30// where nInputStreams is number of input streams and SPERB is
31// signals per background variable, which determines how combinations
32// of signal and background events are generated.
9ce40367 33// Then instances of specific detector digitizers are created:
34// AliMUONDigitizer *dMUON = new AliMUONDigitizer(manager)
a90ecf3c 35// and the I/O configured (you have to specify input files
36// and an output file). The manager connects appropriate trees from
37// the input files according a combination returned by AliMergeCombi
9ae76683 38// class. It creates TreeD in the output and runs once per
a90ecf3c 39// event Digitize method of all existing AliDetDigitizers
40// (without any option). AliDetDigitizers ask manager
41// for a TTree with input (manager->GetInputTreeS(Int_t i),
9ce40367 42// merge all inputs, digitize it, and save it in the TreeD
43// obtained by manager->GetTreeD(). Output events are stored with
44// numbers from 0, this default can be changed by
45// manager->SetFirstOutputEventNr(Int_t) method. The particle numbers
46// in the output are shifted by MASK, which is taken from manager.
47//
8d5e6345 48// The default output is to the signal file (stream 0). This can be
49// changed with the SetOutputFile(TString fn) method.
50//
9ae76683 51// Single input file is permitted. Maximum kMaxStreamsToMerge can be merged.
9ce40367 52// Input from the memory (on-the-fly merging) is not yet
53// supported, as well as access to the input data by invoking methods
54// on the output data.
55//
a90ecf3c 56// Access to the some data is via gAlice for now (supposing the
57// same geometry in all input files), gAlice is taken from the first
58// input file on the first stream.
9ce40367 59//
314558d7 60// Example with MUON digitizer, no merging, just digitization
61//
62// AliRunDigitizer * manager = new AliRunDigitizer(1,1);
63// manager->SetInputStream(0,"galice.root");
64// AliMUONDigitizer *dMUON = new AliMUONDigitizer(manager);
65// manager->Exec("");
66//
67// Example with MUON digitizer, merge all events from
68// galice.root (signal) file with events from bgr.root
69// (background) file. Number of merged events is
70// min(number of events in galice.root, number of events in bgr.root)
71//
72// AliRunDigitizer * manager = new AliRunDigitizer(2,1);
73// manager->SetInputStream(0,"galice.root");
74// manager->SetInputStream(1,"bgr.root");
75// AliMUONDigitizer *dMUON = new AliMUONDigitizer(manager);
76// manager->Exec("");
77//
78// Example with MUON digitizer, save digits in a new file digits.root,
79// process only 1 event
9ce40367 80//
a90ecf3c 81// AliRunDigitizer * manager = new AliRunDigitizer(2,1);
314558d7 82// manager->SetInputStream(0,"galice.root");
83// manager->SetInputStream(1,"bgr.root");
a90ecf3c 84// manager->SetOutputFile("digits.root");
85// AliMUONDigitizer *dMUON = new AliMUONDigitizer(manager);
86// manager->SetNrOfEventsToWrite(1);
8d5e6345 87// manager->Exec("");
9ce40367 88//
89////////////////////////////////////////////////////////////////////////
90
91// system includes
92
b16a1b1e 93#include <Riostream.h>
9ce40367 94
95// ROOT includes
96
97#include "TFile.h"
8d5e6345 98#include "TList.h"
e2afb3b6 99#include "TTree.h"
9ce40367 100
101// AliROOT includes
102
9ce40367 103#include "AliDigitizer.h"
a90ecf3c 104#include "AliMergeCombi.h"
e2afb3b6 105#include "AliRun.h"
106#include "AliRunDigitizer.h"
107#include "AliStream.h"
9ce40367 108
109ClassImp(AliRunDigitizer)
110
e2afb3b6 111//_______________________________________________________________________
112AliRunDigitizer::AliRunDigitizer():
113 fkMASKSTEP(0),
114 fOutputFileName(0),
115 fOutputDirName(0),
116 fOutput(0),
117 fEvent(0),
118 fNrOfEventsToWrite(0),
119 fNrOfEventsWritten(0),
120 fCopyTreesFromInput(0),
121 fTreeD(0),
122 fTreeDTPC(0),
123 fTreeDTRD(0),
124 fTreeR(0),
125 fNinputs(0),
126 fNinputsGiven(0),
127 fInputStreams(0),
128 fTreeDTPCBaseName(0),
129 fTreeTPCSBaseName(0),
130 fCombi(0),
131 fCombination(0),
132 fCombinationFileName(0),
133 fDebug(0)
314558d7 134{
e2afb3b6 135 //
136 // default ctor, where no new objects can be created
137 // do not use this ctor, it is supplied only for root needs
138 //
314558d7 139 for (Int_t i=0;i<kMaxStreamsToMerge;i++) {
140 fArrayTreeS[i]=fArrayTreeH[i]=fArrayTreeTPCS[i]=fArrayTreeTRDS[i]=NULL;
141 fInputFiles[i]=0;
142 }
e2afb3b6 143}
314558d7 144
e2afb3b6 145//_______________________________________________________________________
146AliRunDigitizer::AliRunDigitizer(const AliRunDigitizer& dig):
147 TTask(dig),
148 fkMASKSTEP(0),
149 fOutputFileName(0),
150 fOutputDirName(0),
151 fOutput(0),
152 fEvent(0),
153 fNrOfEventsToWrite(0),
154 fNrOfEventsWritten(0),
155 fCopyTreesFromInput(0),
156 fTreeD(0),
157 fTreeDTPC(0),
158 fTreeDTRD(0),
159 fTreeR(0),
160 fNinputs(0),
161 fNinputsGiven(0),
162 fInputStreams(0),
163 fTreeDTPCBaseName(0),
164 fTreeTPCSBaseName(0),
165 fCombi(0),
166 fCombination(0),
167 fCombinationFileName(0),
168 fDebug(0)
169{
170 //
171 // Copy ctor
172 //
173 dig.Copy(*this);
314558d7 174}
175
e2afb3b6 176//_______________________________________________________________________
177void AliRunDigitizer::Copy(AliRunDigitizer&) const
a90ecf3c 178{
e2afb3b6 179 Fatal("Copy","Not installed\n");
180}
181
182
183//_______________________________________________________________________
184AliRunDigitizer::AliRunDigitizer(Int_t nInputStreams, Int_t sperb):
185 TTask("AliRunDigitizer","The manager for Merging"),
186 fkMASKSTEP(10000000),
187 fOutputFileName(""),
188 fOutputDirName("."),
189 fOutput(0),
190 fEvent(0),
191 fNrOfEventsToWrite(-1),
192 fNrOfEventsWritten(0),
193 fCopyTreesFromInput(-1),
194 fTreeD(0),
195 fTreeDTPC(0),
196 fTreeDTRD(0),
197 fTreeR(0),
198 fNinputs(nInputStreams),
199 fNinputsGiven(0),
200 fInputStreams(new TClonesArray("AliStream",nInputStreams)),
201 fTreeDTPCBaseName("TreeD_75x40_100x60_150x60_"),
202 fTreeTPCSBaseName("TreeS_75x40_100x60_150x60_"),
203 fCombi(new AliMergeCombi(nInputStreams,sperb)),
204 fCombination(kMaxStreamsToMerge),
205 fCombinationFileName(0),
206 fDebug(0)
207{
208 //
209 // ctor which should be used to create a manager for merging/digitization
210 //
a90ecf3c 211 if (nInputStreams == 0) {
212 Error("AliRunDigitizer","Specify nr of input streams");
213 return;
214 }
e2afb3b6 215 for (Int_t i=0;i<kMaxStreamsToMerge;i++) {
314558d7 216 fArrayTreeS[i]=fArrayTreeH[i]=fArrayTreeTPCS[i]=fArrayTreeTRDS[i]=NULL;
9ce40367 217 fCombination[i]=-1;
218 }
9ce40367 219 fkMASK[0] = 0;
e2afb3b6 220 for (Int_t i=1;i<kMaxStreamsToMerge;i++) {
9ce40367 221 fkMASK[i] = fkMASK[i-1] + fkMASKSTEP;
222 }
e2afb3b6 223
a90ecf3c 224 TClonesArray &lInputStreams = *fInputStreams;
8d5e6345 225// the first Input is open RW to be output as well
226 new(lInputStreams[0]) AliStream("UPDATE");
e2afb3b6 227 for (Int_t i=1;i<nInputStreams;i++) {
314558d7 228 new(lInputStreams[i]) AliStream("READ");
a90ecf3c 229 }
9ce40367 230
e2afb3b6 231 for (Int_t i=0; i<kMaxStreamsToMerge; i++) fInputFiles[i]=0;
232}
9ce40367 233
e2afb3b6 234//_______________________________________________________________________
9ce40367 235AliRunDigitizer::~AliRunDigitizer() {
236// dtor
237
1c16a4ba 238// do not delete subtasks, let the creator delete them
239 if (GetListOfTasks())
240 GetListOfTasks()->Clear("nodelete");
241
a90ecf3c 242 delete fInputStreams;
a90ecf3c 243 delete fCombi;
9ce40367 244}
e2afb3b6 245
246//_______________________________________________________________________
9ce40367 247void AliRunDigitizer::AddDigitizer(AliDigitizer *digitizer)
248{
249// add digitizer to the list of active digitizers
8d5e6345 250 this->Add(digitizer);
9ce40367 251}
e2afb3b6 252
253//_______________________________________________________________________
3466e07f 254void AliRunDigitizer::SetInputStream(Int_t i, const char *inputFile)
9ce40367 255{
116cbefd 256 //
257 // Sets the name of the input file
258 //
a90ecf3c 259 if (i > fInputStreams->GetLast()) {
260 Error("SetInputStream","Input stream number too high");
261 return;
9ce40367 262 }
a90ecf3c 263 static_cast<AliStream*>(fInputStreams->At(i))->AddFile(inputFile);
9ce40367 264}
265
e2afb3b6 266//_______________________________________________________________________
8d5e6345 267void AliRunDigitizer::Digitize(Option_t* option)
9ce40367 268{
269// get a new combination of inputs, connect input trees and loop
270// over all digitizers
271
9ce40367 272// take gAlice from the first input file. It is needed to access
273// geometry data
f042097d 274// If gAlice is already in memory, use it
275 if (!gAlice) {
276 if (!static_cast<AliStream*>(fInputStreams->At(0))->ImportgAlice()) {
277 cerr<<"gAlice object not found in the first file of "
278 <<"the 1st stream"<<endl;
279 return;
280 }
a90ecf3c 281 }
7e68127f 282 if (!InitGlobal()) {
283 cerr<<"False from InitGlobal"<<endl;
284 return;
285 }
a90ecf3c 286 Int_t eventsCreated = 0;
8d5e6345 287// loop until there is anything on the input in case fNrOfEventsToWrite < 0
288 while ((eventsCreated++ < fNrOfEventsToWrite) || (fNrOfEventsToWrite < 0)) {
289 if (!ConnectInputTrees()) break;
a90ecf3c 290 InitEvent();
9ce40367 291// loop over all registered digitizers and let them do the work
f042097d 292 ExecuteTasks(option);
8d5e6345 293 CleanTasks();
a90ecf3c 294 FinishEvent();
9ce40367 295 }
296 FinishGlobal();
297}
298
e2afb3b6 299//_______________________________________________________________________
a90ecf3c 300Bool_t AliRunDigitizer::ConnectInputTrees()
9ce40367 301{
302// fill arrays fArrayTreeS, fArrayTreeH and fArrayTreeTPCS with
303// pointers to the correct events according fCombination values
304// null pointers can be in the output, AliDigitizer has to check it
305
9ce40367 306 TTree *tree;
8d5e6345 307 char treeName[50];
a90ecf3c 308 Int_t serialNr;
9ae76683 309 Int_t eventNr[kMaxStreamsToMerge], delta[kMaxStreamsToMerge];
a90ecf3c 310 fCombi->Combination(eventNr, delta);
9ce40367 311 for (Int_t i=0;i<fNinputs;i++) {
a90ecf3c 312 if (delta[i] == 1) {
313 AliStream *iStream = static_cast<AliStream*>(fInputStreams->At(i));
314 if (!iStream->NextEventInStream(serialNr)) return kFALSE;
8d5e6345 315 fInputFiles[i]=iStream->CurrentFile();
a90ecf3c 316 sprintf(treeName,"TreeS%d",serialNr);
317 tree = static_cast<TTree*>(iStream->CurrentFile()->Get(treeName));
f042097d 318 if (fArrayTreeS[i]) {
319 delete fArrayTreeS[i];
320 fArrayTreeS[i] = 0;
321 }
a90ecf3c 322 fArrayTreeS[i] = tree;
323 sprintf(treeName,"TreeH%d",serialNr);
324 tree = static_cast<TTree*>(iStream->CurrentFile()->Get(treeName));
f042097d 325 if (fArrayTreeH[i]) {
326 delete fArrayTreeH[i];
327 fArrayTreeH[i] = 0;
328 }
a90ecf3c 329 fArrayTreeH[i] = tree;
f042097d 330 sprintf(treeName,"%s%d",fTreeTPCSBaseName,serialNr);
a90ecf3c 331 tree = static_cast<TTree*>(iStream->CurrentFile()->Get(treeName));
f042097d 332 if (fArrayTreeTPCS[i]) {
333 delete fArrayTreeTPCS[i];
334 fArrayTreeTPCS[i] = 0;
335 }
a90ecf3c 336 fArrayTreeTPCS[i] = tree;
f34e67f9 337 sprintf(treeName,"TreeS%d_TRD",serialNr);
338 tree = static_cast<TTree*>(iStream->CurrentFile()->Get(treeName));
f042097d 339 if (fArrayTreeTRDS[i]) {
340 delete fArrayTreeTRDS[i];
341 fArrayTreeTRDS[i] = 0;
342 }
f34e67f9 343 fArrayTreeTRDS[i] = tree;
a90ecf3c 344 } else if (delta[i] != 0) {
345 Error("ConnectInputTrees","Only delta 0 or 1 is implemented");
346 return kFALSE;
347 }
348 }
349 return kTRUE;
9ce40367 350}
351
e2afb3b6 352//_______________________________________________________________________
9ce40367 353Bool_t AliRunDigitizer::InitGlobal()
354{
355// called once before Digitize() is called, initialize digitizers and output
356
e2afb3b6 357 TList* subTasks = GetListOfTasks();
8d5e6345 358 if (subTasks) {
1c0b669a 359 // subTasks->ForEach(AliDigitizer,Init)();
360 TIter next(subTasks);
361 while (AliDigitizer * dig = (AliDigitizer *) next())
362 dig->Init();
8d5e6345 363 }
9ce40367 364 return kTRUE;
365}
366
e2afb3b6 367//_______________________________________________________________________
8d5e6345 368void AliRunDigitizer::SetOutputFile(TString fn)
8d5e6345 369{
116cbefd 370 // the output will be to separate file, not to the signal file
8d5e6345 371 fOutputFileName = fn;
372 (static_cast<AliStream*>(fInputStreams->At(0)))->ChangeMode("READ");
373 InitOutputGlobal();
374}
375
e2afb3b6 376//_______________________________________________________________________
9ce40367 377Bool_t AliRunDigitizer::InitOutputGlobal()
378{
8d5e6345 379// Creates the output file, called by InitEvent()
9ce40367 380
381 TString fn;
382 fn = fOutputDirName + '/' + fOutputFileName;
9b31ff31 383 fOutput = new TFile(fn,"update");
9ce40367 384 if (GetDebug()>2) {
8d5e6345 385 cerr<<"AliRunDigitizer::InitOutputGlobal(): file "<<fn.Data()<<" was opened"<<endl;
9ce40367 386 }
387 if (fOutput) return kTRUE;
388 Error("InitOutputGlobal","Could not create output file.");
389 return kFALSE;
390}
391
392
e2afb3b6 393//_______________________________________________________________________
a90ecf3c 394void AliRunDigitizer::InitEvent()
9ce40367 395{
396// Creates TreeDxx in the output file, called from Digitize() once for
397// each event. xx = fEvent
398
399 if (GetDebug()>2)
a90ecf3c 400 cerr<<"AliRunDigitizer::InitEvent: fEvent = "<<fEvent<<endl;
8d5e6345 401
402// if fOutputFileName was not given, write output to signal file
403 if (fOutputFileName == "") {
404 fOutput = (static_cast<AliStream*>(fInputStreams->At(0)))->CurrentFile();
405 }
9ce40367 406 fOutput->cd();
8d5e6345 407 char treeName[30];
408 sprintf(treeName,"TreeD%d",fEvent);
409 fTreeD = static_cast<TTree*>(fOutput->Get(treeName));
410 if (!fTreeD) {
411 fTreeD = new TTree(treeName,"Digits");
412 fTreeD->Write(0,TObject::kOverwrite);
413 }
f34e67f9 414
a08ddb28 415// tree for ITS fast points
416 sprintf(treeName,"TreeR%d",fEvent);
417 fTreeR = static_cast<TTree*>(fOutput->Get(treeName));
418 if (!fTreeR) {
419 fTreeR = new TTree(treeName,"Reconstruction");
420 fTreeR->Write(0,TObject::kOverwrite);
421 }
422
f34e67f9 423// special tree for TPC
f042097d 424 sprintf(treeName,"%s%d",fTreeDTPCBaseName,fEvent);
f34e67f9 425 fTreeDTPC = static_cast<TTree*>(fOutput->Get(treeName));
426 if (!fTreeDTPC) {
427 fTreeDTPC = new TTree(treeName,"TPC_Digits");
428 fTreeDTPC->Write(0,TObject::kOverwrite);
429 }
430
431// special tree for TRD
432 sprintf(treeName,"TreeD%d_TRD",fEvent);
433 fTreeDTRD = static_cast<TTree*>(fOutput->Get(treeName));
434 if (!fTreeDTRD) {
435 fTreeDTRD = new TTree(treeName,"TRD_Digits");
436 fTreeDTRD->Write(0,TObject::kOverwrite);
437 }
438
9ce40367 439}
440
e2afb3b6 441//_______________________________________________________________________
a90ecf3c 442void AliRunDigitizer::FinishEvent()
9ce40367 443{
444// called at the end of loop over digitizers
445
f042097d 446 Int_t i;
9ce40367 447 fOutput->cd();
448 if (fCopyTreesFromInput > -1) {
449 char treeName[20];
f042097d 450 i = fCopyTreesFromInput;
9ce40367 451 sprintf(treeName,"TreeK%d",fCombination[i]);
8d5e6345 452 fInputFiles[i]->Get(treeName)->Clone()->Write();
9ce40367 453 sprintf(treeName,"TreeH%d",fCombination[i]);
8d5e6345 454 fInputFiles[i]->Get(treeName)->Clone()->Write();
9ce40367 455 }
456 fEvent++;
457 fNrOfEventsWritten++;
458 if (fTreeD) {
459 delete fTreeD;
460 fTreeD = 0;
461 }
a08ddb28 462 if (fTreeR) {
463 delete fTreeR;
464 fTreeR = 0;
465 }
f34e67f9 466 if (fTreeDTPC) {
467 delete fTreeDTPC;
468 fTreeDTPC = 0;
469 }
470 if (fTreeDTRD) {
471 delete fTreeDTRD;
472 fTreeDTRD = 0;
473 }
9ce40367 474}
e2afb3b6 475
476//_______________________________________________________________________
9ce40367 477void AliRunDigitizer::FinishGlobal()
478{
479// called at the end of Exec
480// save unique objects to the output file
481
482 fOutput->cd();
9b31ff31 483 this->Write(0,TObject::kOverwrite);
9ce40367 484 if (fCopyTreesFromInput > -1) {
8d5e6345 485 fInputFiles[fCopyTreesFromInput]->Get("TE")->Clone()->Write();
9ce40367 486 gAlice->Write();
487 }
3c2f4fb2 488 fOutput->Write();
9ce40367 489}
490
491
e2afb3b6 492//_______________________________________________________________________
9ae76683 493Int_t AliRunDigitizer::GetNParticles(Int_t event) const
9ce40367 494{
495// return number of particles in all input files for a given
496// event (as numbered in the output file)
497// return -1 if some file cannot be accessed
498
499 Int_t sum = 0;
500 Int_t sumI;
501 for (Int_t i = 0; i < fNinputs; i++) {
502 sumI = GetNParticles(GetInputEventNumber(event,i), i);
503 if (sumI < 0) return -1;
504 sum += sumI;
505 }
506 return sum;
507}
508
e2afb3b6 509//_______________________________________________________________________
510Int_t AliRunDigitizer::GetNParticles(Int_t /* event */, Int_t /* input */) const
9ce40367 511{
512// return number of particles in input file input for a given
513// event (as numbered in this input file)
514// return -1 if some error
515
bd7a3098 516// Must be revised in the version with AliStream
517
518 return -1;
519
520/*
9ce40367 521 TFile *file = ConnectInputFile(input);
522 if (!file) {
523 Error("GetNParticles","Cannot open input file");
524 return -1;
525 }
526
527// find the header and get Nprimaries and Nsecondaries
528 TTree* tE = (TTree *)file->Get("TE") ;
529 if (!tE) {
530 Error("GetNParticles","input file does not contain TE");
531 return -1;
532 }
533 AliHeader* header;
534 header = 0;
535 tE->SetBranchAddress("Header", &header);
536 if (!tE->GetEntry(event)) {
537 Error("GetNParticles","event %d not found",event);
538 return -1;
539 }
540 if (GetDebug()>2) {
541 cerr<<"Nprimary: "<< header->GetNprimary()<<endl;
542 cerr<<"Nsecondary: "<<header->GetNsecondary()<<endl;
543 }
544 return header->GetNprimary() + header->GetNsecondary();
bd7a3098 545*/
9ce40367 546}
547
e2afb3b6 548//_______________________________________________________________________
9ae76683 549Int_t* AliRunDigitizer::GetInputEventNumbers(Int_t event) const
9ce40367 550{
551// return pointer to an int array with input event numbers which were
552// merged in the output event event
553
554// simplified for now, implement later
9ae76683 555 Int_t * a = new Int_t[kMaxStreamsToMerge];
9ce40367 556 for (Int_t i = 0; i < fNinputs; i++) {
557 a[i] = event;
558 }
559 return a;
560}
e2afb3b6 561
562//_______________________________________________________________________
563Int_t AliRunDigitizer::GetInputEventNumber(Int_t event, Int_t /* input */) const
9ce40367 564{
565// return an event number of an eventInput from input file input
566// which was merged to create output event event
567
568// simplified for now, implement later
569 return event;
570}
e2afb3b6 571
572//_______________________________________________________________________
9ae76683 573TParticle* AliRunDigitizer::GetParticle(Int_t i, Int_t event) const
9ce40367 574{
575// return pointer to particle with index i (index with mask)
576
577// decode the MASK
578 Int_t input = i/fkMASKSTEP;
579 return GetParticle(i,input,GetInputEventNumber(event,input));
580}
581
e2afb3b6 582//_______________________________________________________________________
583TParticle* AliRunDigitizer::GetParticle(Int_t /* i */, Int_t /* input */,
584 Int_t /* event */) const
9ce40367 585{
586// return pointer to particle with index i in the input file input
587// (index without mask)
588// event is the event number in the file input
8d5e6345 589// return 0 i fit does not exist
bd7a3098 590
591// Must be revised in the version with AliStream
9ce40367 592
bd7a3098 593 return 0;
594/*
9ce40367 595 TFile *file = ConnectInputFile(input);
596 if (!file) {
597 Error("GetParticle","Cannot open input file");
598 return 0;
599 }
600
601// find the header and get Nprimaries and Nsecondaries
602 TTree* tE = (TTree *)file->Get("TE") ;
603 if (!tE) {
604 Error("GetParticle","input file does not contain TE");
605 return 0;
606 }
607 AliHeader* header;
608 header = 0;
609 tE->SetBranchAddress("Header", &header);
610 if (!tE->GetEntry(event)) {
611 Error("GetParticle","event %d not found",event);
612 return 0;
613 }
614
615// connect TreeK
616 char treeName[30];
617 sprintf(treeName,"TreeK%d",event);
618 TTree* tK = static_cast<TTree*>(file->Get(treeName));
619 if (!tK) {
620 Error("GetParticle","input file does not contain TreeK%d",event);
621 return 0;
622 }
623 TParticle *particleBuffer;
624 particleBuffer = 0;
625 tK->SetBranchAddress("Particles", &particleBuffer);
626
627
628// algorithmic way of getting entry index
629// (primary particles are filled after secondaries)
630 Int_t entry;
631 if (i<header->GetNprimary())
632 entry = i+header->GetNsecondary();
633 else
634 entry = i-header->GetNprimary();
9ce40367 635 Int_t bytesRead = tK->GetEntry(entry);
636// new ((*fParticles)[nentries]) TParticle(*fParticleBuffer);
637 if (bytesRead)
638 return particleBuffer;
639 return 0;
bd7a3098 640*/
9ce40367 641}
8d5e6345 642
e2afb3b6 643//_______________________________________________________________________
8d5e6345 644void AliRunDigitizer::ExecuteTask(Option_t* option)
645{
646// overwrite ExecuteTask to do Digitize only
9ce40367 647
8d5e6345 648 if (!IsActive()) return;
649 Digitize(option);
650 fHasExecuted = kTRUE;
651 return;
652}
e2afb3b6 653
654//_______________________________________________________________________
2e3dd5e5 655TString AliRunDigitizer::GetInputFileName(const Int_t input, const Int_t order) const
656{
657// returns file name of the order-th file in the input stream input
658// returns empty string if such file does not exist
659// first input stream is 0
660// first file in the input stream is 0
661 TString fileName("");
662 if (input >= fNinputs) return fileName;
663 AliStream * stream = static_cast<AliStream*>(fInputStreams->At(input));
664 if (order > stream->GetNInputFiles()) return fileName;
665 fileName = stream->GetFileName(order);
666 return fileName;
667}