]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliAnalysisTaskSE.cxx
Adding include to include path
[u/mrichter/AliRoot.git] / ANALYSIS / AliAnalysisTaskSE.cxx
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 /* $Id$ */
17  
18 #include <TROOT.h>
19 #include <TSystem.h>
20 #include <TInterpreter.h>
21 #include <TChain.h>
22 #include <TFile.h>
23 #include <TList.h>
24
25 #include "AliAnalysisTaskSE.h"
26 #include "AliAnalysisManager.h"
27 #include "AliAnalysisCuts.h"
28 #include "AliAnalysisDataSlot.h"
29 #include "AliAnalysisDataContainer.h"
30
31 #include "AliESDEvent.h"
32 #include "AliESDfriend.h"
33 #include "AliESD.h"
34 #include "AliAODEvent.h"
35 #include "AliAODHeader.h"
36 #include "AliAODTracklets.h"
37 #include "AliAODCaloCells.h"
38 #include "AliAODMCParticle.h"
39 #include "AliVEvent.h"
40 #include "AliAODHandler.h"
41 #include "AliAODInputHandler.h"
42 #include "AliMCEventHandler.h"
43 #include "AliInputEventHandler.h"
44 #include "AliMultiInputEventHandler.h"
45 #include "AliESDInputHandler.h"
46 #include "AliMCEvent.h"
47 #include "AliStack.h"
48 #include "AliLog.h"
49 #include "AliAODDimuon.h"
50
51
52 ClassImp(AliAnalysisTaskSE)
53
54 ////////////////////////////////////////////////////////////////////////
55 AliAODHeader*    AliAnalysisTaskSE::fgAODHeader         = NULL;
56 TClonesArray*    AliAnalysisTaskSE::fgAODTracks         = NULL;
57 TClonesArray*    AliAnalysisTaskSE::fgAODVertices       = NULL;
58 TClonesArray*    AliAnalysisTaskSE::fgAODV0s            = NULL;
59 TClonesArray*    AliAnalysisTaskSE::fgAODPMDClusters    = NULL;
60 TClonesArray*    AliAnalysisTaskSE::fgAODJets           = NULL;
61 TClonesArray*    AliAnalysisTaskSE::fgAODFMDClusters    = NULL;
62 TClonesArray*    AliAnalysisTaskSE::fgAODCaloClusters   = NULL;
63 TClonesArray*    AliAnalysisTaskSE::fgAODMCParticles    = NULL;
64 AliAODTracklets* AliAnalysisTaskSE::fgAODTracklets      = NULL;
65 AliAODCaloCells* AliAnalysisTaskSE::fgAODEmcalCells     = NULL;
66 AliAODCaloCells* AliAnalysisTaskSE::fgAODPhosCells      = NULL;
67 TClonesArray*    AliAnalysisTaskSE::fgAODDimuons        = NULL;
68
69 AliAnalysisTaskSE::AliAnalysisTaskSE():
70     AliAnalysisTask(),
71     fDebug(0),
72     fEntry(0),
73     fInputEvent(0x0),
74     fESDfriend(0x0),
75     fInputHandler(0x0),
76     fOutputAOD(0x0),
77     fMCEvent(0x0),
78     fTreeA(0x0),
79     fCurrentRunNumber(-1),
80     fHistosQA(0x0),
81     fOfflineTriggerMask(0),
82     fMultiInputHandler(0),
83     fMCEventHandler(0)
84 {
85   // Default constructor
86 }
87
88 AliAnalysisTaskSE::AliAnalysisTaskSE(const char* name):
89     AliAnalysisTask(name, "AnalysisTaskSE"),
90     fDebug(0),
91     fEntry(0),
92     fInputEvent(0x0),
93     fESDfriend(0x0),
94     fInputHandler(0x0),
95     fOutputAOD(0x0),
96     fMCEvent(0x0),
97     fTreeA(0x0),
98     fCurrentRunNumber(-1),
99     fHistosQA(0x0),
100     fOfflineTriggerMask(0),
101     fMultiInputHandler(0),
102     fMCEventHandler(0)
103 {
104   // Default constructor
105     DefineInput (0, TChain::Class());
106     DefineOutput(0,  TTree::Class());
107 }
108
109 AliAnalysisTaskSE::AliAnalysisTaskSE(const AliAnalysisTaskSE& obj):
110     AliAnalysisTask(obj),
111     fDebug(0),
112     fEntry(0),
113     fInputEvent(0x0),
114     fESDfriend(0x0),
115     fInputHandler(0x0),
116     fOutputAOD(0x0),
117     fMCEvent(0x0),
118     fTreeA(0x0),
119     fCurrentRunNumber(-1),
120     fHistosQA(0x0),
121     fOfflineTriggerMask(0),
122     fMultiInputHandler(obj.fMultiInputHandler),
123     fMCEventHandler(obj.fMCEventHandler)
124 {
125 // Copy constructor
126     fDebug            = obj.fDebug;
127     fEntry            = obj.fEntry;
128     fInputEvent       = obj.fInputEvent;
129     fESDfriend        = obj.fESDfriend;
130     fInputHandler     = obj.fInputHandler;
131     fOutputAOD        = obj.fOutputAOD;
132     fMCEvent          = obj.fMCEvent;
133     fTreeA            = obj.fTreeA;    
134     fCurrentRunNumber = obj.fCurrentRunNumber;
135     fHistosQA         = obj.fHistosQA;
136
137 }
138
139
140 AliAnalysisTaskSE& AliAnalysisTaskSE::operator=(const AliAnalysisTaskSE& other)
141 {
142 // Assignment
143     AliAnalysisTask::operator=(other);
144     fDebug            = other.fDebug;
145     fEntry            = other.fEntry;
146     fInputEvent       = other.fInputEvent;
147     fESDfriend        = other.fESDfriend;
148     fInputHandler     = other.fInputHandler;
149     fOutputAOD        = other.fOutputAOD;
150     fMCEvent          = other.fMCEvent;
151     fTreeA            = other.fTreeA;    
152     fCurrentRunNumber = other.fCurrentRunNumber;
153     fHistosQA         = other.fHistosQA;
154     fOfflineTriggerMask = other.fOfflineTriggerMask;
155     fMultiInputHandler  = other.fMultiInputHandler;
156     fMCEventHandler     = other.fMCEventHandler;
157     return *this;
158 }
159
160 //______________________________________________________________________________
161 Bool_t AliAnalysisTaskSE::CheckPostData() const
162 {
163 // Checks if data was posted to all outputs defined by the task. If task does
164 // not have output slots this returns always kTRUE.
165    AliAnalysisDataContainer *coutput;
166    AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
167    for (Int_t islot=1; islot<fNoutputs; islot++) {
168       coutput = GetOutputSlot(islot)->GetContainer();
169       if (!mgr->GetOutputs()->FindObject(coutput)) continue;
170       if (!coutput->GetData()) return kFALSE;
171    }
172    CheckOwnership();
173    return kTRUE;
174 }
175
176 void AliAnalysisTaskSE::ConnectInputData(Option_t* /*option*/)
177 {
178 // Connect the input data
179     if (fDebug > 1) printf("AnalysisTaskSE::ConnectInputData() \n");
180
181    // Connect input handlers (multi input handler is handled)
182     ConnectMultiHandler();
183     
184     if (fInputHandler) {
185         if ((fInputHandler->GetTree())->GetBranch("ESDfriend."))
186             fESDfriend = ((AliESDInputHandler*)fInputHandler)->GetESDfriend();
187
188         fInputEvent = fInputHandler->GetEvent();
189     } else if( fMCEvent ) {
190          AliWarning("No Input Event Handler connected, only MC Truth Event Handler") ; 
191     } else {
192          AliError("No Input Event Handler connected") ; 
193          return ; 
194     }
195     // Disconnect multi handler
196     DisconnectMultiHandler();
197 }
198
199 void AliAnalysisTaskSE::CreateOutputObjects()
200 {
201 // Create the output container
202 //
203 //  Default AOD
204     if (fDebug > 1) printf("AnalysisTaskSE::CreateOutPutData() \n");
205
206     AliAODHandler* handler = dynamic_cast<AliAODHandler*> 
207          ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
208     
209     Bool_t merging = kFALSE;
210     AliAODInputHandler* aodIH = static_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
211     if (aodIH) {
212         if (aodIH->GetMergeEvents()) merging = kTRUE;
213     }
214
215     // Check if AOD replication has been required
216     if (handler) {
217         fOutputAOD   = handler->GetAOD();
218         fTreeA = handler->GetTree();
219         if (fOutputAOD && !(handler->IsStandard())) {
220             if ((handler->NeedsHeaderReplication()) && !(fgAODHeader)) 
221                 {
222                  if (fDebug > 1) AliInfo("Replicating header");
223                  fgAODHeader = new AliAODHeader;
224                  handler->AddBranch("AliAODHeader", &fgAODHeader);
225                 }
226             if ((handler->NeedsTracksBranchReplication() || merging) && !(fgAODTracks))      
227             {   
228                 if (fDebug > 1) AliInfo("Replicating track branch\n");
229                 fgAODTracks = new TClonesArray("AliAODTrack",500);
230                 fgAODTracks->SetName("tracks");
231                 handler->AddBranch("TClonesArray", &fgAODTracks);
232             }    
233             if ((handler->NeedsVerticesBranchReplication() || merging) && !(fgAODVertices))
234             {
235                 if (fDebug > 1) AliInfo("Replicating vertices branch\n");
236                 fgAODVertices = new TClonesArray("AliAODVertex",500);
237                 fgAODVertices->SetName("vertices");
238                 handler->AddBranch("TClonesArray", &fgAODVertices);
239             }   
240             if ((handler->NeedsV0sBranchReplication()) && !(fgAODV0s))    
241             {   
242                 if (fDebug > 1) AliInfo("Replicating V0s branch\n");
243                 fgAODV0s = new TClonesArray("AliAODv0",500);
244                 fgAODV0s->SetName("v0s");
245                 handler->AddBranch("TClonesArray", &fgAODV0s);
246             }
247             if ((handler->NeedsTrackletsBranchReplication()) && !(fgAODTracklets))        
248             {   
249                 if (fDebug > 1) AliInfo("Replicating Tracklets branch\n");
250                 fgAODTracklets = new AliAODTracklets("tracklets","tracklets");
251                 handler->AddBranch("AliAODTracklets", &fgAODTracklets);
252             }
253             if ((handler->NeedsPMDClustersBranchReplication()) && !(fgAODPMDClusters))    
254             {   
255                 if (fDebug > 1) AliInfo("Replicating PMDClusters branch\n");
256                 fgAODPMDClusters = new TClonesArray("AliAODPmdCluster",500);
257                 fgAODPMDClusters->SetName("pmdClusters");
258                 handler->AddBranch("TClonesArray", &fgAODPMDClusters);
259             }
260             if ((handler->NeedsJetsBranchReplication() || merging) && !(fgAODJets))       
261             {   
262                 if (fDebug > 1) AliInfo("Replicating Jets branch\n");
263                 fgAODJets = new TClonesArray("AliAODJet",500);
264                 fgAODJets->SetName("jets");
265                 handler->AddBranch("TClonesArray", &fgAODJets);
266             }
267             if ((handler->NeedsFMDClustersBranchReplication()) && !(fgAODFMDClusters))    
268             {   
269                 AliInfo("Replicating FMDClusters branch\n");
270                 fgAODFMDClusters = new TClonesArray("AliAODFmdCluster",500);
271                 fgAODFMDClusters->SetName("fmdClusters");
272                 handler->AddBranch("TClonesArray", &fgAODFMDClusters);
273             }
274             if ((handler->NeedsCaloClustersBranchReplication() || merging) && !(fgAODCaloClusters))       
275             {   
276                 if (fDebug > 1) AliInfo("Replicating CaloClusters branch\n");
277                 fgAODCaloClusters = new TClonesArray("AliAODCaloCluster",500);
278                 fgAODCaloClusters->SetName("caloClusters");
279                 handler->AddBranch("TClonesArray", &fgAODCaloClusters);
280
281                 fgAODEmcalCells = new AliAODCaloCells("emcalCells","emcalCells",AliVCaloCells::kEMCALCell);
282                 handler->AddBranch("AliAODCaloCells", &fgAODEmcalCells);
283
284                 fgAODPhosCells = new AliAODCaloCells("phosCells","phosCells",AliVCaloCells::kPHOSCell);
285                 handler->AddBranch("AliAODCaloCells", &fgAODPhosCells);
286                 
287             }
288             if ((handler->NeedsMCParticlesBranchReplication() || merging) && !(fgAODMCParticles))         
289             {   
290                 if (fDebug > 1) AliInfo("Replicating MCParticles branch\n");
291                 fgAODMCParticles = new TClonesArray("AliAODMCParticle",500);
292                 fgAODMCParticles->SetName("mcparticles");
293                 handler->AddBranch("TClonesArray", &fgAODMCParticles);
294             }
295             if ((handler->NeedsDimuonsBranchReplication() || merging) && !(fgAODDimuons))      
296             {   
297                 if (fDebug > 1) AliInfo("Replicating dimuon branch\n");
298                 fgAODDimuons = new TClonesArray("AliAODDimuon",0);
299                 fgAODDimuons->SetName("dimuons");
300                 handler->AddBranch("TClonesArray", &fgAODDimuons);
301             }    
302
303             // cache the pointerd in the AODEvent
304             fOutputAOD->GetStdContent();
305         }
306     }
307     ConnectMultiHandler();
308     UserCreateOutputObjects();
309     DisconnectMultiHandler();
310 }
311
312 void AliAnalysisTaskSE::Exec(Option_t* option)
313 {
314 //
315 // Exec analysis of one event
316
317     ConnectMultiHandler();
318
319     if ( fDebug >= 10)
320       printf("Task is active %5d\n", IsActive());
321     
322     if (fDebug > 1) AliInfo("AliAnalysisTaskSE::Exec() \n");
323 //
324     AliAODHandler* handler = dynamic_cast<AliAODHandler*> 
325         ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
326
327     AliAODInputHandler* aodH = dynamic_cast<AliAODInputHandler*>(fInputHandler);
328 //
329 // Was event selected ? If no event selection mechanism, the event SHOULD be selected (AG)
330     UInt_t isSelected = AliVEvent::kAny;
331     if( fInputHandler && fInputHandler->GetEventSelection()) {
332       // Get the actual offline trigger mask for the event and AND it with the
333       // requested mask. If no mask requested select by default the event.
334       if (fOfflineTriggerMask)
335          isSelected = fOfflineTriggerMask & fInputHandler->IsEventSelected();
336     }
337 //  Functionality below moved in the filter tasks (AG)
338 //    if (handler) handler->SetFillAOD(isSelected);
339
340     if( fInputHandler ) {
341         fEntry = fInputHandler->GetReadEntry();
342         fESDfriend = ((AliESDInputHandler*)fInputHandler)->GetESDfriend();
343     }
344     
345
346 // Notify the change of run number
347     if (InputEvent() && (InputEvent()->GetRunNumber() != fCurrentRunNumber)) {
348         fCurrentRunNumber = InputEvent()->GetRunNumber();
349         NotifyRun();
350     }    
351            
352     else if( fMCEvent )
353        fEntry = fMCEvent->Header()->GetEvent(); 
354     if ( !((Entry()-1)%100) && fDebug > 0) 
355          AliInfo(Form("%s ----> Processing event # %lld", CurrentFileName(), Entry()));
356
357     
358     
359
360     if (handler && aodH) {
361         fMCEvent = aodH->MCEvent();
362         Bool_t merging = aodH->GetMergeEvents();
363         AliAODEvent* aod = dynamic_cast<AliAODEvent*>(InputEvent());
364
365         if (aod && !(handler->IsStandard()) && !(handler->AODIsReplicated())) {
366             if ((handler->NeedsHeaderReplication()) && (fgAODHeader))
367             {
368               // copy the contents by assigment
369               *fgAODHeader =  *(aod->GetHeader());
370             }
371             if ((handler->NeedsTracksBranchReplication() || merging) && (fgAODTracks))
372             {
373                 TClonesArray* tracks = aod->GetTracks();
374                 new (fgAODTracks) TClonesArray(*tracks);
375             }
376             if ((handler->NeedsVerticesBranchReplication() || merging) && (fgAODVertices))
377             {
378                 TClonesArray* vertices = aod->GetVertices();
379                 new (fgAODVertices) TClonesArray(*vertices);
380             }
381             if ((handler->NeedsV0sBranchReplication()) && (fgAODV0s))
382             {
383                 TClonesArray* v0s = aod->GetV0s();
384                 new (fgAODV0s) TClonesArray(*v0s);
385             }
386             if ((handler->NeedsTrackletsBranchReplication()) && (fgAODTracklets))
387             {
388               *fgAODTracklets = *aod->GetTracklets();
389             }
390             if ((handler->NeedsPMDClustersBranchReplication()) && (fgAODPMDClusters))
391             {
392                 TClonesArray* pmdClusters = aod->GetPmdClusters();
393                 new (fgAODPMDClusters) TClonesArray(*pmdClusters);
394             }
395             if ((handler->NeedsJetsBranchReplication() || merging) && (fgAODJets))
396             {
397                 TClonesArray* jets = aod->GetJets();
398                 new (fgAODJets) TClonesArray(*jets);
399             }
400             if ((handler->NeedsFMDClustersBranchReplication()) && (fgAODFMDClusters))
401             {
402                 TClonesArray* fmdClusters = aod->GetFmdClusters();
403                 new (fgAODFMDClusters) TClonesArray(*fmdClusters);
404             }
405             if ((handler->NeedsCaloClustersBranchReplication() || merging) && (fgAODCaloClusters))
406             {
407                 TClonesArray* caloClusters = aod->GetCaloClusters();
408                 new (fgAODCaloClusters) TClonesArray(*caloClusters);
409             }
410
411             if ((handler->NeedsMCParticlesBranchReplication() || merging) && (fgAODMCParticles))
412             {
413                 TClonesArray* mcParticles = (TClonesArray*) (aod->FindListObject("mcparticles"));
414                 if( mcParticles )
415                   new (fgAODMCParticles) TClonesArray(*mcParticles);
416             }
417             
418             if ((handler->NeedsDimuonsBranchReplication() || merging) && (fgAODDimuons))
419             {
420                 fgAODDimuons->Clear();
421                 TClonesArray& dimuons = *fgAODDimuons;
422                 TClonesArray& tracksnew = *fgAODTracks;
423                 
424                 Int_t nMuonTrack[100]; 
425                 for(Int_t imuon = 0; imuon < 100; imuon++) nMuonTrack[imuon] = 0;
426                 Int_t nMuons=0;
427                 for(Int_t ii=0; ii < fgAODTracks->GetEntries(); ii++){
428                     AliAODTrack *track = (AliAODTrack*) fgAODTracks->At(ii);
429                     if(track->IsMuonTrack()) {
430                         nMuonTrack[nMuons]= ii;
431                         nMuons++;
432                     }  
433                 }
434                 Int_t jDimuons=0;
435                 if(nMuons >= 2){
436                     for(Int_t i = 0; i < nMuons; i++){
437                         Int_t index0 = nMuonTrack[i];
438                         for(Int_t j = i+1; j < nMuons; j++){
439                             Int_t index1 = nMuonTrack[j];
440                             tracksnew.At(index0)->ResetBit(kIsReferenced);
441                             tracksnew.At(index0)->SetUniqueID(0); 
442                             tracksnew.At(index1)->ResetBit(kIsReferenced);
443                             tracksnew.At(index1)->SetUniqueID(0);
444                             new(dimuons[jDimuons++]) AliAODDimuon(tracksnew.At(index0),tracksnew.At(index1));
445                         }
446                     }    
447                 }
448             }
449             // Additional merging if needed
450             if (merging) {
451               Int_t nc;
452
453                 // mcParticles
454                 TClonesArray* mcparticles = (TClonesArray*) ((aodH->GetEventToMerge())->FindListObject("mcparticles"));
455                 if( mcparticles ){
456                   Int_t npart = mcparticles->GetEntries();
457                   nc = fgAODMCParticles->GetEntries();
458                   
459                   for (Int_t i = 0; i < npart; i++) {
460                     AliAODMCParticle* particle = (AliAODMCParticle*) mcparticles->At(i);
461                     new((*fgAODMCParticles)[nc++]) AliAODMCParticle(*particle);
462                   }
463                 }
464
465                 // tracks
466                 TClonesArray* tracks = aodH->GetEventToMerge()->GetTracks();
467                 if(tracks){
468                   Int_t ntr = tracks->GetEntries();
469                   nc  = fgAODTracks->GetEntries();      
470                   for (Int_t i = 0; i < ntr; i++) {
471                     AliAODTrack*    track = (AliAODTrack*) tracks->At(i);
472                     AliAODTrack* newtrack = new((*fgAODTracks)[nc++]) AliAODTrack(*track);
473                     newtrack->SetLabel(newtrack->GetLabel() + fgAODMCParticles->GetEntries());
474                   }
475                   
476                   for (Int_t i = 0; i < nc; i++) 
477                     {
478                       AliAODTrack* track = (AliAODTrack*) fgAODTracks->At(i);
479                       track->ResetBit(kIsReferenced);
480                       track->SetUniqueID(0);
481                     }
482                 }
483                 
484                 // clusters
485                 TClonesArray* clusters = aodH->GetEventToMerge()->GetCaloClusters();
486                 if( clusters ){
487                   Int_t ncl  = clusters->GetEntries();
488                   nc         =  fgAODCaloClusters->GetEntries();
489                   for (Int_t i = 0; i < ncl; i++) {
490                     AliAODCaloCluster*    cluster = (AliAODCaloCluster*) clusters->At(i);
491                     new((*fgAODCaloClusters)[nc++]) AliAODCaloCluster(*cluster);
492                   }
493                 }
494
495                 // EMCAL cells
496                 //*fgAODEmcalCells =  *(aod->GetEMCALCells()); // This will be valid after 10.Mar.2011.
497                 {
498                   AliAODCaloCells* copycells = aod->GetEMCALCells();
499                   fgAODEmcalCells->CreateContainer(copycells->GetNumberOfCells());
500                   nc  = copycells->GetNumberOfCells();
501                   while( nc-- ){ fgAODEmcalCells->SetCell(nc,copycells->GetCellNumber(nc),copycells->GetAmplitude(nc)); }
502                 }
503                 AliAODCaloCells* cellsA = aodH->GetEventToMerge()->GetEMCALCells();
504                 if( cellsA ){
505                   Int_t ncells  = cellsA->GetNumberOfCells();
506                   nc = fgAODEmcalCells->GetNumberOfCells();
507                   for (Int_t i  = 0; i < ncells; i++) {
508                     Int_t cn  = cellsA->GetCellNumber(i);
509                     Int_t pos = fgAODEmcalCells->GetCellPosition(cn);
510                     if (pos >= 0) {
511                       Double_t amp = cellsA->GetAmplitude(i) + fgAODEmcalCells->GetAmplitude(pos);
512                       fgAODEmcalCells->SetCell(pos, cn, amp);
513                     } else {
514                       AliAODCaloCells* copycells = new AliAODCaloCells(*fgAODEmcalCells);
515                       fgAODEmcalCells->CreateContainer(nc+1);
516                       Int_t nn = copycells->GetNumberOfCells();
517                       while( nn-- ){ fgAODEmcalCells->SetCell(nn,copycells->GetCellNumber(nn),copycells->GetAmplitude(nn)); }
518                       fgAODEmcalCells->SetCell(nc++,cn,cellsA->GetAmplitude(i));
519                       delete copycells;
520                     }
521                   }
522                   fgAODEmcalCells->Sort();
523                 }
524                 
525                 // PHOS cells
526                 //*fgAODPhosCells =  *(aod->GetPHOSCells()); // This will be valid after 10.Mar.2011.
527                 {
528                   AliAODCaloCells* copycells = aod->GetPHOSCells();
529                   fgAODPhosCells->CreateContainer(copycells->GetNumberOfCells());
530                   nc  = copycells->GetNumberOfCells();
531                   while( nc-- ){ fgAODPhosCells->SetCell(nc,copycells->GetCellNumber(nc),copycells->GetAmplitude(nc)); }
532                 }
533                 AliAODCaloCells* cellsP = aodH->GetEventToMerge()->GetPHOSCells();
534                 if( cellsP ){
535                   Int_t ncellsP  = cellsP->GetNumberOfCells();
536                   nc = fgAODPhosCells->GetNumberOfCells();
537                   
538                   for (Int_t i  = 0; i < ncellsP; i++) {
539                     Int_t cn  = cellsP->GetCellNumber(i);
540                     Int_t pos = fgAODPhosCells->GetCellPosition(cn);
541                     if (pos >= 0) {
542                       Double_t amp = cellsP->GetAmplitude(i) + fgAODPhosCells->GetAmplitude(pos);
543                       fgAODPhosCells->SetCell(pos, cn, amp);
544                     } else {
545                       AliAODCaloCells* copycells = new AliAODCaloCells(*fgAODPhosCells);
546                       fgAODPhosCells->CreateContainer(nc+1);
547                       Int_t nn = copycells->GetNumberOfCells();
548                       while( nn-- ){ fgAODPhosCells->SetCell(nn,copycells->GetCellNumber(nn),copycells->GetAmplitude(nn)); }
549                       fgAODPhosCells->SetCell(nc++,cn,cellsP->GetAmplitude(i));
550                       delete copycells;
551                     }
552                   }
553                   fgAODPhosCells->Sort();
554                 }
555                         
556             } // merging
557             
558             handler->SetAODIsReplicated();
559         }
560     }
561
562
563 // Call the user analysis    
564     if (!fMCEventHandler) {
565         if (isSelected) 
566             UserExec(option);
567     } else {
568         if (isSelected && (fMCEventHandler->InitOk())) 
569             UserExec(option);
570     }
571     
572 // Added protection in case the derived task is not an AOD producer.
573     AliAnalysisDataSlot *out0 = GetOutputSlot(0);
574     if (out0 && out0->IsConnected()) PostData(0, fTreeA);    
575
576     DisconnectMultiHandler();
577 }
578
579 const char* AliAnalysisTaskSE::CurrentFileName()
580 {
581 // Returns the current file name    
582     if( fInputHandler )
583       return fInputHandler->GetTree()->GetCurrentFile()->GetName();
584     else if( fMCEvent )
585       return ((AliMCEventHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler()))->TreeK()->GetCurrentFile()->GetName();
586     else return "";
587 }
588
589 void AliAnalysisTaskSE::AddAODBranch(const char* cname, void* addobj, const char *fname)
590 {
591     // Add a new branch to the aod tree
592     AliAODHandler* handler = dynamic_cast<AliAODHandler*> 
593         ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
594     if (handler) {
595         handler->AddBranch(cname, addobj, fname);
596     }
597 }
598
599 Bool_t AliAnalysisTaskSE::IsStandardAOD() const
600 {
601 // Check if the output AOD handler is configured for standard or delta AOD.
602 // Users should first check that AODEvent() returns non-null.
603     AliAODHandler* handler = dynamic_cast<AliAODHandler*> 
604          ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
605     if (!handler) {
606        Error("IsStandardAOD", "No AOD handler. Please use AODEvent() to check this first");
607        return kTRUE;
608     }
609     return handler->IsStandard();   
610 }
611
612 Bool_t AliAnalysisTaskSE::Notify()
613 {
614     return (UserNotify());
615 }
616
617 const AliEventTag *AliAnalysisTaskSE::EventTag() const
618 {
619 // Returns tag for the current event, if any. The return value should always be checked by the user.
620    if (!fInputHandler) {
621       Error("EventTag", "Input handler not yet available. Call this in UserExec");
622       return NULL;
623    }
624    return fInputHandler->GetEventTag();
625 }
626
627 void AliAnalysisTaskSE::LoadBranches() const
628 {
629 // Load all branches declared in fBranchNames data member of the parent class.
630 // Should be called in UserExec.
631   if (!fInputHandler) {
632      Error("LoadBranches", "Input handler not available yet. Call this in UserExec");
633      return;
634   }
635   AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
636   if (mgr->GetAutoBranchLoading()) return;
637   TString taskbranches;
638   GetBranches(fInputHandler->GetDataType(), taskbranches);
639   if (taskbranches.IsNull()) return;
640   TObjArray *arr = taskbranches.Tokenize(",");
641   TIter next(arr);
642   TObject *obj;
643   while ((obj=next())) mgr->LoadBranch(obj->GetName());
644 }
645
646
647 //_________________________________________________________________________________________________
648 void AliAnalysisTaskSE::ConnectMultiHandler()
649 {
650    //
651    // Connect MultiHandler
652    //
653    fInputHandler = (AliInputEventHandler *)((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
654    fMultiInputHandler = dynamic_cast<AliMultiInputEventHandler *>(fInputHandler);
655    if (fMultiInputHandler) {
656       fInputHandler = dynamic_cast<AliInputEventHandler *>(fMultiInputHandler->GetFirstInputEventHandler());
657       fMCEventHandler = dynamic_cast<AliMCEventHandler *>(fMultiInputHandler->GetFirstMCEventHandler());
658    } else { 
659       fMCEventHandler = dynamic_cast<AliMCEventHandler *>((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler());
660    }
661    if (fMCEventHandler) fMCEvent = fMCEventHandler->MCEvent();
662 }
663
664 //_________________________________________________________________________________________________
665 void AliAnalysisTaskSE::DisconnectMultiHandler()
666 {
667    //
668    // Disconnect MultiHandler
669    //
670    if (fMultiInputHandler) fInputHandler = fMultiInputHandler;
671 }