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