]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDInputHandler.cxx
Updating filename
[u/mrichter/AliRoot.git] / STEER / AliESDInputHandler.cxx
CommitLineData
d3dd3d14 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
933fd60f 23#include <TTree.h>
1aa09fd1 24#include <TChain.h>
25#include <TFile.h>
26#include <TArchiveFile.h>
27#include <TObjArray.h>
28#include <TSystem.h>
300d5701 29#include <TString.h>
30#include <TObjString.h>
80e1b60a 31#include <TProcessID.h>
d3dd3d14 32
33#include "AliESDInputHandler.h"
34#include "AliESDEvent.h"
35#include "AliESD.h"
1aa09fd1 36#include "AliRunTag.h"
37#include "AliEventTag.h"
300d5701 38#include "AliLog.h"
d3dd3d14 39
40ClassImp(AliESDInputHandler)
41
42//______________________________________________________________________________
6989bff3 43AliESDInputHandler::AliESDInputHandler() :
44 AliInputEventHandler(),
0cd61c1d 45 fEvent(0x0),
865d620a 46 fBranches(""),
1aa09fd1 47 fBranchesOn(""),
48 fAnalysisType(0),
49 fUseTags(kFALSE),
50 fChainT(0),
51 fTreeT(0),
52 fRunTag(0)
d3dd3d14 53{
54 // default constructor
55}
56
57//______________________________________________________________________________
58AliESDInputHandler::~AliESDInputHandler()
59{
1aa09fd1 60 // destructor
6989bff3 61 // delete fEvent;
d3dd3d14 62}
63
64//______________________________________________________________________________
65AliESDInputHandler::AliESDInputHandler(const char* name, const char* title):
1aa09fd1 66 AliInputEventHandler(name, title), fEvent(0x0), fBranches(""), fBranchesOn(""), fAnalysisType(0),
67 fUseTags(kFALSE), fChainT(0), fTreeT(0), fRunTag(0)
d3dd3d14 68{
e12e402c 69 // Constructor
d3dd3d14 70}
71
1aa09fd1 72Bool_t AliESDInputHandler::Init(TTree* tree, Option_t* opt)
d3dd3d14 73{
300d5701 74 // Initialisation necessary for each new tree
1aa09fd1 75 fAnalysisType = opt;
76 fTree = tree;
300d5701 77
6073f8c9 78 if (!fTree) return kFALSE;
d3dd3d14 79 // Get pointer to ESD event
300d5701 80 SwitchOffBranches();
3858dd64 81 SwitchOnBranches();
300d5701 82
60996693 83 if (fEvent) {
84 delete fEvent;
85 fEvent = 0;
6989bff3 86 }
60996693 87 fEvent = new AliESDEvent();
88
89 fEvent->ReadFromTree(fTree);
d3dd3d14 90 return kTRUE;
91}
92
ed97dc98 93Bool_t AliESDInputHandler::BeginEvent(Long64_t /*entry*/)
d3dd3d14 94{
95 // Copy from old to new format if necessary
d7749dec 96 AliESD* old = ((AliESDEvent*) fEvent)->GetAliESDOld();
97 if (old) {
d3dd3d14 98 ((AliESDEvent*)fEvent)->CopyFromOldESD();
99 old->Reset();
d7749dec 100 }
101 return kTRUE;
d3dd3d14 102}
103
e12e402c 104Bool_t AliESDInputHandler::FinishEvent()
105{
106 // Finish the event
107 if(fEvent)fEvent->Reset();
108 return kTRUE;
6989bff3 109}
110
1aa09fd1 111Bool_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
300d5701 207void AliESDInputHandler::SwitchOffBranches() const {
208 //
209 // Switch of branches on user request
3858dd64 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
221void AliESDInputHandler::SwitchOnBranches() const {
222 //
223 // Switch of branches on user request
224 TObjArray * tokens = fBranchesOn.Tokenize(" ");
300d5701 225 Int_t ntok = tokens->GetEntries();
3858dd64 226
300d5701 227 for (Int_t i = 0; i < ntok; i++) {
3858dd64 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()));
300d5701 233 }
234}