| 9 |
|
|
| 10 |
#include <TRefArray.h> |
#include <TRefArray.h> |
| 11 |
|
|
| 12 |
|
#include <TrkLevel1.h> |
| 13 |
#include <TrkLevel2.h> |
#include <TrkLevel2.h> |
| 14 |
#include <CaloLevel2.h> |
#include <CaloLevel2.h> |
| 15 |
#include <ToFLevel2.h> |
#include <ToFLevel2.h> |
| 18 |
#include <NDLevel2.h> |
#include <NDLevel2.h> |
| 19 |
#include <AcLevel2.h> |
#include <AcLevel2.h> |
| 20 |
#include <OrbitalInfo.h> |
#include <OrbitalInfo.h> |
| 21 |
|
#include <OrbitalInfo.h> |
| 22 |
|
#include <RunInfo.h> |
| 23 |
|
#include <GLTables.h> |
| 24 |
|
|
| 25 |
|
|
| 26 |
#include <TTree.h> |
#include <TTree.h> |
| 27 |
#include <TChain.h> |
#include <TChain.h> |
| 64 |
* This allows to solve the tracker ambiguity (that is, to choose between track images) by using also information from other detectors. |
* This allows to solve the tracker ambiguity (that is, to choose between track images) by using also information from other detectors. |
| 65 |
*/ |
*/ |
| 66 |
|
|
| 67 |
class PamLevel2 : public CaloLevel2, public TrkLevel2, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
class PamLevel2 : public CaloLevel2, public TrkLevel2, public TrkLevel1, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
| 68 |
|
|
| 69 |
private: |
private: |
| 70 |
|
|
| 71 |
TrkLevel2* trk_obj; |
TrkLevel1* trk_l1_obj; |
| 72 |
CaloLevel2* calo_obj; |
TrkLevel2* trk_obj; |
| 73 |
|
CaloLevel2* calo_obj; |
| 74 |
ToFLevel2* tof_obj; |
ToFLevel2* tof_obj; |
| 75 |
TrigLevel2* trig_obj; |
TrigLevel2* trig_obj; |
| 76 |
S4Level2* s4_obj; |
S4Level2* s4_obj; |
| 77 |
NDLevel2* nd_obj; |
NDLevel2* nd_obj; |
| 78 |
AcLevel2* ac_obj; |
AcLevel2* ac_obj; |
| 79 |
OrbitalInfo* orb_obj; |
OrbitalInfo* orb_obj; |
| 80 |
|
|
| 81 |
|
GL_RUN* run_obj; |
| 82 |
|
|
| 83 |
TRefArray* sorted_tracks; // TEMPORANEO ... lo mettero` menbro di TrkLevel2 |
TRefArray* sorted_tracks; |
| 84 |
|
|
| 85 |
|
TChain* Tout; |
| 86 |
|
|
| 87 |
public: |
public: |
| 88 |
|
|
| 94 |
Bool_t ND; |
Bool_t ND; |
| 95 |
Bool_t AC; |
Bool_t AC; |
| 96 |
Bool_t ORB; |
Bool_t ORB; |
| 97 |
|
|
| 98 |
|
Bool_t TRK_L1; |
| 99 |
|
|
| 100 |
PamLevel2(); |
PamLevel2(); |
| 101 |
~PamLevel2(); |
~PamLevel2(); |
| 102 |
|
|
| 103 |
void Clear(); |
void Clear(); |
| 104 |
|
|
| 105 |
TrkLevel2* GetTrkLevel2() { return trk_obj; }; |
TrkLevel1* GetTrkLevel1() { return trk_l1_obj; }; |
| 106 |
CaloLevel2* GetCaloLevel2() { return calo_obj; }; |
TrkLevel2* GetTrkLevel2() { return trk_obj; }; |
| 107 |
|
CaloLevel2* GetCaloLevel2() { return calo_obj; }; |
| 108 |
ToFLevel2* GetToFLevel2() { return tof_obj; }; |
ToFLevel2* GetToFLevel2() { return tof_obj; }; |
| 109 |
TrigLevel2* GetTrigLevel2() { return trig_obj; }; |
TrigLevel2* GetTrigLevel2() { return trig_obj; }; |
| 110 |
S4Level2* GetS4Level2() { return s4_obj; }; |
S4Level2* GetS4Level2() { return s4_obj; }; |
| 111 |
NDLevel2* GetNDLevel2() { return nd_obj; }; |
NDLevel2* GetNDLevel2() { return nd_obj; }; |
| 112 |
AcLevel2* GetAcLevel2() { return ac_obj; }; |
AcLevel2* GetAcLevel2() { return ac_obj; }; |
| 113 |
OrbitalInfo* GetOrbitalInfo(){ return orb_obj; }; |
OrbitalInfo* GetOrbitalInfo(){ return orb_obj; }; |
| 114 |
|
GL_RUN* GetRunInfo() { return run_obj; }; |
| 115 |
|
|
| 116 |
// ===================================== |
// ===================================== |
| 117 |
// methods needed to read Level2 trees |
// methods needed to read Level2 trees |
| 118 |
// ===================================== |
// ===================================== |
| 119 |
void SetWhichTrees(TString); |
void SetWhichTrees(TString); |
| 120 |
TList* GetListOfLevel2Files(TString, TString); |
TList* GetListOfLevel2Files(TString, TString); |
| 121 |
Bool_t CheckLevel2File(TString); |
Bool_t CheckLevel2File(TString); |
| 122 |
TTree* LoadPamTrees(TFile*); |
void SetBranchAddress(); |
| 123 |
TTree* LoadPamTrees(TFile*,TString); |
TTree* GetPamTree(TFile*,TString); |
| 124 |
TChain* LoadPamTrees(TList*,TString); |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"+ALL");}; |
| 125 |
|
TChain* GetPamTree(TList*,TString); |
| 126 |
|
TTree* GetRunTree(TFile*); |
| 127 |
|
TChain* GetRunTree(TList*); |
| 128 |
|
|
| 129 |
// ===================================== |
// ===================================== |
| 130 |
// methods needed to set brach addresses |
// methods needed to set brach addresses |
| 131 |
// ===================================== |
// ===================================== |
| 132 |
void* GetPointerToTrk() {return &trk_obj;}; |
void* GetPointerToTrk() {return &trk_obj;}; |
| 133 |
void* GetPointerToCalo() {return &calo_obj;}; |
void* GetPointerToTrk(int s){ |
| 134 |
void* GetPointerToToF() {return &tof_obj;}; |
switch (s) { |
| 135 |
void* GetPointerToTrig() {return &trig_obj;}; |
case 1: return &trk_l1_obj; |
| 136 |
void* GetPointerToS4() {return &s4_obj;}; |
case 2: return &trk_obj; |
| 137 |
void* GetPointerToND() {return &nd_obj;}; |
default: return 0; |
| 138 |
void* GetPointerToAc() {return &ac_obj;}; |
}; |
| 139 |
void* GetPointerToOrb() {return &orb_obj;}; |
}; |
| 140 |
|
void* GetPointerToCalo() {return &calo_obj; }; |
| 141 |
|
void* GetPointerToToF() {return &tof_obj; }; |
| 142 |
|
void* GetPointerToTrig() {return &trig_obj; }; |
| 143 |
|
void* GetPointerToS4() {return &s4_obj; }; |
| 144 |
|
void* GetPointerToND() {return &nd_obj; }; |
| 145 |
|
void* GetPointerToAc() {return &ac_obj; }; |
| 146 |
|
void* GetPointerToOrb() {return &orb_obj; }; |
| 147 |
|
void* GetPointerToRun() {return &run_obj; }; |
| 148 |
|
void* GetPointerTo(const char*); |
| 149 |
|
|
| 150 |
// ============================================== |
// ============================================== |
| 151 |
// methods to retrieve subdetectors stored tracks |
// methods to retrieve subdetectors stored tracks |