]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliAnalysisTaskSE.cxx
Dimuon branch in AODEvent
[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
30 #include "AliESDEvent.h"
31 #include "AliESDfriend.h"
32 #include "AliESD.h"
33 #include "AliAODEvent.h"
34 #include "AliAODHeader.h"
35 #include "AliAODTracklets.h"
36 #include "AliAODCaloCells.h"
37 #include "AliAODMCParticle.h"
38 #include "AliVEvent.h"
39 #include "AliAODHandler.h"
40 #include "AliAODInputHandler.h"
41 #include "AliMCEventHandler.h"
42 #include "AliInputEventHandler.h"
43 #include "AliESDInputHandler.h"
44 #include "AliMCEvent.h"
45 #include "AliStack.h"
46 #include "AliLog.h"
47 #include "AliAODDimuon.h"
48
49
50 ClassImp(AliAnalysisTaskSE)
51
52 ////////////////////////////////////////////////////////////////////////
53 AliAODHeader*    AliAnalysisTaskSE::fgAODHeader         = NULL;
54 TClonesArray*    AliAnalysisTaskSE::fgAODTracks         = NULL;
55 TClonesArray*    AliAnalysisTaskSE::fgAODVertices       = NULL;
56 TClonesArray*    AliAnalysisTaskSE::fgAODV0s            = NULL;
57 TClonesArray*    AliAnalysisTaskSE::fgAODPMDClusters    = NULL;
58 TClonesArray*    AliAnalysisTaskSE::fgAODJets           = NULL;
59 TClonesArray*    AliAnalysisTaskSE::fgAODFMDClusters    = NULL;
60 TClonesArray*    AliAnalysisTaskSE::fgAODCaloClusters   = NULL;
61 TClonesArray*    AliAnalysisTaskSE::fgAODMCParticles    = NULL;
62 AliAODTracklets* AliAnalysisTaskSE::fgAODTracklets      = NULL;
63 AliAODCaloCells* AliAnalysisTaskSE::fgAODEmcalCells     = NULL;
64 AliAODCaloCells* AliAnalysisTaskSE::fgAODPhosCells      = NULL;
65 TClonesArray*    AliAnalysisTaskSE::fgAODDimuons        = NULL;
66
67 AliAnalysisTaskSE::AliAnalysisTaskSE():
68     AliAnalysisTask(),
69     fDebug(0),
70     fEntry(0),
71     fInputEvent(0x0),
72     fESDfriend(0x0),
73     fInputHandler(0x0),
74     fOutputAOD(0x0),
75     fMCEvent(0x0),
76     fTreeA(0x0),
77     fCurrentRunNumber(-1),
78     fHistosQA(0x0),
79     fSelectCollisions(0)
80 {
81   // Default constructor
82 }
83
84 AliAnalysisTaskSE::AliAnalysisTaskSE(const char* name):
85     AliAnalysisTask(name, "AnalysisTaskSE"),
86     fDebug(0),
87     fEntry(0),
88     fInputEvent(0x0),
89     fESDfriend(0x0),
90     fInputHandler(0x0),
91     fOutputAOD(0x0),
92     fMCEvent(0x0),
93     fTreeA(0x0),
94     fCurrentRunNumber(-1),
95     fHistosQA(0x0),
96     fSelectCollisions(0)
97 {
98   // Default constructor
99     DefineInput (0, TChain::Class());
100     DefineOutput(0,  TTree::Class());
101 }
102
103 AliAnalysisTaskSE::AliAnalysisTaskSE(const AliAnalysisTaskSE& obj):
104     AliAnalysisTask(obj),
105     fDebug(0),
106     fEntry(0),
107     fInputEvent(0x0),
108     fESDfriend(0x0),
109     fInputHandler(0x0),
110     fOutputAOD(0x0),
111     fMCEvent(0x0),
112     fTreeA(0x0),
113     fCurrentRunNumber(-1),
114     fHistosQA(0x0),
115     fSelectCollisions(0)
116 {
117 // Copy constructor
118     fDebug            = obj.fDebug;
119     fEntry            = obj.fEntry;
120     fInputEvent       = obj.fInputEvent;
121     fESDfriend        = obj.fESDfriend;
122     fInputHandler     = obj.fInputHandler;
123     fOutputAOD        = obj.fOutputAOD;
124     fMCEvent          = obj.fMCEvent;
125     fTreeA            = obj.fTreeA;    
126     fCurrentRunNumber = obj.fCurrentRunNumber;
127     fHistosQA         = obj.fHistosQA;
128
129 }
130
131
132 AliAnalysisTaskSE& AliAnalysisTaskSE::operator=(const AliAnalysisTaskSE& other)
133 {
134 // Assignment
135     AliAnalysisTask::operator=(other);
136     fDebug            = other.fDebug;
137     fEntry            = other.fEntry;
138     fInputEvent       = other.fInputEvent;
139     fESDfriend        = other.fESDfriend;
140     fInputHandler     = other.fInputHandler;
141     fOutputAOD        = other.fOutputAOD;
142     fMCEvent          = other.fMCEvent;
143     fTreeA            = other.fTreeA;    
144     fCurrentRunNumber = other.fCurrentRunNumber;
145     fHistosQA         = other.fHistosQA;
146     fSelectCollisions = other.fSelectCollisions;
147     return *this;
148 }
149
150
151 void AliAnalysisTaskSE::ConnectInputData(Option_t* /*option*/)
152 {
153 // Connect the input data
154     if (fDebug > 1) printf("AnalysisTaskSE::ConnectInputData() \n");
155 //
156 //  ESD
157 //
158     fInputHandler = (AliInputEventHandler*) 
159          ((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
160 //
161 //  Monte Carlo
162 //
163     AliMCEventHandler*    mcH = 0;
164     mcH = (AliMCEventHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler());
165     if (mcH) {
166         fMCEvent = mcH->MCEvent();
167     } 
168     
169     if (fInputHandler) {
170         if ((fInputHandler->GetTree())->GetBranch("ESDfriend."))
171             fESDfriend = ((AliESDInputHandler*)fInputHandler)->GetESDfriend();
172
173         fInputEvent = fInputHandler->GetEvent();
174     } else if( fMCEvent ) {
175          AliWarning("No Input Event Handler connected, only MC Truth Event Handler") ; 
176     } else {
177          AliError("No Input Event Handler connected") ; 
178          return ; 
179     }
180 }
181
182 void AliAnalysisTaskSE::CreateOutputObjects()
183 {
184 // Create the output container
185 //
186 //  Default AOD
187     if (fDebug > 1) printf("AnalysisTaskSE::CreateOutPutData() \n");
188
189     AliAODHandler* handler = (AliAODHandler*) 
190          ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
191     
192     Bool_t merging = kFALSE;
193     AliAODInputHandler* aodIH = static_cast<AliAODInputHandler*>((AliAnalysisManager::GetAnalysisManager())->GetInputEventHandler());
194     if (aodIH) {
195         if (aodIH->GetMergeEvents()) merging = kTRUE;
196     }
197     
198
199     // Check if AOD replication has been required
200     
201     if (handler) {
202         fOutputAOD   = handler->GetAOD();
203         fTreeA = handler->GetTree();
204         if (fOutputAOD && !(handler->IsStandard())) {
205             if ((handler->NeedsHeaderReplication()) && !(fgAODHeader)) 
206                 {
207                  if (fDebug > 1) AliInfo("Replicating header");
208                  fgAODHeader = new AliAODHeader;
209                  handler->AddBranch("AliAODHeader", &fgAODHeader);
210                 }
211             if ((handler->NeedsTracksBranchReplication() || merging) && !(fgAODTracks))      
212             {   
213                 if (fDebug > 1) AliInfo("Replicating track branch\n");
214                 fgAODTracks = new TClonesArray("AliAODTrack",500);
215                 fgAODTracks->SetName("tracks");
216                 handler->AddBranch("TClonesArray", &fgAODTracks);
217             }    
218             if ((handler->NeedsVerticesBranchReplication() || merging) && !(fgAODVertices))
219             {
220                 if (fDebug > 1) AliInfo("Replicating vertices branch\n");
221                 fgAODVertices = new TClonesArray("AliAODVertex",500);
222                 fgAODVertices->SetName("vertices");
223                 handler->AddBranch("TClonesArray", &fgAODVertices);
224             }   
225             if ((handler->NeedsV0sBranchReplication()) && !(fgAODV0s))    
226             {   
227                 if (fDebug > 1) AliInfo("Replicating V0s branch\n");
228                 fgAODV0s = new TClonesArray("AliAODv0",500);
229                 fgAODV0s->SetName("v0s");
230                 handler->AddBranch("TClonesArray", &fgAODV0s);
231             }
232             if ((handler->NeedsTrackletsBranchReplication()) && !(fgAODTracklets))        
233             {   
234                 if (fDebug > 1) AliInfo("Replicating Tracklets branch\n");
235                 fgAODTracklets = new AliAODTracklets("tracklets","tracklets");
236                 handler->AddBranch("AliAODTracklets", &fgAODTracklets);
237             }
238             if ((handler->NeedsPMDClustersBranchReplication()) && !(fgAODPMDClusters))    
239             {   
240                 if (fDebug > 1) AliInfo("Replicating PMDClusters branch\n");
241                 fgAODPMDClusters = new TClonesArray("AliAODPmdCluster",500);
242                 fgAODPMDClusters->SetName("pmdClusters");
243                 handler->AddBranch("TClonesArray", &fgAODPMDClusters);
244             }
245             if ((handler->NeedsJetsBranchReplication() || merging) && !(fgAODJets))       
246             {   
247                 if (fDebug > 1) AliInfo("Replicating Jets branch\n");
248                 fgAODJets = new TClonesArray("AliAODJet",500);
249                 fgAODJets->SetName("jets");
250                 handler->AddBranch("TClonesArray", &fgAODJets);
251             }
252             if ((handler->NeedsFMDClustersBranchReplication()) && !(fgAODFMDClusters))    
253             {   
254                 AliInfo("Replicating FMDClusters branch\n");
255                 fgAODFMDClusters = new TClonesArray("AliAODFmdCluster",500);
256                 fgAODFMDClusters->SetName("fmdClusters");
257                 handler->AddBranch("TClonesArray", &fgAODFMDClusters);
258             }
259             if ((handler->NeedsCaloClustersBranchReplication() || merging) && !(fgAODCaloClusters))       
260             {   
261                 if (fDebug > 1) AliInfo("Replicating CaloClusters branch\n");
262                 fgAODCaloClusters = new TClonesArray("AliAODCaloCluster",500);
263                 fgAODCaloClusters->SetName("caloClusters");
264                 handler->AddBranch("TClonesArray", &fgAODCaloClusters);
265
266                 fgAODEmcalCells = new AliAODCaloCells();
267                 fgAODEmcalCells->SetName("emcalCells");
268                 handler->AddBranch("AliAODCaloCells", &fgAODEmcalCells);
269
270                 fgAODPhosCells = new AliAODCaloCells();
271                 fgAODPhosCells->SetName("phosCells");
272                 handler->AddBranch("AliAODCaloCells", &fgAODPhosCells);
273             }
274             if ((handler->NeedsMCParticlesBranchReplication() || merging) && !(fgAODMCParticles))         
275             {   
276                 if (fDebug > 1) AliInfo("Replicating MCParticles branch\n");
277                 fgAODMCParticles = new TClonesArray("AliAODMCParticle",500);
278                 fgAODMCParticles->SetName("mcparticles");
279                 handler->AddBranch("TClonesArray", &fgAODMCParticles);
280             }
281             if ((handler->NeedsDimuonsBranchReplication() || merging) && !(fgAODDimuons))      
282             {   
283                 if (fDebug > 1) AliInfo("Replicating dimuon branch\n");
284                 fgAODDimuons = new TClonesArray("AliAODDimuon",0);
285                 fgAODDimuons->SetName("dimuons");
286                 handler->AddBranch("TClonesArray", &fgAODDimuons);
287             }    
288
289             // cache the pointerd in the AODEvent
290             fOutputAOD->GetStdContent();
291         }
292     } else {
293         AliWarning("No AOD Event Handler connected.") ; 
294     }
295     UserCreateOutputObjects();
296 }
297
298 void AliAnalysisTaskSE::Exec(Option_t* option)
299 {
300 //
301 // Exec analysis of one event
302     if (fDebug > 1) AliInfo("AliAnalysisTaskSE::Exec() \n");
303 //
304     AliAODHandler* handler = (AliAODHandler*) 
305         ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
306     AliAODInputHandler* aodH = dynamic_cast<AliAODInputHandler*>(fInputHandler);
307 //
308 // Was event selected ?
309     Bool_t isSelected = kTRUE;
310     if( fInputHandler && fInputHandler->GetEventSelection() && fSelectCollisions) {
311       isSelected = fInputHandler->IsEventSelected();
312     }
313
314     if (handler) handler->SetFillAOD(isSelected);
315
316     if( fInputHandler ) fEntry = fInputHandler->GetReadEntry();
317   
318
319 // Notify the change of run number
320     if (InputEvent()->GetRunNumber() != fCurrentRunNumber) {
321         fCurrentRunNumber = InputEvent()->GetRunNumber();
322         NotifyRun();
323     }    
324            
325     else if( fMCEvent )
326        fEntry = fMCEvent->Header()->GetEvent(); 
327     if ( !((Entry()-1)%100) && fDebug > 0) 
328          AliInfo(Form("%s ----> Processing event # %lld", CurrentFileName(), Entry()));
329
330     
331     
332
333     if (handler && aodH) {
334         fMCEvent = aodH->MCEvent();
335         Bool_t merging = aodH->GetMergeEvents();
336         
337         if (!(handler->IsStandard()) && !(handler->AODIsReplicated())) {
338             if ((handler->NeedsHeaderReplication()) && (fgAODHeader))
339             {
340               // copy the contents by assigment
341               *fgAODHeader =  *(dynamic_cast<AliAODHeader*>(InputEvent()->GetHeader()));
342             }
343             if ((handler->NeedsTracksBranchReplication() || merging) && (fgAODTracks))
344             {
345                 TClonesArray* tracks = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetTracks();
346                 new (fgAODTracks) TClonesArray(*tracks);
347             }
348             if ((handler->NeedsVerticesBranchReplication() || merging) && (fgAODVertices))
349             {
350                 TClonesArray* vertices = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetVertices();
351                 new (fgAODVertices) TClonesArray(*vertices);
352             }
353             if ((handler->NeedsV0sBranchReplication()) && (fgAODV0s))
354             {
355                 TClonesArray* v0s = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetV0s();
356                 new (fgAODV0s) TClonesArray(*v0s);
357             }
358             if ((handler->NeedsTrackletsBranchReplication()) && (fgAODTracklets))
359             {
360               *fgAODTracklets = *(dynamic_cast<AliAODEvent*>(InputEvent()))->GetTracklets();
361             }
362             if ((handler->NeedsPMDClustersBranchReplication()) && (fgAODPMDClusters))
363             {
364                 TClonesArray* pmdClusters = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetPmdClusters();
365                 new (fgAODPMDClusters) TClonesArray(*pmdClusters);
366             }
367             if ((handler->NeedsJetsBranchReplication() || merging) && (fgAODJets))
368             {
369                 TClonesArray* jets = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetJets();
370                 new (fgAODJets) TClonesArray(*jets);
371             }
372             if ((handler->NeedsFMDClustersBranchReplication()) && (fgAODFMDClusters))
373             {
374                 TClonesArray* fmdClusters = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetFmdClusters();
375                 new (fgAODFMDClusters) TClonesArray(*fmdClusters);
376             }
377             if ((handler->NeedsCaloClustersBranchReplication() || merging) && (fgAODCaloClusters))
378             {
379                 TClonesArray* caloClusters = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetCaloClusters();
380                 new (fgAODCaloClusters) TClonesArray(*caloClusters);
381             }
382
383             if ((handler->NeedsMCParticlesBranchReplication() || merging) && (fgAODMCParticles))
384             {
385                 TClonesArray* mcParticles = (TClonesArray*) ((dynamic_cast<AliAODEvent*>(InputEvent()))->FindListObject("mcparticles"));
386                 new (fgAODMCParticles) TClonesArray(*mcParticles);
387             }
388             
389             if ((handler->NeedsDimuonsBranchReplication() || merging) && (fgAODDimuons))
390             {
391                 TClonesArray* dimuons = (dynamic_cast<AliAODEvent*>(InputEvent()))->GetDimuons();
392                 new (fgAODDimuons) TClonesArray(*dimuons);
393             }
394
395             // Additional merging if needed
396             if (merging) {
397                 // mcParticles
398                 TClonesArray* mcparticles = (TClonesArray*) ((aodH->GetEventToMerge())->FindListObject("mcparticles"));
399                 Int_t npart = mcparticles->GetEntries();
400                 Int_t nc = fgAODMCParticles->GetEntries();
401                 Int_t nc0 = nc;
402                 
403                 for (Int_t i = 0; i < npart; i++) {
404                     AliAODMCParticle* particle = (AliAODMCParticle*) mcparticles->At(i);
405                     new((*fgAODMCParticles)[nc++]) AliAODMCParticle(*particle);
406                 }
407                 
408                 // tracks
409                 TClonesArray* tracks = aodH->GetEventToMerge()->GetTracks();
410                 Int_t ntr = tracks->GetEntries();
411                 nc  = fgAODTracks->GetEntries();        
412                 for (Int_t i = 0; i < ntr; i++) {
413                     AliAODTrack*    track = (AliAODTrack*) tracks->At(i);
414                     AliAODTrack* newtrack = new((*fgAODTracks)[nc++]) AliAODTrack(*track);
415
416                     newtrack->SetLabel(newtrack->GetLabel() + nc0);
417                 }
418
419                 for (Int_t i = 0; i < nc; i++) 
420                 {
421                     AliAODTrack* track = (AliAODTrack*) fgAODTracks->At(i);
422                     track->ResetBit(kIsReferenced);
423                     track->SetUniqueID(0);
424                 }
425                 
426                 
427                 // clusters
428                 TClonesArray* clusters = aodH->GetEventToMerge()->GetCaloClusters();
429                 Int_t ncl  = clusters->GetEntries();
430                 nc         =  fgAODCaloClusters->GetEntries();
431                 for (Int_t i = 0; i < ncl; i++) {
432                     AliAODCaloCluster*    cluster = (AliAODCaloCluster*) clusters->At(i);
433                     new((*fgAODCaloClusters)[nc++]) AliAODCaloCluster(*cluster);
434                 }
435                 // cells
436                 AliAODCaloCells* cellsA = aodH->GetEventToMerge()->GetEMCALCells();
437                 Int_t ncells  = cellsA->GetNumberOfCells();
438                 nc = fgAODEmcalCells->GetNumberOfCells();
439                 
440                 for (Int_t i  = 0; i < ncells; i++) {
441                     Int_t cn  = cellsA->GetCellNumber(i);
442                     Int_t pos = fgAODEmcalCells->GetCellPosition(cn);
443                     if (pos >= 0) {
444                         Double_t amp = cellsA->GetAmplitude(i) + fgAODEmcalCells->GetAmplitude(pos);
445                         fgAODEmcalCells->SetCell(pos, cn, amp);
446                     } else {
447                         Double_t amp = cellsA->GetAmplitude(i);
448                         fgAODEmcalCells->SetCell(nc++, cn, amp);
449                         fgAODEmcalCells->Sort();
450                     }
451                 }
452                 
453                 
454             } // merging
455             
456             handler->SetAODIsReplicated();
457         }
458     }
459
460 // Call the user analysis    
461     if (!fSelectCollisions || isSelected) 
462         UserExec(option);
463     
464 // Added protection in case the derived task is not an AOD producer.
465     AliAnalysisDataSlot *out0 = GetOutputSlot(0);
466     if (out0 && out0->IsConnected()) PostData(0, fTreeA);    
467 }
468
469 const char* AliAnalysisTaskSE::CurrentFileName()
470 {
471 // Returns the current file name    
472     if( fInputHandler )
473       return fInputHandler->GetTree()->GetCurrentFile()->GetName();
474     else if( fMCEvent )
475       return ((AliMCEventHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler()))->TreeK()->GetCurrentFile()->GetName();
476     else return "";
477 }
478
479 void AliAnalysisTaskSE::AddAODBranch(const char* cname, void* addobj, const char *fname)
480 {
481     // Add a new branch to the aod tree
482     AliAODHandler* handler = (AliAODHandler*) 
483         ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
484     if (handler) {
485         handler->AddBranch(cname, addobj, fname);
486     }
487 }
488
489 Bool_t AliAnalysisTaskSE::IsStandardAOD() const
490 {
491 // Check if the output AOD handler is configured for standard or delta AOD.
492 // Users should first check that AODEvent() returns non-null.
493     AliAODHandler* handler = (AliAODHandler*) 
494          ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
495     if (!handler) {
496        Error("IsStandardAOD", "No AOD handler. Please use AODEvent() to check this first");
497        return kTRUE;
498     }
499     return handler->IsStandard();   
500 }
501
502 Bool_t AliAnalysisTaskSE::Notify()
503 {
504     return (UserNotify());
505 }
506
507