]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliAnalysisTaskMCParticleFilter.cxx
Simple class to export/import data in the HEP data format (import very limited in...
[u/mrichter/AliRoot.git] / ANALYSIS / AliAnalysisTaskMCParticleFilter.cxx
CommitLineData
da97a08a 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//
17// Analysis task for Kinematic filtering
18// Fill AODtrackMC tracks from Kinematic stack
19//
20
21#include <TChain.h>
22#include <TFile.h>
23#include "TParticle.h"
a3b51fd2 24#include "TParameter.h"
da97a08a 25#include "TString.h"
a3b51fd2 26#include "TList.h"
27#include "TProfile.h"
28#include "TH1F.h"
29
da97a08a 30
31#include "AliAnalysisTaskMCParticleFilter.h"
32#include "AliAnalysisManager.h"
33#include "AliAnalysisFilter.h"
34#include "AliHeader.h"
35#include "AliStack.h"
36#include "AliMCEvent.h"
37#include "AliMCEventHandler.h"
38#include "AliAODEvent.h"
39#include "AliAODHeader.h"
dce1b636 40#include "AliAODMCHeader.h"
da97a08a 41#include "AliAODHandler.h"
42#include "AliAODVertex.h"
43#include "AliAODMCParticle.h"
e988332e 44#include "AliCollisionGeometry.h"
c4b2bb17 45#include "AliGenDPMjetEventHeader.h"
46#include "AliGenHijingEventHeader.h"
47#include "AliGenPythiaEventHeader.h"
e988332e 48#include "AliGenCocktailEventHeader.h"
da97a08a 49
50#include "AliLog.h"
51
52ClassImp(AliAnalysisTaskMCParticleFilter)
53
54////////////////////////////////////////////////////////////////////////
55
56//____________________________________________________________________
57AliAnalysisTaskMCParticleFilter::AliAnalysisTaskMCParticleFilter():
3189f57d 58 AliAnalysisTaskSE(),
a3b51fd2 59 fTrackFilterMother(0x0),
3189f57d 60 fAODMcHeader(0x0),
61 fAODMcParticles(0x0),
a3b51fd2 62 fHistList(0x0)
da97a08a 63{
64 // Default constructor
65}
66
a3b51fd2 67Bool_t AliAnalysisTaskMCParticleFilter::Notify()
68{
69 //
70 // Implemented Notify() to read the cross sections
c4b2bb17 71 // from pyxsec.root
a3b51fd2 72 //
73 TTree *tree = AliAnalysisManager::GetAnalysisManager()->GetTree();
74 Double_t xsection = 0;
75 UInt_t ntrials = 0;
76 if(tree){
77 TFile *curfile = tree->GetCurrentFile();
78 if (!curfile) {
79 Error("Notify","No current file");
80 return kFALSE;
81 }
82
83 TString fileName(curfile->GetName());
84 if(fileName.Contains("AliESDs.root")){
85 fileName.ReplaceAll("AliESDs.root", "pyxsec.root");
86 }
87 else if(fileName.Contains("AliAOD.root")){
88 fileName.ReplaceAll("AliAOD.root", "pyxsec.root");
89 }
90 else if(fileName.Contains("galice.root")){
91 // for running with galice and kinematics alone...
92 fileName.ReplaceAll("galice.root", "pyxsec.root");
93 }
94
95
96 TFile *fxsec = TFile::Open(fileName.Data());
97 if(!fxsec){
98 AliInfo(Form("%s:%d %s not found in the Input",(char*)__FILE__,__LINE__,fileName.Data()));
99 // not a severe condition we just do not have the information...
100 return kTRUE;
101 }
102 TTree *xtree = (TTree*)fxsec->Get("Xsection");
103 if(!xtree){
cd0ecb97 104 AliWarning(Form("%s:%d tree not found in the pyxsec.root",(char*)__FILE__,__LINE__));
a3b51fd2 105 return kTRUE;
106 }
107 xtree->SetBranchAddress("xsection",&xsection);
108 xtree->SetBranchAddress("ntrials",&ntrials);
109 xtree->GetEntry(0);
110 ((TProfile*)(fHistList->FindObject("h1Xsec")))->Fill("<#sigma>",xsection);
a3b51fd2 111 }
112 return kTRUE;
113}
114
115
116
da97a08a 117//____________________________________________________________________
118AliAnalysisTaskMCParticleFilter::AliAnalysisTaskMCParticleFilter(const char* name):
119 AliAnalysisTaskSE(name),
a3b51fd2 120 fTrackFilterMother(0x0),
3189f57d 121 fAODMcHeader(0x0),
122 fAODMcParticles(0x0),
a3b51fd2 123 fHistList(0x0)
da97a08a 124{
125 // Default constructor
cc008a4b 126 DefineOutput(1, TList::Class());
da97a08a 127}
128
a3b51fd2 129/*
da97a08a 130//____________________________________________________________________
131AliAnalysisTaskMCParticleFilter::AliAnalysisTaskMCParticleFilter(const AliAnalysisTaskMCParticleFilter& obj):
132 AliAnalysisTaskSE(obj),
133 fTrackFilterMother(obj.fTrackFilterMother)
134{
135 // Copy constructor
136}
a3b51fd2 137*/
da97a08a 138//____________________________________________________________________
139AliAnalysisTaskMCParticleFilter::~AliAnalysisTaskMCParticleFilter()
140{
3189f57d 141
142 if(fAODMcHeader){
143 delete fAODMcHeader;
144 }
145 if(fAODMcParticles){
146 fAODMcParticles->Delete();
147 delete fAODMcParticles;
148 }
da97a08a 149}
150
a3b51fd2 151/*
da97a08a 152//____________________________________________________________________
153AliAnalysisTaskMCParticleFilter& AliAnalysisTaskMCParticleFilter::operator=(const AliAnalysisTaskMCParticleFilter& other)
154{
155// Assignment
156 if(this!=&other) {
157 AliAnalysisTaskSE::operator=(other);
158 fTrackFilterMother = other.fTrackFilterMother;
159 }
160 return *this;
161}
a3b51fd2 162*/
da97a08a 163//____________________________________________________________________
164void AliAnalysisTaskMCParticleFilter::UserCreateOutputObjects()
165{
166 // Create the output container
a7cd6336 167 PostData(1,fHistList);
168
da97a08a 169 if (OutputTree()&&fTrackFilterMother)
170 OutputTree()->GetUserInfo()->Add(fTrackFilterMother);
d2740fba 171
172 // this part is mainly needed to set the MCEventHandler
173 // to the AODHandler, this will not be needed when
174 // AODHandler goes to ANALYSISalice
175 // setting in the steering macro will not work on proof :(
176 // so we have to do it in a task
177
178 // the branch booking can also go into the AODHandler then
179
dce1b636 180
181 // mcparticles
3189f57d 182 fAODMcParticles = new TClonesArray("AliAODMCParticle", 0);
183 fAODMcParticles->SetName(AliAODMCParticle::StdBranchName());
184 AddAODBranch("TClonesArray",&fAODMcParticles);
da97a08a 185
dce1b636 186 // MC header...
3189f57d 187 fAODMcHeader = new AliAODMCHeader();
188 fAODMcHeader->SetName(AliAODMCHeader::StdBranchName());
189 AddAODBranch("AliAODMCHeader",&fAODMcHeader);
dce1b636 190
191 AliMCEventHandler *mcH = (AliMCEventHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler());
da97a08a 192 AliAODHandler *aodH = dynamic_cast<AliAODHandler*> ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
193 if(!aodH){
3827f93a 194 AliWarning("Could not get AODHandler");
da97a08a 195 return;
196 }
197 aodH->SetMCEventHandler(mcH);
dce1b636 198
a3b51fd2 199
200 // these are histograms, for averaging and summing
201 // do it via histograms to be PROOF-proof
202 // which merges the results from different workers
203 // histos are not saved reside only in memory
204
205
206
207 fHistList = new TList();
208 TProfile *h1Xsec = new TProfile("h1Xsec","xsec from pyxsec.root",1,0,1);
209 h1Xsec->GetXaxis()->SetBinLabel(1,"<#sigma>");
210 fHistList->Add(h1Xsec);
c4b2bb17 211 TH1F* h1Trials = new TH1F("h1Trials","trials from MC header",1,0,1);
a3b51fd2 212 h1Trials->GetXaxis()->SetBinLabel(1,"#sum{ntrials}");
213 fHistList->Add(h1Trials);
214
da97a08a 215
216}
217
218//____________________________________________________________________
219void AliAnalysisTaskMCParticleFilter::UserExec(Option_t */*option*/)
220{
221// Execute analysis for current event
222//
223
224// Fill AOD tracks from Kinematic stack
225
226 // get AliAOD Event
227 AliAODEvent* aod = AODEvent();
228 if (!aod) {
229 AliWarning("No Output Handler connected, doing nothing !") ;
230 return;
231 }
232
233 AliMCEventHandler *mcH = (AliMCEventHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetMCtruthEventHandler());
234 if(!mcH){
235 AliWarning("No MC handler Found");
236 return;
237 }
3827f93a 238
239 AliAODHandler *aodH = dynamic_cast<AliAODHandler*> ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
240 if(!aodH){
241 AliWarning("Could not get AODHandler");
242 return;
243 }
244
da97a08a 245
246
247 // fetch the output
248 // Fill control histos
249
250 // tmp array for holding the mctracks
251 // need to set mother and duagther __before__
252 // filling in the tree
253
254 AliMCEvent *mcE = MCEvent();
255
256 if(!mcE){
257 AliWarning("No MC event Found");
258 return;
259 }
260
da97a08a 261 Int_t np = mcE->GetNumberOfTracks();
93836e1b 262 Int_t nprim = mcE->GetNumberOfPrimaries();
da97a08a 263 // TODO ADD MC VERTEX
e988332e 264
e988332e 265 // Get the proper MC Collision Geometry
266 AliGenEventHeader* mcEH = mcE->GenEventHeader();
e988332e 267
cc008a4b 268 AliGenPythiaEventHeader *pyH = dynamic_cast<AliGenPythiaEventHeader*>(mcEH);
269 AliGenHijingEventHeader *hiH = 0;
270 AliCollisionGeometry *colG = 0;
c4b2bb17 271 AliGenDPMjetEventHeader *dpmH = 0;
272 // it can be only one save some casts
273 // assuming PYTHIA and HIJING are the most likely ones...
274 if(!pyH){
cc008a4b 275 hiH = dynamic_cast<AliGenHijingEventHeader*>(mcEH);
276 if(!hiH){
277 dpmH = dynamic_cast<AliGenDPMjetEventHeader*>(mcEH);
278 }
c4b2bb17 279 }
cc008a4b 280
281 if (hiH || dpmH) colG = dynamic_cast<AliCollisionGeometry*>(mcEH);
c4b2bb17 282
283 // fetch the trials on a event by event basis, not from pyxsec.root otherwise
284 // we will get a problem when running on proof since Notify may be called
285 // more than once per file
286 // consider storing this information in the AOD output via AliAODHandler
287 Float_t ntrials = 0;
e988332e 288 if (!colG) {
289 AliGenCocktailEventHeader *ccEH = dynamic_cast<AliGenCocktailEventHeader *>(mcEH);
290 if (ccEH) {
291 TList *genHeaders = ccEH->GetHeaders();
292 for (int imch=0; imch<genHeaders->GetEntries(); imch++) {
c4b2bb17 293 if(!pyH)dynamic_cast<AliGenPythiaEventHeader*>(genHeaders->At(imch));
294 if(!hiH)dynamic_cast<AliGenHijingEventHeader*>(genHeaders->At(imch));
295 if(!colG)colG = dynamic_cast<AliCollisionGeometry *>(genHeaders->At(imch));
296 if(!dpmH)dynamic_cast<AliGenDPMjetEventHeader*>(genHeaders->At(imch));
e988332e 297 }
298 }
299 }
300
c4b2bb17 301 // take the trials from the p+p event
302 if(hiH)ntrials = hiH->Trials();
5ae590c4 303 if(dpmH)ntrials = dpmH->Trials();
c4b2bb17 304 if(pyH)ntrials = pyH->Trials();
305 if(ntrials)((TH1F*)(fHistList->FindObject("h1Trials")))->Fill("#sum{ntrials}",ntrials);
306
307
308
309
e988332e 310 if (colG) {
3189f57d 311 fAODMcHeader->SetReactionPlaneAngle(colG->ReactionPlaneAngle());
cd0ecb97 312 AliInfo(Form("Found Collision Geometry. Got Reaction Plane %lf\n", colG->ReactionPlaneAngle()));
e988332e 313 }
314
de514cf0 315
316
317 // check varibales for charm need all daughters
318 static int iTaken = 0;
319 static int iAll = 0;
320 static int iCharm = 0;
da97a08a 321
322
da97a08a 323 Int_t j=0;
324 for (Int_t ip = 0; ip < np; ip++){
7aad0c47 325 AliMCParticle* mcpart = (AliMCParticle*) mcE->GetTrack(ip);
da97a08a 326 TParticle* part = mcpart->Particle();
da97a08a 327 Float_t xv = part->Vx();
328 Float_t yv = part->Vy();
329 Float_t zv = part->Vz();
330 Float_t rv = TMath::Sqrt(xv * xv + yv * yv);
331
332 Bool_t write = kFALSE;
63892dd0 333
da97a08a 334 if (ip < nprim) {
335 // Select the primary event
336 write = kTRUE;
43d79481 337 } else if (part->GetUniqueID() == kPDecay) {
da97a08a 338 // Particles from decay
339 // Check that the decay chain ends at a primary particle
93836e1b 340 AliMCParticle* mother = mcpart;
341 Int_t imo = mcpart->GetMother();
43d79481 342 while((imo >= nprim) && (mother->GetUniqueID() == kPDecay)) {
7aad0c47 343 mother = (AliMCParticle*) mcE->GetTrack(imo);
93836e1b 344 imo = mother->GetMother();
da97a08a 345 }
63892dd0 346 // Select according to pseudorapidity and production point of primary ancestor
7aad0c47 347 if (imo < nprim && Select(((AliMCParticle*) mcE->GetTrack(imo))->Particle(), rv, zv))write = kTRUE;
43d79481 348 } else if (part->GetUniqueID() == kPPair) {
da97a08a 349 // Now look for pair production
93836e1b 350 Int_t imo = mcpart->GetMother();
da97a08a 351 if (imo < nprim) {
352 // Select, if the gamma is a primary
353 write = kTRUE;
354 } else {
355 // Check if the gamma comes from the decay chain of a primary particle
7aad0c47 356 AliMCParticle* mother = (AliMCParticle*) mcE->GetTrack(imo);
93836e1b 357 imo = mother->GetMother();
43d79481 358 while((imo >= nprim) && (mother->GetUniqueID() == kPDecay)) {
7aad0c47 359 mother = (AliMCParticle*) mcE->GetTrack(imo);
93836e1b 360 imo = mother->GetMother();
da97a08a 361 }
362 // Select according to pseudorapidity and production point
93836e1b 363 if (imo < nprim && Select(mother->Particle(), rv, zv))
da97a08a 364 write = kTRUE;
365 }
366 }
367 /*
368 else if (part->GetUniqueID() == 13){
369 // Evaporation
370 // Check that we end at a primary particle
371 TParticle* mother = part;
372 Int_t imo = part->GetFirstMother();
373 while((imo >= nprim) && ((mother->GetUniqueID() == 4 ) || ( mother->GetUniqueID() == 13))) {
374 mother = mcE->Stack()->Particle(imo);
375 imo = mother->GetFirstMother();
376 }
377 // Select according to pseudorapidity and production point
378 if (imo < nprim && Select(mother, rv, zv))
379 write = kTRUE;
380 }
381 */
382 if (write) {
383 if(mcH)mcH->SelectParticle(ip);
384 j++;
de514cf0 385
386 // debug info to check fro charm daugthers
387 if((TMath::Abs(part->GetPdgCode()))==411){
388 iCharm++;
389 Int_t d0 = mcpart->GetFirstDaughter();
390 Int_t d1 = mcpart->GetLastDaughter();
391 if(d0>0&&d1>0){
392 for(int id = d0;id <= d1;id++){
393 iAll++;
394 if(mcH->IsParticleSelected(id))iTaken++;
395 }
63892dd0 396 }
de514cf0 397 }// if charm
63892dd0 398 }
399 }
a3c57861 400
401 AliInfo(Form("Taken daughters %d/%d of %d charm",iTaken,iAll,iCharm));
63892dd0 402
3827f93a 403 aodH->StoreMCParticles();
a3b51fd2 404 PostData(1,fHistList);
63892dd0 405
da97a08a 406 return;
407}
408
a3b51fd2 409void AliAnalysisTaskMCParticleFilter::Terminate(Option_t */*option*/){
410 //
411 // Terminate the execution save the PYTHIA x_section to the UserInfo()
412 //
413
414
a3b51fd2 415 fHistList = (TList*)GetOutputData(1);
416 if(!fHistList){
417 Printf("%s:%d Output list not found",(char*)__FILE__,__LINE__);
418 return;
419 }
420
a3b51fd2 421 TProfile *hXsec = ((TProfile*)(fHistList->FindObject("h1Xsec")));
422 TH1F* hTrials = ((TH1F*)(fHistList->FindObject("h1Trials")));
423 if(!hXsec)return;
424 if(!hTrials)return;
425
426 Float_t xsec = hXsec->GetBinContent(1);
427 Float_t trials = hTrials->Integral();
428 AliInfo(Form("Average -section %.4E and total number of trials %E",xsec,trials));
a3b51fd2 429
430}
431
da97a08a 432Bool_t AliAnalysisTaskMCParticleFilter::Select(TParticle* part, Float_t rv, Float_t zv)
433{
434 // Selection accoring to eta of the mother and production point
435 // This has to be refined !!!!!!
436
437 // Esp if we don't have collisison in the central barrel but e.g. beam gas
438 // return kTRUE;
439
440 Float_t eta = part->Eta();
441
442 // central barrel consider everything in the ITS...
443 // large eta window for smeared vertex and SPD acceptance (2 at z = 0)
444 // larger for V0s in the TPC
445 // if (TMath::Abs(eta) < 2.5 && rv < 250. && TMath::Abs(zv)<255)return kTRUE;
446
63892dd0 447 if (TMath::Abs(eta) < 2.5 && rv < 170)return kTRUE;
448
da97a08a 449 // Andreas' Cuts
63892dd0 450 // if (TMath::Abs(eta) < 1. && rv < 170)return kTRUE;
451
452
da97a08a 453
454 // Muon arm
455 if(eta > -4.2 && eta < -2.3 && zv > -500.)return kTRUE; // Muon arms
456
457 // PMD acceptance 2.3 <= eta < = 3.5
458 // if(eta>2.0&&eta<3.7)return kTRUE;
459
460 return kFALSE;
461
462}
463