]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliRunDigitizer.h
Added functions needed for SDD new SDigits/Digits (Add and fSigmaAfterElect).
[u/mrichter/AliRoot.git] / STEER / AliRunDigitizer.h
CommitLineData
9ce40367 1#ifndef ALIRUNDIGITIZER_H
2#define ALIRUNDIGITIZER_H
3/* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////////////////////////////
9//
10// Manager Class for Merging/Digitization
11//
12// Author: Jiri Chudoba (CERN)
13//
14////////////////////////////////////////////////////////////////////////
15
16// --- ROOT system ---
17#include "TNamed.h"
18#include "TObjString.h"
19#include "TArrayI.h"
20#include "TClonesArray.h"
21#include "TTree.h"
22#include "TParticle.h"
8d5e6345 23#include "TTask.h"
9ce40367 24
9ae76683 25const Int_t kMaxStreamsToMerge = 4;
9ce40367 26
27// --- AliRoot header files ---
28
29class AliDigitizer;
a90ecf3c 30class AliMergeCombi;
9ce40367 31
8d5e6345 32class AliRunDigitizer: public TTask {
9ce40367 33
34public:
314558d7 35 AliRunDigitizer();
36 AliRunDigitizer(Int_t nInputStreams, Int_t sperb=1);
9ce40367 37 virtual ~AliRunDigitizer();
38 void AddDigitizer(AliDigitizer *digitizer);
8d5e6345 39 void SetOutputFile(TString fn);
9ae76683 40 TString GetOutputFile() const {return fOutputFileName;}
9ce40367 41 void SetOutputDir(TString dn) {fOutputDirName = dn;}
9ae76683 42 TString GetOutputDir() const {return fOutputDirName;}
3466e07f 43 void SetInputStream(Int_t stream, const char *inputName);
9ce40367 44 void SetFirstOutputEventNr(Int_t i) {fEvent = i;}
45 void SetNrOfEventsToWrite(Int_t i) {fNrOfEventsToWrite = i;}
46 void SetCopyTreesFromInput(Int_t i) {fCopyTreesFromInput = i;}
47 Int_t GetCopyTreesFromInput() {return fCopyTreesFromInput;}
9ae76683 48 Int_t GetOutputEventNr() const {return fEvent;}
9ce40367 49 void SetCombinationFileName(TString fn) {fCombinationFileName = fn;}
9ae76683 50 TString GetCombinationFileName() const {return fCombinationFileName;}
9ce40367 51 Int_t GetNinputs() const {return fNinputs;}
52 Int_t GetMask(Int_t i) const {return fkMASK[i];}
53 TTree* GetInputTreeS(Int_t i) const {return fArrayTreeS[i];}
54 TTree* GetInputTreeH(Int_t i) const {return fArrayTreeH[i];}
f042097d 55 void SetInputTreeTPCSBaseName(char * name) {
56 fTreeTPCSBaseName = name;}
9ce40367 57 TTree* GetInputTreeTPCS(Int_t i) const {return fArrayTreeTPCS[i];}
f34e67f9 58 TTree* GetInputTreeTRDS(Int_t i) const {return fArrayTreeTRDS[i];}
9ce40367 59 TTree* GetTreeD() const {return fTreeD;}
f042097d 60 void SetTreeDTPCBaseName(char * name) {
61 fTreeDTPCBaseName = name;}
f34e67f9 62 TTree* GetTreeDTPC() const {return fTreeDTPC;}
63 TTree* GetTreeDTRD() const {return fTreeDTRD;}
8d5e6345 64 void Digitize(Option_t* option = 0);
f042097d 65 void Exec(Option_t *option) {this->Digitize(option);}
8d5e6345 66 void ExecuteTask(Option_t* option = 0);
9ce40367 67
8d5e6345 68
9ce40367 69// Nr of particles in all input files for a given event
70// (as numbered in the output file)
9ae76683 71 Int_t GetNParticles(Int_t event) const;
9ce40367 72
73// Nr of particles in input file input for a given event
74// (as numbered in this input file)
9ae76683 75 Int_t GetNParticles(Int_t event, Int_t input) const;
9ce40367 76
77// return pointer to an int array with input event numbers which were
78// merged in the output event event
9ae76683 79 Int_t* GetInputEventNumbers(Int_t event) const;
9ce40367 80
81// return an event number of an eventInput from input file input
82// which was merged to create output event event
9ae76683 83 Int_t GetInputEventNumber(Int_t event, Int_t input) const;
9ce40367 84
85// return pointer to particle with index i (index with mask)
9ae76683 86 TParticle* GetParticle(Int_t i, Int_t event) const;
9ce40367 87
88// return pointer to particle with index i in the input file input
89// (index without mask)
9ae76683 90 TParticle* GetParticle(Int_t i, Int_t input, Int_t event) const;
9ce40367 91
92
93 Int_t GetDebug() const {return fDebug;}
94 void SetDebug(Int_t level) {fDebug = level;}
95
96private:
9ae76683 97 Int_t fkMASK[kMaxStreamsToMerge]; //! masks for track ids from
9ce40367 98 // different source files
99 Int_t fkMASKSTEP; // step to increase MASK for
100 // each input file
101 TString fOutputFileName; // output file name
102 TString fOutputDirName; // output dir name
103 TFile * fOutput; //! pointer to the output file
104 Int_t fEvent; // output event nr.
105 Int_t fNrOfEventsToWrite; // Nr of events to write
106 Int_t fNrOfEventsWritten; // Nr of events written
107 Int_t fCopyTreesFromInput; // from which input file the trees
108 // should be copied, -1 for no copies
109 TTree * fTreeD; //! output TreeD
f34e67f9 110 TTree * fTreeDTPC; //! output TreeD for TPC
111 TTree * fTreeDTRD; //! output TreeD for TRD
a90ecf3c 112 Int_t fNinputs; // nr of input streams - can be taken from the TClonesArray dimension
113 Int_t fNinputsGiven; // nr of input streams given by user
114 TClonesArray * fInputStreams; // input streams
9ae76683 115 TFile * fInputFiles[kMaxStreamsToMerge]; //! p. to current input files
116 TTree * fArrayTreeS[kMaxStreamsToMerge]; //! array with p. to TreeS
117 TTree * fArrayTreeTPCS[kMaxStreamsToMerge]; //! array with p. to TreeD_75x40_100x60_x (TPC Sdigits)
118 TTree * fArrayTreeTRDS[kMaxStreamsToMerge]; //! array with p. to TreeSx_TRD (TRD Sdigits)
119 TTree * fArrayTreeH[kMaxStreamsToMerge]; //! array with p. to TreeH
f042097d 120 char * fTreeDTPCBaseName; //! basename of output TreeD for TPC
121 char * fTreeTPCSBaseName; //! basename of output TreeS for TPC
a90ecf3c 122 AliMergeCombi * fCombi; // pointer to the combination object
9ce40367 123 TArrayI fCombination; //! combination of events from
9ce40367 124 TString fCombinationFileName; // fn with combinations (used
125 // with type 2 of comb.)
a90ecf3c 126 Bool_t ConnectInputTrees();
9ce40367 127 Bool_t InitGlobal();
128 Bool_t InitOutputGlobal();
a90ecf3c 129 void InitEvent();
130 void FinishEvent();
9ce40367 131 void FinishGlobal();
132 Int_t fDebug; //! specifies debug level, 0 is min
133
f042097d 134 ClassDef(AliRunDigitizer,4)
9ce40367 135};
136
137#endif // ALIRUNDIGITIZER_H