KaliVeda
Toolkit for HIC analysis
Loading...
Searching...
No Matches
KVFAZIARawDataReader.cpp
1#define KVFAZIARawDataReader_cxx
2// The class definition in KVFAZIARawDataReader.h has been generated automatically
3// by the ROOT utility TTree::MakeSelector(). This class is derived
4// from the ROOT class TSelector. For more information on the TSelector
5// framework see $ROOTSYS/README/README.SELECTOR or the ROOT User Manual.
6
7// The following methods are defined in this file:
8// Begin(): called every time a loop on the tree starts,
9// a convenient place to create your histograms.
10// SlaveBegin(): called after Begin(), when on PROOF called only on the
11// slave servers.
12// Process(): called for each event, in this function you decide what
13// to read and fill your histograms.
14// SlaveTerminate: called at the end of the loop on the tree, when on PROOF
15// called only on the slave servers.
16// Terminate(): called at the end of the loop on the tree,
17// a convenient place to draw/fit your histograms.
18//
19// To use this file, try the following session on your Tree T:
20//
21// Root > T->Process("KVFAZIARawDataReader.C")
22// Root > T->Process("KVFAZIARawDataReader.C","some options")
23// Root > T->Process("KVFAZIARawDataReader.C+")
24//
25
26#include "KVFAZIARawDataReader.h"
27
29
30
31
35
36void KVFAZIARawDataReader::Begin(TTree* /*tree*/)
37{
38 // The Begin() function is called at the start of the query.
39 // When running with PROOF Begin() is only called on the client.
40 // The tree argument is deprecated (on PROOF 0 is passed).
41
42 TString option = GetOption();
43
44}
45
46
47
52
54{
55 // The SlaveBegin() function is called after the Begin() function.
56 // When running with PROOF SlaveBegin() is called on each slave server.
57 // The tree argument is deprecated (on PROOF 0 is passed).
58
60
61}
62
63
64
69
71{
72 // The SlaveTerminate() function is called after all entries or objects
73 // have been processed. When running with PROOF SlaveTerminate() is called
74 // on each slave server.
75
76}
77
78
79
84
86{
87 // The Terminate() function is the last function to be called during
88 // a query. It always runs on the client, it can be used to present
89 // the results graphically or save the results to file.
90
91}
92
93
Option_t Option_t option
Read raw FAZIA data (ROOT format)
virtual void SlaveBegin(TTree *tree)
const char * GetOption() const override
ClassImp(TPyArg)