]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliAnalysisManager.h
Added support for retrieving and merging dAOD's. The producer task has to call AliAna...
[u/mrichter/AliRoot.git] / ANALYSIS / AliAnalysisManager.h
CommitLineData
d3106602 1#ifndef ALIANALYSISMANAGER_H
2#define ALIANALYSISMANAGER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7// Author: Andrei Gheata, 31/05/2006
8
9//==============================================================================
10// AliAnalysysManager - Manager analysis class. Allows creation of several
11// analysis tasks and data containers storing their input/output. Allows
12// connecting/chaining tasks via shared data containers. Serializes the current
13// event for all tasks depending only on initial input data.
14//==============================================================================
15
c52c2132 16#ifndef ROOT_TNamed
17#include <TNamed.h>
d3106602 18#endif
19
20class TClass;
c52c2132 21class TTree;
8d7d3b59 22class TFile;
23class AliAnalysisSelector;
d3106602 24class AliAnalysisDataContainer;
25class AliAnalysisTask;
d2f1d9ef 26class AliVEventHandler;
c2922515 27class AliVEventPool;
c57f56b7 28class AliAnalysisGrid;
8c9485b2 29
d3106602 30
c52c2132 31class AliAnalysisManager : public TNamed {
d3106602 32
33public:
34
35enum EAliAnalysisContType {
c52c2132 36 kExchangeContainer = 0,
d3106602 37 kInputContainer = 1,
38 kOutputContainer = 2
39};
c52c2132 40
41enum EAliAnalysisExecMode {
42 kLocalAnalysis = 0,
43 kProofAnalysis = 1,
aee5ee44 44 kGridAnalysis = 2,
45 kMixingAnalysis = 3
c52c2132 46};
47
efd53803 48enum EAliAnalysisFlags {
b1310ef5 49 kEventLoop = BIT(14),
d86ed856 50 kDisableBranches = BIT(15),
51 kUseDataSet = BIT(16)
efd53803 52};
53
6e14aaa2 54 AliAnalysisManager(const char *name = "mgr", const char *title="");
d3106602 55 virtual ~AliAnalysisManager();
c52c2132 56
57 AliAnalysisManager(const AliAnalysisManager& other);
58 AliAnalysisManager& operator=(const AliAnalysisManager& other);
d3106602 59
c07b9ce2 60 // Management methods called by the framework
8c0ab8e8 61 void StartAnalysis(const char *type="local", TTree *tree=0, Long64_t nentries=1234567890, Long64_t firstentry=0);
d86ed856 62 void StartAnalysis(const char *type, const char *dataset, Long64_t nentries=1234567890, Long64_t firstentry=0);
c52c2132 63
2d626244 64 virtual Bool_t Init(TTree *tree);
327eaf46 65 virtual Bool_t Notify();
d3106602 66 virtual void SlaveBegin(TTree *tree);
327eaf46 67 virtual Bool_t ProcessCut(Long64_t entry) {return Process(entry);}
d3106602 68 virtual Bool_t Process(Long64_t entry);
327eaf46 69 virtual Int_t GetEntry(Long64_t entry, Int_t getall = 0);
8d7d3b59 70 TFile *OpenProofFile(const char *name, const char *option);
c52c2132 71 void PackOutput(TList *target);
72 void UnpackOutput(TList *source);
d3106602 73 virtual void Terminate();
74
c52c2132 75 // Getters/Setters
76 static AliAnalysisManager *GetAnalysisManager() {return fgAnalysisManager;}
d3106602 77 TObjArray *GetContainers() const {return fContainers;}
c52c2132 78 UInt_t GetDebugLevel() const {return fDebug;}
d3106602 79 TObjArray *GetInputs() const {return fInputs;}
80 TObjArray *GetOutputs() const {return fOutputs;}
81 TObjArray *GetTasks() const {return fTasks;}
82 TObjArray *GetTopTasks() const {return fTopTasks;}
c52c2132 83 TTree *GetTree() const {return fTree;}
d3106602 84 TObjArray *GetZombieTasks() const {return fZombies;}
c52c2132 85 Long64_t GetCurrentEntry() const {return fCurrentEntry;}
86 EAliAnalysisExecMode
87 GetAnalysisType() const {return fMode;}
d86ed856 88 Bool_t IsUsingDataSet() const {return TObject::TestBit(kUseDataSet);}
c52c2132 89
c07b9ce2 90 void RegisterExtraFile(const char *fname);
c52c2132 91 void SetAnalysisType(EAliAnalysisExecMode mode) {fMode = mode;}
92 void SetCurrentEntry(Long64_t entry) {fCurrentEntry = entry;}
93 void SetDebugLevel(UInt_t level) {fDebug = level;}
13ef3bb0 94 void SetSpecialOutputLocation(const char *location) {fSpecialOutputLocation = location;}
b1310ef5 95 void SetDisableBranches(Bool_t disable=kTRUE) {TObject::SetBit(kDisableBranches,disable);}
8c0ab8e8 96 void SetCollectSysInfoEach(Int_t nevents=0) {fNSysInfo = nevents;}
60a04972 97 void SetInputEventHandler(AliVEventHandler* handler);
98 void SetOutputEventHandler(AliVEventHandler* handler);
d2f1d9ef 99 void SetMCtruthEventHandler(AliVEventHandler* handler) {fMCtruthEventHandler = handler;}
c57f56b7 100 void SetGridHandler(AliAnalysisGrid *handler) {fGridHandler = handler;}
c2922515 101 void SetEventPool(AliVEventPool* epool) {fEventPool = epool;}
8c0ab8e8 102 void SetNSysInfo(Long64_t nevents) {fNSysInfo = nevents;}
8d7d3b59 103 void SetSelector(AliAnalysisSelector *sel) {fSelector = sel;}
54cff064 104 AliVEventHandler* GetInputEventHandler() {return fInputEventHandler;}
d2f1d9ef 105 AliVEventHandler* GetOutputEventHandler() {return fOutputEventHandler;}
106 AliVEventHandler* GetMCtruthEventHandler() {return fMCtruthEventHandler;}
60a04972 107 AliAnalysisDataContainer *GetCommonInputContainer() {return fCommonInput;}
108 AliAnalysisDataContainer *GetCommonOutputContainer() {return fCommonOutput;}
c57f56b7 109 AliAnalysisGrid* GetGridHandler() {return fGridHandler;}
c2922515 110 AliVEventPool* GetEventPool() {return fEventPool;}
c07b9ce2 111 Bool_t GetFileFromWrapper(const char *filename, TList *source);
112 TString GetExtraFiles() const {return fExtraFiles;}
d3106602 113
114 // Container handling
115 AliAnalysisDataContainer *CreateContainer(const char *name, TClass *datatype,
c52c2132 116 EAliAnalysisContType type = kExchangeContainer,
117 const char *filename = NULL);
d3106602 118
119 // Including tasks and getting them
120 void AddTask(AliAnalysisTask *task);
121 AliAnalysisTask *GetTask(const char *name) const;
122
123 // Connecting data containers to task inputs/outputs
124 Bool_t ConnectInput(AliAnalysisTask *task, Int_t islot,
125 AliAnalysisDataContainer *cont);
126 Bool_t ConnectOutput(AliAnalysisTask *task, Int_t islot,
127 AliAnalysisDataContainer *cont);
128 // Garbage collection
129 void CleanContainers();
130
131 // Analysis initialization and execution, status
132 Bool_t InitAnalysis();
133 Bool_t IsInitialized() const {return fInitOK;}
efd53803 134 Bool_t IsEventLoop() const {return TObject::TestBit(kEventLoop);}
d3106602 135 void ResetAnalysis();
136 void ExecAnalysis(Option_t *option="");
137 void FinishAnalysis();
138 void PrintStatus(Option_t *option="all") const;
139
140protected:
981f2614 141 void ImportWrappers(TList *source);
efd53803 142 void SetEventLoop(Bool_t flag=kTRUE) {TObject::SetBit(kEventLoop,flag);}
d3106602 143
5daf9fd2 144private:
6bb2b24f 145 TTree *fTree; //! Input tree in case of TSelector model
54cff064 146 AliVEventHandler *fInputEventHandler; // Optional common input event handler
d2f1d9ef 147 AliVEventHandler *fOutputEventHandler; // Optional common output event handler
148 AliVEventHandler *fMCtruthEventHandler; // Optional common MC Truth event handler
c2922515 149 AliVEventPool *fEventPool; // Event pool for mixing analysis
6bb2b24f 150 Long64_t fCurrentEntry; //! Current processed entry in the tree
8c0ab8e8 151 Long64_t fNSysInfo; // Event frequency for collecting system information
6bb2b24f 152 EAliAnalysisExecMode fMode; // Execution mode
153 Bool_t fInitOK; // Initialisation done
154 UInt_t fDebug; // Debug level
13ef3bb0 155 TString fSpecialOutputLocation; // URL/path where the special outputs will be copied
6bb2b24f 156 TObjArray *fTasks; // List of analysis tasks
157 TObjArray *fTopTasks; // List of top tasks
158 TObjArray *fZombies; // List of zombie tasks
159 TObjArray *fContainers; // List of all containers
160 TObjArray *fInputs; // List of containers with input data
161 TObjArray *fOutputs; // List of containers with results
60a04972 162 AliAnalysisDataContainer *fCommonInput; // Common input container
163 AliAnalysisDataContainer *fCommonOutput; // Common output container
8d7d3b59 164 AliAnalysisSelector *fSelector; //! Current selector
c57f56b7 165 AliAnalysisGrid *fGridHandler; //! Grid handler plugin
c07b9ce2 166 TString fExtraFiles; //! List of extra files to be merged
5daf9fd2 167
c52c2132 168 static AliAnalysisManager *fgAnalysisManager; //! static pointer to object instance
60a04972 169 ClassDef(AliAnalysisManager,4) // Analysis manager class
d3106602 170};
171#endif