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> |
111 |
TFile* l0_file; |
TFile* l0_file; |
112 |
TTree* l0_tree; |
TTree* l0_tree; |
113 |
Int_t iroot; |
Int_t iroot; |
114 |
|
Int_t prevshift; // to remember if any shift is needed to synchronize l0 and l2 data instead of calculating any time |
115 |
// -------------------------------------------- |
// -------------------------------------------- |
116 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
117 |
// -------------------------------------------- |
// -------------------------------------------- |
118 |
EventHeader* h0_obj; |
EventHeader* h0_obj; |
119 |
TrkLevel0* trk0_obj; |
TrkLevel0* trk0_obj; |
120 |
|
CaloLevel0* calo0_obj; |
121 |
|
|
122 |
// --------------------------- |
// --------------------------- |
123 |
// variables to connect the DB |
// variables to connect the DB |
224 |
|
|
225 |
Int_t GetEntry(Int_t); |
Int_t GetEntry(Int_t); |
226 |
Int_t GetYodaEntry(); |
Int_t GetYodaEntry(); |
227 |
|
|
228 |
TChain* GetPamTree(){return pam_tree;}; |
TChain* GetPamTree(){return pam_tree;}; |
229 |
TChain* GetRunTree(){return run_tree;}; |
TChain* GetRunTree(){return run_tree;}; |
230 |
TTree* GetYodaTree(); |
TTree* GetYodaTree(); |
231 |
|
|
232 |
|
TFile* GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things |
233 |
|
|
234 |
// ============= |
// ============= |
235 |
// DB connection |
// DB connection |
236 |
// ============= |
// ============= |
243 |
// methods needed to retrieve subdetector general variables |
// methods needed to retrieve subdetector general variables |
244 |
// ======================================================== |
// ======================================================== |
245 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
246 |
|
EventHeader *GetEventHeader() { return h0_obj; }; |
247 |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
248 |
|
CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; |
249 |
|
|
250 |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
251 |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
288 |
// ================================= |
// ================================= |
289 |
// Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); }; |
// Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); }; |
290 |
|
|
291 |
|
// ----- |
292 |
|
// flags methods |
293 |
|
// ----- |
294 |
|
Bool_t IsCAL2(){return CAL2;}; //level2 branch |
295 |
|
Bool_t IsCAL1(){return CAL1;}; //level1 branch |
296 |
|
Bool_t IsCAL0(){return CAL0;}; //yoda |
297 |
|
|
298 |
|
Bool_t IsTRK2(){return TRK2;}; //level2 branch |
299 |
|
Bool_t IsTRK1(){return TRK1;}; //level1 branch |
300 |
|
Bool_t IsTRKh(){return TRKh;}; //hough branch |
301 |
|
Bool_t IsTRK0(){return TRK0;}; //yoda |
302 |
|
|
303 |
|
Bool_t IsTOF(){return TOF;}; |
304 |
|
Bool_t IsTOF0(){return TOF0;}; |
305 |
|
|
306 |
|
Bool_t IsTRG(){return TRG;}; |
307 |
|
Bool_t IsS4(){return S4;}; |
308 |
|
Bool_t IsND(){return ND;}; |
309 |
|
Bool_t IsAC(){return AC;}; |
310 |
|
Bool_t IsORB(){return ORB;}; |
311 |
|
|
312 |
|
Bool_t IsRUN(){return RUN;}; |
313 |
|
|
314 |
|
Int_t IsSELLI(){return SELLI;}; //trees of selected events (there is a selection list) |
315 |
|
|
316 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
317 |
}; |
}; |