15 |
#include <TrkLevel1.h> |
#include <TrkLevel1.h> |
16 |
#include <TrkLevel2.h> |
#include <TrkLevel2.h> |
17 |
#include <TrkHough.h> |
#include <TrkHough.h> |
18 |
|
#include <CaloLevel0.h> |
19 |
#include <CaloLevel1.h> |
#include <CaloLevel1.h> |
20 |
#include <CaloLevel2.h> |
#include <CaloLevel2.h> |
21 |
#include <ToFLevel2.h> |
#include <ToFLevel2.h> |
96 |
// ------------------------------ |
// ------------------------------ |
97 |
// variables to retrieve run info |
// variables to retrieve run info |
98 |
// ------------------------------ |
// ------------------------------ |
99 |
Int_t irun; //current run entry, relative to the TChain |
// Int_t irun; //current run entry, relative to the TChain |
100 |
ULong64_t runfirstentry; //first entry of run, relative to the TChain |
Long64_t irun; //current run entry, relative to the TChain |
101 |
ULong64_t runlastentry; //last entry of run, relative to the TChain |
// ULong64_t runfirstentry; //first entry of run, relative to the TChain |
102 |
Int_t irunentry; //position of current entry, relative to the run |
// ULong64_t runlastentry; //last entry of run, relative to the TChain |
103 |
|
// Int_t irunentry; //position of current entry, relative to the run |
104 |
|
Long64_t runfirstentry; //first entry of run, relative to the TChain |
105 |
|
Long64_t runlastentry; //last entry of run, relative to the TChain |
106 |
|
Long64_t irunentry; //position of current entry, relative to the run |
107 |
TChain* run_tree; |
TChain* run_tree; |
108 |
TTree* run_tree_clone; |
TTree* run_tree_clone; |
109 |
TChain* sel_tree; |
TChain* sel_tree; |
115 |
TFile* l0_file; |
TFile* l0_file; |
116 |
TTree* l0_tree; |
TTree* l0_tree; |
117 |
Int_t iroot; |
Int_t iroot; |
118 |
|
Int_t prevshift; // to remember if any shift is needed to synchronize l0 and l2 data instead of calculating any time |
119 |
// -------------------------------------------- |
// -------------------------------------------- |
120 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
121 |
// -------------------------------------------- |
// -------------------------------------------- |
122 |
EventHeader* h0_obj; |
EventHeader* h0_obj; |
123 |
TrkLevel0* trk0_obj; |
TrkLevel0* trk0_obj; |
124 |
|
CaloLevel0* calo0_obj; |
125 |
|
|
126 |
// --------------------------- |
// --------------------------- |
127 |
// variables to connect the DB |
// variables to connect the DB |
214 |
TTree* GetRunTree(TFile*); |
TTree* GetRunTree(TFile*); |
215 |
TChain* GetRunTree(TList*); |
TChain* GetRunTree(TList*); |
216 |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
217 |
Bool_t UpdateRunInfo(TTree *,ULong64_t); |
Bool_t UpdateRunInfo(TTree *,Long64_t); |
218 |
Bool_t UpdateRunInfo(TChain *,ULong64_t); |
Bool_t UpdateRunInfo(TChain *,Long64_t); |
219 |
|
Bool_t UpdateRunInfo(Long64_t iev){ return UpdateRunInfo(run_tree,iev); }; |
220 |
|
|
221 |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
222 |
void CreateCloneTrees(TFile* file); |
void CreateCloneTrees(TFile* file); |
227 |
void SetBranchAddress(TTree *); |
void SetBranchAddress(TTree *); |
228 |
void SetBranchAddress(TChain *); |
void SetBranchAddress(TChain *); |
229 |
|
|
230 |
Int_t GetEntry(Int_t); |
// Int_t GetEntry(Int_t); |
231 |
|
Int_t GetEntry(Long64_t); |
232 |
Int_t GetYodaEntry(); |
Int_t GetYodaEntry(); |
233 |
|
|
234 |
TChain* GetPamTree(){return pam_tree;}; |
TChain* GetPamTree(){return pam_tree;}; |
235 |
TChain* GetRunTree(){return run_tree;}; |
TChain* GetRunTree(){return run_tree;}; |
236 |
TTree* GetYodaTree(); |
TTree* GetYodaTree(); |
237 |
|
|
238 |
|
TFile* GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things |
239 |
|
|
240 |
// ============= |
// ============= |
241 |
// DB connection |
// DB connection |
242 |
// ============= |
// ============= |
251 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
252 |
EventHeader *GetEventHeader() { return h0_obj; }; |
EventHeader *GetEventHeader() { return h0_obj; }; |
253 |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
254 |
|
CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; |
255 |
|
|
256 |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
257 |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |