]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/RESONANCES/AliRsnAnalysisTask.cxx
Fix for coverity
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnAnalysisTask.cxx
1 #include <TEntryList.h>
2
3 #include "AliLog.h"
4 #include "AliAnalysisManager.h"
5 #include "AliMultiInputEventHandler.h"
6 #include "AliMixInputEventHandler.h"
7 #include "AliMCEventHandler.h"
8
9 #include "AliRsnEvent.h"
10 #include "AliRsnLoop.h"
11 #include "AliRsnInputHandler.h"
12
13 #include "AliRsnAnalysisTask.h"
14
15 ClassImp(AliRsnAnalysisTask)
16
17 //__________________________________________________________________________________________________
18 AliRsnAnalysisTask::AliRsnAnalysisTask() :
19    AliAnalysisTaskSE(),
20    fOutput(0),
21    fRsnObjects(0),
22    fInputEHMain(0),
23    fInputEHMix(0),
24    fBigOutput(kFALSE)
25 {
26 //
27 // Dummy constructor ALWAYS needed for I/O.
28 //
29 }
30
31 //__________________________________________________________________________________________________
32 AliRsnAnalysisTask::AliRsnAnalysisTask(const char *name) :
33    AliAnalysisTaskSE(name),
34    fOutput(0),
35    fRsnObjects(0),
36    fInputEHMain(0),
37    fInputEHMix(0),
38    fBigOutput(kFALSE)
39 {
40 //
41 // Default constructor.
42 // Define input and output slots here (never in the dummy constructor)
43 // Input slot #0 works with a TChain - it is connected to the default input container
44 // Output slot #1 writes into a TH1 container
45 //
46
47    DefineOutput(1, TList::Class());
48 }
49
50 //__________________________________________________________________________________________________
51 AliRsnAnalysisTask::AliRsnAnalysisTask(const AliRsnAnalysisTask& copy) :
52    AliAnalysisTaskSE(copy),
53    fOutput(0),
54    fRsnObjects(copy.fRsnObjects),
55    fInputEHMain(copy.fInputEHMain),
56    fInputEHMix(copy.fInputEHMix),
57    fBigOutput(copy.fBigOutput)
58 {
59 //
60 // Copy constructor.
61 // Implemented as requested by C++ standards.
62 // Can be used in PROOF and by plugins.
63 //
64 }
65
66 //__________________________________________________________________________________________________
67 AliRsnAnalysisTask& AliRsnAnalysisTask::operator=(const AliRsnAnalysisTask& copy)
68 {
69 //
70 // Assignment operator.
71 // Implemented as requested by C++ standards.
72 // Can be used in PROOF and by plugins.
73 //
74    AliAnalysisTaskSE::operator=(copy);
75    if (this == &copy)
76      return *this;
77    fRsnObjects = copy.fRsnObjects;
78    fInputEHMain = copy.fInputEHMain;
79    fInputEHMix = copy.fInputEHMix;
80    fBigOutput = copy.fBigOutput;
81    
82    return (*this);
83 }
84
85 //__________________________________________________________________________________________________
86 AliRsnAnalysisTask::~AliRsnAnalysisTask()
87 {
88 //
89 // Destructor. 
90 // Clean-up the output list, but not the histograms that are put inside
91 // (the list is owner and will clean-up these histograms). Protect in PROOF case.
92 //
93
94    if (fOutput && !AliAnalysisManager::GetAnalysisManager()->IsProofMode()) {
95       delete fOutput;
96    }
97 }
98
99 //__________________________________________________________________________________________________
100 void AliRsnAnalysisTask::AddLoop(AliRsnLoop *obj)
101 {
102 //
103 // Add new computation object
104 //
105
106    fRsnObjects.Add(obj);
107 }
108
109 //__________________________________________________________________________________________________
110 void AliRsnAnalysisTask::UserCreateOutputObjects()
111 {
112 //
113 // Initialization of outputs.
114 // This is called once per worker node.
115 //
116
117    // sets all Inuput Handler pointers
118    InitInputHandlers();
119
120    // create list and set it as owner of its content (MANDATORY)
121    if (fBigOutput) OpenFile(1);
122    fOutput = new TList();
123    fOutput->SetOwner();
124    
125    // loop on computators and initialize all their outputs
126    TObjArrayIter next(&fRsnObjects);
127    AliRsnLoop *obj = 0x0;
128    while ( (obj = (AliRsnLoop*)next()) ) {
129       obj->Init(GetName(), fOutput);
130    }
131
132    // post data for ALL output slots >0 here, to get at least an empty histogram
133    PostData(1, fOutput);
134 }
135
136 //__________________________________________________________________________________________________
137 void AliRsnAnalysisTask::UserExec(Option_t *)
138 {
139 //
140 // Main loop for single-event computations.
141 // It is called for each event and executes the 'DoLoop'
142 // function of all AliRsnLoop instances stored here.
143 //
144
145    AliRsnEvent *evMain = 0x0;
146    AliRsnInputHandler *rsnIH = 0x0;
147
148    if (fInputEHMain) {
149       TObjArrayIter next(fInputEHMain->InputEventHandlers());
150       TObject *obj = 0x0;
151       while ( (obj = next()) ) {
152          if (obj->IsA() == AliRsnInputHandler::Class()) {
153             rsnIH = (AliRsnInputHandler*)obj;
154             //AliInfo(Form("Found object '%s' which is RSN input handler", obj->GetName()));
155             evMain = rsnIH->GetRsnEvent();
156             break;
157          }
158       }
159    }
160    
161    if (!evMain) return;
162
163    TObjArrayIter next(&fRsnObjects);
164    AliRsnLoop *obj = 0x0;
165    while ( (obj = (AliRsnLoop*)next()) ) {
166       if (obj->IsMixed()) continue;
167       obj->DoLoop(evMain, rsnIH->GetSelector());
168    }
169    
170    PostData(1, fOutput);
171 }
172
173 //__________________________________________________________________________________________________
174 void AliRsnAnalysisTask::UserExecMix(Option_t*)
175 {
176 //
177 // Main loop for event-mixing computations
178 // It is called for each pair of matched events
179 // and executes the 'DoLoop' function of all AliRsnLoop instances stored here.
180 //
181
182    AliRsnEvent *evMain = 0x0;
183    AliRsnEvent *evMix  = 0x0;
184    Int_t        id     = -1;
185    AliRsnInputHandler *rsnIH = 0x0, *rsnMixIH = 0x0;
186
187    if (fInputEHMain) {
188       TObjArrayIter next(fInputEHMain->InputEventHandlers());
189       TObject *obj = 0x0;
190       while ( (obj = next()) ) {
191          if (obj->IsA() == AliRsnInputHandler::Class()) {
192             rsnIH = (AliRsnInputHandler*)obj;
193             //AliInfo(Form("Found object '%s' which is RSN input handler", obj->GetName()));
194             evMain = rsnIH->GetRsnEvent();
195             id = fInputEHMain->InputEventHandlers()->IndexOf(obj);
196             break;
197          }
198       }
199    }
200    
201    if (!evMain) return;
202
203    // gets first input handler form mixing buffer
204    AliMultiInputEventHandler *ihMultiMix = dynamic_cast<AliMultiInputEventHandler*>(fInputEHMix->InputEventHandler(0));
205    if (ihMultiMix) {
206       rsnMixIH = dynamic_cast<AliRsnInputHandler*>(ihMultiMix->InputEventHandler(id));
207       if (rsnMixIH) {
208          evMix = rsnMixIH->GetRsnEvent();
209          if (!evMix) return;
210
211          TObjArrayIter next(&fRsnObjects);
212          AliRsnLoop *obj = 0x0;
213          while ( (obj = (AliRsnLoop*)next()) ) {
214             if (!obj->IsMixed()) continue;
215             obj->DoLoop(evMain, rsnIH->GetSelector(), evMix, rsnMixIH->GetSelector());
216          }
217       }
218    }
219    
220    PostData(1, fOutput);
221 }
222
223 //________________________________________________________________________
224 void AliRsnAnalysisTask::Terminate(Option_t *)
225 {
226 //
227 // Draw result to screen, or perform fitting, normalizations
228 // Called once at the end of the query
229 //
230
231    fOutput = dynamic_cast<TList*>(GetOutputData(1));
232    if (!fOutput) { AliError("Could not retrieve TList fOutput"); return; }
233 }
234
235 //_____________________________________________________________________________
236 void AliRsnAnalysisTask::InitInputHandlers()
237 {
238 //
239 // Sets needed input handlers
240 //
241    AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
242    fInputEHMain = dynamic_cast<AliMultiInputEventHandler *>(mgr->GetInputEventHandler());
243    if (fInputEHMain) {
244       fInputEHMix = dynamic_cast<AliMixInputEventHandler *>(fInputEHMain->GetFirstMultiInputHandler());
245    }
246 }
247