]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliAODTagCreator.cxx
Add the eta and phi direction of the leading particle.
[u/mrichter/AliRoot.git] / STEER / AliAODTagCreator.cxx
1 /**************************************************************************
2  * Author: Panos Christakoglou.                                           *
3  * Contributors are mentioned in the code where appropriate.              *
4  *                                                                        *
5  * Permission to use, copy, modify and distribute this software and its   *
6  * documentation strictly for non-commercial purposes is hereby granted   *
7  * without fee, provided that the above copyright notice appears in all   *
8  * copies and that both the copyright notice and this permission notice   *
9  * appear in the supporting documentation. The authors make no claims     *
10  * about the suitability of this software for any purpose. It is          *
11  * provided "as is" without express or implied warranty.                  *
12  **************************************************************************/
13
14 /* $Id$ */
15
16 //-----------------------------------------------------------------
17 //           AliAODTagCreator class
18 //   This is the class to deal with the tag creation (post process)
19 //   Origin: Panos Christakoglou, UOA-CERN, Panos.Christakoglou@cern.ch
20 //-----------------------------------------------------------------
21
22 //ROOT
23 #include <Riostream.h>
24 #include <TFile.h>
25 #include <TString.h>
26 #include <TTree.h>
27 #include <TSystem.h>
28 #include <TChain.h>
29 #include <TLorentzVector.h>
30 #include <TRefArray.h>
31
32 //ROOT-AliEn
33 #include <TGrid.h>
34 #include <TGridResult.h>
35
36 //AliRoot
37 #include "AliRunTag.h"
38 #include "AliEventTag.h"
39 #include "AliPID.h"
40 #include "AliAODEvent.h"
41 #include "AliAODVertex.h"
42 #include "AliLog.h"
43
44 #include "AliAODTagCreator.h"
45
46
47 ClassImp(AliAODTagCreator)
48
49
50 //______________________________________________________________________________
51   AliAODTagCreator::AliAODTagCreator() :
52     AliTagCreator(), 
53     fChain(0), 
54     fAODEvent(0), 
55     fTreeT(0), 
56     fRunTag(0),
57     fTreeTEsd(0), 
58     fRunTagEsd(0)  
59 {
60   //==============Default constructor for a AliAODTagCreator================
61 }
62
63 //______________________________________________________________________________
64 AliAODTagCreator::~AliAODTagCreator() {
65 //================Default destructor for a AliAODTagCreator===================
66   delete fChain;
67   delete fAODEvent;
68 }
69
70 //______________________________________________________________________________
71 Bool_t AliAODTagCreator::ReadGridCollection(TGridResult *fresult) {
72   // Reads the entry of the TGridResult and creates the tags
73   Int_t nEntries = fresult->GetEntries();
74
75   TString alienUrl;
76   const char* guid;
77   const char* md5;
78   const char* turl;
79   Long64_t size = -1;
80
81   fChain = new TChain("aodTree");
82  
83   for(Int_t i = 0; i < nEntries; i++) {
84     alienUrl = fresult->GetKey(i,"turl");
85     guid = fresult->GetKey(i,"guid");
86     if(fresult->GetKey(i,"size")) size = atol (fresult->GetKey(i,"size"));
87     md5 = fresult->GetKey(i,"md5");
88     turl = fresult->GetKey(i,"turl");
89     if(md5 && !strlen(guid)) md5 = 0;
90     if(guid && !strlen(guid)) guid = 0;
91     
92     fChain->Add(alienUrl);
93   }//grid result loop
94   
95   AliInfo(Form("AOD chain created......."));    
96   AliInfo(Form("Chain entries: %d",fChain->GetEntries()));      
97
98   CreateTag(fChain, "grid");
99   
100   return kTRUE;
101 }
102
103 //______________________________________________________________________________
104 Bool_t AliAODTagCreator::ReadLocalCollection(const char *localpath) {
105   // Checks the different subdirs of the given local path and in the
106   // case where it finds an AliAODs.root file it creates the tags
107   
108   void *dira =  gSystem->OpenDirectory(localpath);
109   Char_t fPath[256];
110   const char * dirname = 0x0;
111   const char * filename = 0x0;
112   const char * pattern = "AliAODs.root"; 
113
114   fChain = new TChain("aodTree");
115
116   while((dirname = gSystem->GetDirEntry(dira))) {
117     sprintf(fPath,"%s/%s",localpath,dirname);
118     void *dirb =  gSystem->OpenDirectory(fPath);
119     while((filename = gSystem->GetDirEntry(dirb))) {
120         TString bstr = dirname;
121         if(bstr.Contains("..")) continue;
122         if(strstr(filename,pattern)) {
123             TString aodFileName;
124             aodFileName = fPath;
125             aodFileName += "/";
126             aodFileName += pattern;
127             fChain->Add(aodFileName);
128         } //pattern check
129     } //child directory's entry loop
130   } //parent directory's entry loop
131   
132   AliInfo(Form("AOD chain created......."));    
133   AliInfo(Form("Chain entries: %d",fChain->GetEntries()));      
134
135   CreateTag(fChain, "local");
136
137   return kTRUE;
138 }
139
140 //______________________________________________________________________________
141 Bool_t AliAODTagCreator::ReadCAFCollection(const char *filename) {
142   // Temporary solution for CAF: Takes as an input the ascii file that
143   // lists the AODs stored in the SE of the CAF and creates the tags.
144
145   // Open the input stream
146   ifstream in;
147   in.open(filename);
148
149   TString aodfile;
150
151   fChain = new TChain("aodTree");
152
153   // Read the input list of files and add them to the chain
154   while(in.good()) {
155     in >> aodfile;
156     if (!aodfile.Contains("root")) continue; // protection
157     fChain->Add(aodfile);
158   }
159
160   AliInfo(Form("AOD chain created......."));    
161   AliInfo(Form("Chain entries: %d",fChain->GetEntries()));      
162
163   CreateTag(fChain, "proof");
164
165   return kTRUE;
166 }
167
168 //__________________________________________________________________________
169 void AliAODTagCreator::CreateAODTags(Int_t fFirstEvent, Int_t fLastEvent, TList */*grpList*/) {
170   // Creates tag files for AODs
171
172     AliInfo(Form("Creating the AOD tags......."));      
173     
174     TFile *file = TFile::Open("AliAOD.root");
175     if (!file || !file->IsOpen()) {
176         AliError(Form("opening failed"));
177         delete file;
178         return ;
179     }
180
181     fChain = new TChain("aodTree");
182     fChain->Add("AliAOD.root");
183     
184     fAODEvent = new AliAODEvent();
185     fAODEvent->ReadFromTree(fChain);
186     
187     Int_t lastEvent = 0;  
188     if(fLastEvent == -1) lastEvent = (Int_t)fChain->GetEntries();
189     else lastEvent = fLastEvent;
190
191     char fileName[256];
192     sprintf(fileName, "Run%d.Event%d_%d.AOD.tag.root", 
193             fAODEvent->GetRunNumber(), fFirstEvent, lastEvent );
194     AliInfo(Form("writing tags to file %s", fileName));
195     AliDebug(1, Form("writing tags to file %s", fileName));
196  
197     TFile* ftag = TFile::Open(fileName, "recreate");
198
199     fRunTag = new AliRunTag();
200     fTreeT = new TTree("T","A Tree with event tags");
201     TBranch * btag = fTreeT->Branch("AliTAG", &fRunTag);
202     btag->SetCompressionLevel(9);
203
204     CreateTags();
205
206     ftag->cd();
207     fTreeT->Fill();
208     fRunTag->Clear();
209     fTreeT->Write();
210     ftag->Close();
211     file->cd();
212     file->Close();
213 }
214
215 //_____________________________________________________________________________
216 void AliAODTagCreator::CreateTag(TChain* chain, const char *type) {
217     
218     // Private method that creates tag files
219     //
220
221     //reading the esd tag file 
222     fTreeTEsd = new TChain("T");
223     const char * tagPattern = "ESD.tag";
224     // Open the working directory
225     void * dirp = gSystem->OpenDirectory(gSystem->pwd());
226     const char * name = 0x0;
227     // Add all files matching *pattern* to the chain
228     while((name = gSystem->GetDirEntry(dirp))) {
229         if (strstr(name,tagPattern)) fTreeTEsd->Add(name);
230     }//directory loop
231     AliInfo(Form("Chained tag files: %d", fTreeTEsd->GetEntries()));
232       
233     fChain = chain;
234     
235     TString fSession = type;
236     TString fguid, fmd5, fturl;
237     fAODEvent = new AliAODEvent();
238     fAODEvent->ReadFromTree(fChain);
239
240     Int_t firstEvent = 0;
241     
242     TString localFileName = "Run"; 
243     localFileName += fAODEvent->GetRunNumber(); 
244     localFileName += ".Event"; 
245     localFileName += firstEvent; 
246     localFileName += "_"; 
247     localFileName += chain->GetEntries(); //localFileName += "."; localFileName += Counter;
248     localFileName += ".AOD.tag.root";
249     
250     TString fileName;
251     
252     if(fStorage == 0) {
253         fileName = localFileName.Data();      
254         AliInfo(Form("Writing tags to local file: %s",fileName.Data()));
255     }
256     else if(fStorage == 1) {
257         TString alienLocation = "/alien";
258         alienLocation += gGrid->Pwd();
259         alienLocation += fgridpath.Data();
260         alienLocation += "/";
261         alienLocation +=  localFileName;
262         alienLocation += "?se=";
263         alienLocation += fSE.Data();
264         fileName = alienLocation.Data();
265         AliInfo(Form("Writing tags to grid file: %s",fileName.Data()));
266     }
267     
268     TFile* ftag = TFile::Open(fileName, "recreate");
269     
270     fRunTag = new AliRunTag();
271     fTreeT  = new TTree("T", "A Tree with event tags");
272     TBranch * btag = fTreeT->Branch("AliTAG", &fRunTag);
273     btag->SetCompressionLevel(9);
274     
275     // Access information from esd tag
276     fRunTagEsd = new AliRunTag();
277     fTreeTEsd->SetBranchAddress("AliTAG",&fRunTagEsd);
278     // Creating new information of aod
279     AliInfo(Form("Creating the AOD tags......."));
280     CreateTags(type);
281     ftag->cd();
282     fRunTag->Clear();
283     fTreeT->Write();
284     ftag->Close();
285 }
286
287 void AliAODTagCreator::CreateTags(const char* type)
288 {
289     // Event loop for tag creation
290     TString fturl;
291     TString fguid;
292     Int_t   oldRun = -1;
293     fChain->GetEntry(0);
294     TFile *f = fChain->GetFile();
295     TString ftempGuid = f->GetUUID().AsString();
296     // Loop over events 
297     Int_t nEvents = fChain->GetEntries();
298     Int_t ntags    = 0;
299     Int_t tagentry = 0;
300     const TClonesArray *evTagList = 0;
301    
302     for (Int_t iEventNumber = 0; iEventNumber < nEvents; iEventNumber++) {
303         // Copy old tag information
304         if (iEventNumber >= ntags) {
305             fTreeTEsd->GetEntry(tagentry++);
306             fRunTag->CopyStandardContent(fRunTagEsd);
307             evTagList = fRunTagEsd->GetEventTags();
308             ntags += evTagList->GetEntries();
309         }
310
311         // Create a new Tag
312         AliEventTag* evTag = new AliEventTag();
313         // Read event
314         fChain->GetEntry(iEventNumber);
315         if (iEventNumber == 0) oldRun = fAODEvent->GetRunNumber();
316         // Reference to the input file
317         TFile *file = fChain->GetFile();
318         const TUrl *url = file->GetEndpointUrl();
319         fguid = file->GetUUID().AsString();
320
321         if (!strcmp(type,"grid")) {
322             TString fturltemp = "alien://"; fturltemp += url->GetFile();
323             fturl = fturltemp(0,fturltemp.Index(".root",5,0,TString::kExact)+5);
324         } else {
325             fturl = url->GetFile();
326         }
327         
328         fAODEvent->GetStdContent();
329         
330         // Fill the event tag from the aod informatiom
331         FillEventTag(fAODEvent, evTag);
332         // Set the event and input file references
333         //evTag->SetEventId(iEventNumber+1);
334         evTag->SetGUID(fguid);
335         if(!strcmp(type,"grid")) {
336             evTag->SetMD5(0);
337             evTag->SetTURL(fturl);
338             evTag->SetSize(0);
339             }
340         else evTag->SetPath(fturl);
341
342         // Check if a new run has to be created
343         // File has changed
344         if(fguid != ftempGuid) {
345             ftempGuid = fguid;
346             fTreeT->Fill();
347             fRunTag->Clear("");
348         }
349         // Run# has changed
350         if (oldRun != (fAODEvent->GetRunNumber()))
351         {
352             oldRun = fAODEvent->GetRunNumber();
353             fTreeT->Fill();
354             fRunTag->Clear("");
355         }
356         
357         // Add the event tag
358         printf("Got %13.3f \n", evTag->GetEtaMaxPt());
359         fRunTag->AddEventTag(*evTag);
360         delete evTag;
361         // Last event
362         if(iEventNumber+1 == fChain->GetEntries()) {
363             fTreeT->Fill();
364             fRunTag->Clear("");
365         }      
366     }//event loop
367 }
368
369
370
371 void AliAODTagCreator::FillEventTag(AliAODEvent* aod, AliEventTag* evTag)
372 {
373 // 
374 // Fill the event tag information       
375     //
376     fAODEvent = aod;
377     
378     //
379     Float_t fLowPtCut      =  1.0;
380     Float_t fHighPtCut     =  3.0;
381     Float_t fVeryHighPtCut = 10.0;
382     ////////////                            
383     Double_t partFrac[10] = {0.01, 0.01, 0.85, 0.10, 0.05, 0., 0., 0., 0., 0.};
384     
385     // Creates the tags for all the events in a given AOD file
386     Int_t   ntrack = 0;
387     Int_t   nPos = 0, nNeg = 0, nNeutr =0;
388     Int_t   nKinks = 0, nV0s = 0, nCascades = 0;
389     Int_t   nK0s = 0, nNeutrons = 0, nPi0s = 0, nGamas = 0;
390     Int_t   nProtons = 0,  nKaons = 0, nPions = 0, nMuons = 0, nElectrons = 0, nFWMuons = 0;
391     Int_t   nCh1GeV = 0, nCh3GeV = 0, nCh10GeV = 0;
392     Int_t   nMu1GeV = 0, nMu3GeV = 0, nMu10GeV = 0;
393     Int_t   nEl1GeV = 0, nEl3GeV = 0, nEl10GeV = 0;
394     Float_t maxPt =  .0, etamaxPt = -999., phimaxPt = -999., meanPt = .0, totalP =  .0;
395
396     TRefArray tmp;
397
398
399     // Primary Vertex
400     AliAODVertex *pVertex = fAODEvent->GetPrimaryVertex();
401     if (pVertex) {
402         evTag->SetVertexX(pVertex->GetX());
403         evTag->SetVertexY(pVertex->GetY());
404         evTag->SetVertexZ(pVertex->GetZ());
405         Double_t covmatrix[6];
406         pVertex->GetCovarianceMatrix(covmatrix);
407         evTag->SetVertexZError(sqrt(covmatrix[5]));
408     }
409     // loop over vertices 
410     Int_t nVtxs = fAODEvent->GetNumberOfVertices();
411     for (Int_t nVtx = 0; nVtx < nVtxs; nVtx++) {
412         AliAODVertex *vertex = fAODEvent->GetVertex(nVtx);
413         if(vertex->GetType() == 1) nKinks    += 1;
414         if(vertex->GetType() == 2) nV0s      += 1;
415         if(vertex->GetType() == 3) nCascades += 1;
416     }
417     Int_t nTracks = fAODEvent->GetNTracks();
418     for (Int_t nTr = 0; nTr < nTracks; nTr++) {
419         AliAODTrack *track = fAODEvent->GetTrack(nTr);
420         
421         Double_t fPt = track->Pt();
422         if(fPt > maxPt) {
423             maxPt = fPt;
424             etamaxPt = track->Eta();
425             phimaxPt = track->Phi();
426         }
427         
428         if(track->Charge() > 0) {
429             nPos++;
430             if(fPt > fLowPtCut)      nCh1GeV++;
431             if(fPt > fHighPtCut)     nCh3GeV++;
432             if(fPt > fVeryHighPtCut) nCh10GeV++;
433         }
434         if(track->Charge() < 0) {
435             nNeg++;
436             if(fPt > fLowPtCut)      nCh1GeV++;
437             if(fPt > fHighPtCut)     nCh3GeV++;
438             if(fPt > fVeryHighPtCut) nCh10GeV++;
439             }
440         if(track->Charge() == 0) nNeutr++;
441         //PID
442         const Double32_t *prob = track->PID();
443         Double_t rcc = 0.0;
444         for(Int_t i = 0; i < AliPID::kSPECIES; i++) rcc += prob[i]*partFrac[i];
445         if(rcc == 0.0) continue;
446         //Bayes' formula  
447         Double_t w[10];
448         for(Int_t i = 0; i < AliPID::kSPECIES; i++) w[i] = prob[i]*partFrac[i]/rcc;
449         
450         //protons
451         if ((w[4]>w[3])&&(w[4]>w[2])&&(w[4]>w[1])&&(w[4]>w[0])) nProtons++;
452         //kaons
453         if ((w[3]>w[4])&&(w[3]>w[2])&&(w[3]>w[1])&&(w[3]>w[0])) nKaons++;
454         //pions
455         if ((w[2]>w[4])&&(w[2]>w[3])&&(w[2]>w[1])&&(w[2]>w[0])) nPions++;
456         //muons 
457         if ((w[1]>w[4])&&(w[1]>w[3])&&(w[1]>w[2])&&(w[1]>w[0])) {
458             nMuons++;
459             if(fPt > fLowPtCut)      nMu1GeV++;
460             if(fPt > fHighPtCut)     nMu3GeV++;
461             if(fPt > fVeryHighPtCut) nMu10GeV++;
462         }
463         //electrons  
464         if ((w[0]>w[4])&&(w[0]>w[3])&&(w[0]>w[2])&&(w[0]>w[1])) {
465             nElectrons++;
466             if(fPt > fLowPtCut) nEl1GeV++;
467             if(fPt > fHighPtCut) nEl3GeV++;
468             if(fPt > fVeryHighPtCut) nEl10GeV++;
469         }
470         totalP += track->P();
471         meanPt += fPt;
472         ntrack++;
473         // forward muons (in the dimuon spectrometer)
474         if(track->IsMuonTrack()) nFWMuons++;   
475                                   
476     }//track loop
477     //
478     // Fill the event tags  
479     if(ntrack != 0)
480         meanPt = meanPt/ntrack;
481     
482     
483     evTag->SetNumOfTracks(nTracks);
484     evTag->SetNumOfPosTracks(nPos);
485     evTag->SetNumOfNegTracks(nNeg);
486     evTag->SetNumOfNeutrTracks(nNeutr);
487     
488     evTag->SetNumOfV0s(nV0s);
489     evTag->SetNumOfCascades(nCascades);
490     evTag->SetNumOfKinks(nKinks);
491     
492     evTag->SetNumOfProtons(nProtons);
493     evTag->SetNumOfKaons(nKaons);
494     evTag->SetNumOfPions(nPions);
495     evTag->SetNumOfMuons(nMuons);
496     evTag->SetNumOfFWMuons(nFWMuons);
497     evTag->SetNumOfElectrons(nElectrons);
498     evTag->SetNumOfPhotons(nGamas);
499     evTag->SetNumOfPi0s(nPi0s);
500     evTag->SetNumOfNeutrons(nNeutrons);
501     evTag->SetNumOfKaon0s(nK0s);
502     
503     evTag->SetNumOfChargedAbove1GeV(nCh1GeV);
504     evTag->SetNumOfChargedAbove3GeV(nCh3GeV);
505     evTag->SetNumOfChargedAbove10GeV(nCh10GeV);
506     evTag->SetNumOfMuonsAbove1GeV(nMu1GeV);
507     evTag->SetNumOfMuonsAbove3GeV(nMu3GeV);
508     evTag->SetNumOfMuonsAbove10GeV(nMu10GeV);
509     evTag->SetNumOfElectronsAbove1GeV(nEl1GeV);
510     evTag->SetNumOfElectronsAbove3GeV(nEl3GeV);
511     evTag->SetNumOfElectronsAbove10GeV(nEl10GeV);
512
513     tmp.Clear();
514     evTag->SetNumOfPHOSClusters(fAODEvent->GetPHOSClusters(&tmp));
515     tmp.Clear();
516     evTag->SetNumOfEMCALClusters(fAODEvent->GetEMCALClusters(&tmp));
517         
518     evTag->SetTotalMomentum(totalP);
519     evTag->SetMeanPt(meanPt);
520     evTag->SetMaxPt(maxPt);
521     evTag->SetEtaMaxPt(etamaxPt);
522     evTag->SetPhiMaxPt(phimaxPt);
523 }