]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/AliSelector.cxx
introducing monalisa monitoring
[u/mrichter/AliRoot.git] / PWG0 / AliSelector.cxx
1 /* $Id$ */
2
3 // The class definition in esdV0.h has been generated automatically
4 // by the ROOT utility TTree::MakeSelector(). This class is derived
5 // from the ROOT class TSelector. For more information on the TSelector
6 // framework see $ROOTSYS/README/README.SELECTOR or the ROOT User Manual.
7
8 // The following methods are defined in this file:
9 //    Begin():        called everytime a loop on the tree starts,
10 //                    a convenient place to create your histograms.
11 //    SlaveBegin():   called after Begin(), when on PROOF called only on the
12 //                    slave servers.
13 //    Process():      called for each event, in this function you decide what
14 //                    to read and fill your histograms.
15 //    SlaveTerminate: called at the end of the loop on the tree, when on PROOF
16 //                    called only on the slave servers.
17 //    Terminate():    called at the end of the loop on the tree,
18 //                    a convenient place to draw/fit your histograms.
19 //
20 // To use this file, try the following session on your Tree T:
21 //
22 // Root > T->Process("AliSelector.C")
23 // Root > T->Process("AliSelector.C","some options")
24 // Root > T->Process("AliSelector.C+")
25 //
26
27 #include "AliSelector.h"
28
29 #include <TStyle.h>
30 #include <TSystem.h>
31 #include <TCanvas.h>
32 #include <TRegexp.h>
33 #include <TTime.h>
34 #include <TFriendElement.h>
35 #include <TTree.h>
36 #include <TChain.h>
37 #include <TFile.h>
38
39 #include <AliLog.h>
40 #include <AliESD.h>
41
42 ClassImp(AliSelector)
43
44 AliSelector::AliSelector() :
45   TSelector(),
46   fTree(0),
47   fESD(0),
48   fCountFiles(0),
49   fKineFile(0)
50 {
51   //
52   // Constructor. Initialization of pointers
53   //
54 }
55
56 AliSelector::~AliSelector()
57 {
58   //
59   // Destructor
60   //
61
62  if (fTree)
63    fTree->ResetBranchAddresses();
64
65  if (fESD)
66  {
67    delete fESD;
68    fESD = 0;
69  }
70 }
71
72 void AliSelector::CheckOptions()
73 {
74   // checks the option string for the debug flag
75
76   AliLog::SetClassDebugLevel(ClassName(), AliLog::kInfo);
77
78   TString option = GetOption();
79
80   if (option.Contains("debug"))
81   {
82     printf("Enabling debug more for %s\n", ClassName());
83     AliLog::SetClassDebugLevel(ClassName(), AliLog::kDebug);
84     AliInfo(Form("Called with option %s.", option.Data()));
85   }
86 }
87
88 void AliSelector::Begin(TTree*)
89 {
90   // The Begin() function is called at the start of the query.
91   // When running with PROOF Begin() is only called on the client.
92   // The tree argument is deprecated (on PROOF 0 is passed).
93
94   CheckOptions();
95
96   AliDebug(AliLog::kDebug, "============BEGIN===========");
97 }
98
99 void AliSelector::SlaveBegin(TTree* tree)
100 {
101   // The SlaveBegin() function is called after the Begin() function.
102   // When running with PROOF SlaveBegin() is called on each slave server.
103   // The tree argument is deprecated (on PROOF 0 is passed).
104
105   CheckOptions();
106
107   AliDebug(AliLog::kDebug, "=======SLAVEBEGIN========");
108   AliDebug(AliLog::kDebug, Form("Hostname: %s", gSystem->HostName()));
109   AliDebug(AliLog::kDebug, Form("Time: %s", gSystem->Now().AsString()));
110
111   if (tree != 0)
112     Init(tree);
113 }
114
115 void AliSelector::Init(TTree *tree)
116 {
117   // The Init() function is called when the selector needs to initialize
118   // a new tree or chain. Typically here the branch addresses of the tree
119   // will be set. It is normaly not necessary to make changes to the
120   // generated code, but the routine can be extended by the user if needed.
121   // Init() will be called many times when running with PROOF.
122
123   AliDebug(AliLog::kDebug, "=========Init==========");
124
125   fTree = tree;
126
127   if (fTree == 0)
128   {
129     AliDebug(AliLog::kError, "ERROR: tree argument is 0.");
130     return;
131   }
132
133   // Set branch address
134   fTree->SetBranchAddress("ESD", &fESD);
135   if (fESD != 0)
136     AliDebug(AliLog::kInfo, "INFO: Found ESD branch in chain.");
137 }
138
139 Bool_t AliSelector::Notify()
140 {
141   // The Notify() function is called when a new file is opened. This
142   // can be either for a new TTree in a TChain or when when a new TTree
143   // is started when using PROOF. Typically here the branch pointers
144   // will be retrieved. It is normaly not necessary to make changes
145   // to the generated code, but the routine can be extended by the
146   // user if needed.
147
148   AliDebug(AliLog::kDebug, "=========NOTIFY==========");
149   AliDebug(AliLog::kDebug, Form("Hostname: %s", gSystem->HostName()));
150   AliDebug(AliLog::kDebug, Form("Time: %s", gSystem->Now().AsString()));
151
152   ++fCountFiles;
153   if (fTree)
154   {
155     TFile *f = fTree->GetCurrentFile();
156     AliDebug(AliLog::kInfo, Form("Processing %d. file %s", fCountFiles, f->GetName()));
157   }
158   else
159   {
160     AliDebug(AliLog::kError, "fTree not available");
161   }
162
163   DeleteKinematicsFile();
164
165   return kTRUE;
166 }
167
168 Bool_t AliSelector::Process(Long64_t entry)
169 {
170   // The Process() function is called for each entry in the tree (or possibly
171   // keyed object in the case of PROOF) to be processed. The entry argument
172   // specifies which entry in the currently loaded tree is to be processed.
173   // It can be passed to either TTree::GetEntry() or TBranch::GetEntry()
174   // to read either all or the required parts of the data. When processing
175   // keyed objects with PROOF, the object is already loaded and is available
176   // via the fObject pointer.
177   //
178   // This function should contain the "body" of the analysis. It can contain
179   // simple or elaborate selection criteria, run algorithms on the data
180   // of the event and typically fill histograms.
181
182   // WARNING when a selector is used with a TChain, you must use
183   //  the pointer to the current TTree to call GetEntry(entry).
184   //  The entry is always the local entry number in the current tree.
185   //  Assuming that fTree is the pointer to the TChain being processed,
186   //  use fTree->GetTree()->GetEntry(entry).
187
188   AliDebug(AliLog::kDebug, Form("=========PROCESS========== Entry %lld", entry));
189
190   if (!fTree)
191   {
192     AliDebug(AliLog::kError, "ERROR: fTree is 0.");
193     return kFALSE;
194   }
195
196   fTree->GetTree()->GetEntry(entry);
197
198   if (fESD)
199     AliDebug(AliLog::kDebug, Form("ESD: We have %d tracks.", fESD->GetNumberOfTracks()));
200
201   return kTRUE;
202 }
203
204 void AliSelector::SlaveTerminate()
205 {
206   // The SlaveTerminate() function is called after all entries or objects
207   // have been processed. When running with PROOF SlaveTerminate() is called
208   // on each slave server.
209
210   AliDebug(AliLog::kDebug, "=======SLAVETERMINATE=======");
211
212   DeleteKinematicsFile();
213 }
214
215 void AliSelector::Terminate()
216 {
217   // The Terminate() function is the last function to be called during
218   // a query. It always runs on the client, it can be used to present
219   // the results graphically or save the results to file.
220
221   AliDebug(AliLog::kDebug, "=========TERMINATE==========");
222 }
223
224 TTree* AliSelector::GetKinematics()
225 {
226   // Returns kinematics tree corresponding to current ESD active in fTree
227   // Loads the kinematics from the kinematics file, the file is identified by replacing "AliESDs" to
228   // "Kinematics" in the file path of the ESD file. This is a hack, to be changed!
229
230   if (!fKineFile)
231   {
232     if (!fTree->GetCurrentFile())
233       return 0;
234
235     TString fileName(fTree->GetCurrentFile()->GetName());
236     fileName.ReplaceAll("AliESDs", "Kinematics");
237
238     AliDebug(AliLog::kInfo, Form("Opening %s", fileName.Data()));
239
240     fKineFile = TFile::Open(fileName);
241     if (!fKineFile)
242       return 0;
243   }
244
245   return dynamic_cast<TTree*> (fKineFile->Get(Form("Event%d/TreeK", fTree->GetTree()->GetReadEntry())));
246 }
247
248 void AliSelector::DeleteKinematicsFile()
249 {
250   //
251   // Closes the kinematics file and deletes the pointer.
252   //
253
254   if (fKineFile)
255   {
256     fKineFile->Close();
257     delete fKineFile;
258     fKineFile = 0;
259   }
260 }