]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDInputHandler.cxx
Warnings corrected.
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandler.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2007, 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 //-------------------------------------------------------------------------
19 //     Event handler for ESD input 
20 //     Author: Andreas Morsch, CERN
21 //-------------------------------------------------------------------------
22
23 #include <TTree.h>
24 #include <TChain.h>
25 #include <TFile.h>
26 #include <TArchiveFile.h>
27 #include <TObjArray.h>
28 #include <TSystem.h>
29 #include <TString.h>
30 #include <TObjString.h>
31 #include <TProcessID.h>
32
33 #include "AliESDInputHandler.h"
34 #include "AliESDEvent.h"
35 #include "AliESD.h"
36 #include "AliRunTag.h"
37 #include "AliEventTag.h"
38 #include "AliLog.h"
39
40 ClassImp(AliESDInputHandler)
41
42 //______________________________________________________________________________
43 AliESDInputHandler::AliESDInputHandler() :
44   AliInputEventHandler(),
45   fEvent(0x0),
46   fBranches(""),
47   fBranchesOn(""),
48   fAnalysisType(0),
49   fUseTags(kFALSE),
50   fChainT(0),
51   fTreeT(0),
52   fRunTag(0)
53 {
54   // default constructor
55 }
56
57 //______________________________________________________________________________
58 AliESDInputHandler::~AliESDInputHandler() 
59 {
60   //  destructor
61   //  delete fEvent;
62 }
63
64 //______________________________________________________________________________
65 AliESDInputHandler::AliESDInputHandler(const char* name, const char* title):
66     AliInputEventHandler(name, title), fEvent(0x0), fBranches(""), fBranchesOn(""), fAnalysisType(0),
67      fUseTags(kFALSE), fChainT(0), fTreeT(0), fRunTag(0)
68 {
69     // Constructor
70 }
71
72 Bool_t AliESDInputHandler::Init(TTree* tree,  Option_t* opt)
73 {
74     // Initialisation necessary for each new tree 
75     fAnalysisType = opt;
76     fTree         = tree;
77     
78     if (!fTree) return kFALSE;
79     // Get pointer to ESD event
80     SwitchOffBranches();
81     SwitchOnBranches();
82     
83     if (fEvent) {
84       delete fEvent;
85       fEvent = 0;
86     }
87     fEvent = new AliESDEvent();
88
89     fEvent->ReadFromTree(fTree);
90     return kTRUE;
91 }
92
93 Bool_t AliESDInputHandler::BeginEvent(Long64_t /*entry*/)
94 {
95     // Copy from old to new format if necessary
96   AliESD* old = ((AliESDEvent*) fEvent)->GetAliESDOld();
97   if (old) {
98         ((AliESDEvent*)fEvent)->CopyFromOldESD();
99         old->Reset();
100   }
101   return kTRUE;
102 }
103
104 Bool_t  AliESDInputHandler::FinishEvent()
105 {
106     // Finish the event 
107     if(fEvent)fEvent->Reset();
108     return kTRUE;
109
110
111 Bool_t AliESDInputHandler::Notify(const char* path)
112 {
113     // Notify a directory change
114     if (!fUseTags) return (kTRUE);
115     
116     Bool_t zip = kFALSE;
117     
118     TString fileName(path);
119     if(fileName.Contains("#AliESDs.root")){
120         fileName.ReplaceAll("#AliESDs.root", "");
121         zip = kTRUE;
122     } 
123     else if (fileName.Contains("AliESDs.root")){
124         fileName.ReplaceAll("AliESDs.root", "");
125     }
126     else if(fileName.Contains("#AliAOD.root")){
127         fileName.ReplaceAll("#AliAOD.root", "");
128         zip = kTRUE;
129     }
130     else if(fileName.Contains("AliAOD.root")){
131         fileName.ReplaceAll("AliAOD.root", "");
132     }
133     else if(fileName.Contains("#galice.root")){
134         // For running with galice and kinematics alone...
135         fileName.ReplaceAll("#galice.root", "");
136         zip = kTRUE;
137     }
138     else if(fileName.Contains("galice.root")){
139         // For running with galice and kinematics alone...
140         fileName.ReplaceAll("galice.root", "");
141     }
142
143
144     
145
146     
147     TString* pathName = new TString("./");
148     *pathName = fileName;
149     printf("AliESDInputHandler::Notify() Path: %s\n", pathName->Data());
150     
151     if (fRunTag) {
152         fRunTag->Clear();
153     } else {
154         fRunTag = new AliRunTag();
155     }
156     
157     delete fTreeT; fTreeT = 0;
158
159     if (fChainT) {
160         delete fChainT;
161         fChainT = 0;
162     }
163     
164     if (!fChainT) {
165         fChainT = new TChain("T");
166     }
167     
168
169
170     const char* tagPattern = "ESD.tag.root";
171     const char* name = 0x0;
172     TString tagFilename;
173     if (zip) {
174         TFile* file = TFile::Open(fileName.Data());
175         TArchiveFile* arch = file->GetArchive();
176         TObjArray* arr = arch->GetMembers();
177         TIter next(arr);
178         
179         while ((file = (TFile*) next())) {
180             name = file->GetName();
181             if (strstr(name,tagPattern)) { 
182                 tagFilename = pathName->Data();
183                 tagFilename += "#";
184                 tagFilename += name;
185                 fChainT->Add(tagFilename);  
186                 AliInfo(Form("Adding %s to tag chain \n", tagFilename.Data()));
187             }//pattern check
188         } // archive file loop
189     } else {
190         void * dirp = gSystem->OpenDirectory(pathName->Data());
191         while((name = gSystem->GetDirEntry(dirp))) {
192             if (strstr(name,tagPattern)) { 
193                 tagFilename = pathName->Data();
194                 tagFilename += "/";
195                 tagFilename += name;
196                 fChainT->Add(tagFilename);  
197                 AliInfo(Form("Adding %s to tag chain \n", tagFilename.Data()));
198             }//pattern check
199         }//directory loop
200     }
201     fChainT->SetBranchAddress("AliTAG",&fRunTag);
202     fChainT->GetEntry(0);
203     return kTRUE;
204 }
205
206
207 void AliESDInputHandler::SwitchOffBranches() const {
208   //
209   // Switch of branches on user request
210     TObjArray * tokens = fBranches.Tokenize(" ");
211     Int_t ntok = tokens->GetEntries();
212     for (Int_t i = 0; i < ntok; i++)  {
213         TString str = ((TObjString*) tokens->At(i))->GetString();
214         if (str.Length() == 0)
215             continue;
216         fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 0);
217         AliInfo(Form("Branch %s switched off \n", str.Data()));
218     }
219 }
220
221 void AliESDInputHandler::SwitchOnBranches() const {
222   //
223   // Switch of branches on user request
224   TObjArray * tokens = fBranchesOn.Tokenize(" ");
225   Int_t ntok = tokens->GetEntries();
226
227   for (Int_t i = 0; i < ntok; i++)  {
228       TString str = ((TObjString*) tokens->At(i))->GetString();
229       if (str.Length() == 0)
230           continue;
231       fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 1);
232       AliInfo(Form("Branch %s switched on \n", str.Data()));
233   }
234 }