11 |
|
|
12 |
#include <TrkLevel1.h> |
#include <TrkLevel1.h> |
13 |
#include <TrkLevel2.h> |
#include <TrkLevel2.h> |
14 |
|
#include <TrkHough.h> |
15 |
|
#include <CaloLevel1.h> |
16 |
#include <CaloLevel2.h> |
#include <CaloLevel2.h> |
17 |
#include <ToFLevel2.h> |
#include <ToFLevel2.h> |
18 |
#include <TrigLevel2.h> |
#include <TrigLevel2.h> |
20 |
#include <NDLevel2.h> |
#include <NDLevel2.h> |
21 |
#include <AcLevel2.h> |
#include <AcLevel2.h> |
22 |
#include <OrbitalInfo.h> |
#include <OrbitalInfo.h> |
|
#include <OrbitalInfo.h> |
|
23 |
#include <RunInfo.h> |
#include <RunInfo.h> |
24 |
#include <GLTables.h> |
#include <GLTables.h> |
25 |
|
|
26 |
|
|
27 |
#include <TTree.h> |
#include <TTree.h> |
28 |
|
#include <TFriendElement.h> |
29 |
#include <TChain.h> |
#include <TChain.h> |
30 |
#include <TFile.h> |
#include <TFile.h> |
31 |
#include <TList.h> |
#include <TList.h> |
42 |
* This class inherites from TrkTrack, CaloTrkVar ecc... |
* This class inherites from TrkTrack, CaloTrkVar ecc... |
43 |
* |
* |
44 |
*/ |
*/ |
45 |
class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar { |
//class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar { |
46 |
|
class PamTrack : public TObject { |
47 |
|
|
48 |
private: |
private: |
49 |
|
|
51 |
CaloTrkVar* calo_track; |
CaloTrkVar* calo_track; |
52 |
ToFTrkVar* tof_track; |
ToFTrkVar* tof_track; |
53 |
|
|
54 |
|
bool candeleteobj; |
55 |
|
|
56 |
|
// TClonesArray *Cluster; ///< clusters (if stored) |
57 |
|
|
58 |
public: |
public: |
59 |
|
|
60 |
PamTrack(); |
PamTrack(); |
|
|
|
61 |
PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* ); |
PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* ); |
62 |
|
PamTrack(const PamTrack&); |
63 |
|
~PamTrack(){ Delete(); }; |
64 |
|
|
65 |
|
void Clear(); |
66 |
|
void Clear(Option_t *option){Clear();}; |
67 |
|
void Delete(); |
68 |
|
|
69 |
|
TrkTrack* GetTrkTrack(){return trk_track;}; |
70 |
|
CaloTrkVar* GetCaloTrack(){return calo_track;}; |
71 |
|
ToFTrkVar* GetToFTrack(){return tof_track;}; |
72 |
|
|
73 |
ClassDef(PamTrack,1); |
ClassDef(PamTrack,1); |
74 |
}; |
}; |
80 |
* 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. |
81 |
*/ |
*/ |
82 |
|
|
83 |
class PamLevel2 : public CaloLevel2, public TrkLevel2, public TrkLevel1, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
//class PamLevel2 : public CaloLevel2, public CaloLevel1, public ToFLevel2, public TrkLevel2, public TrkLevel1, public TrkHough, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
84 |
|
class PamLevel2 : public TObject { |
85 |
|
|
86 |
private: |
private: |
87 |
|
ULong64_t runfirstentry; |
88 |
|
ULong64_t runlastentry; |
89 |
|
Int_t irun; |
90 |
|
|
91 |
|
public: |
92 |
|
|
93 |
|
TrkLevel1* trk1_obj; |
94 |
|
TrkLevel2* trk2_obj; |
95 |
|
TrkHough* trkh_obj; |
96 |
|
|
97 |
|
CaloLevel1* calo1_obj; |
98 |
|
CaloLevel2* calo2_obj; |
99 |
|
|
|
TrkLevel1* trk_l1_obj; |
|
|
TrkLevel2* trk_obj; |
|
|
CaloLevel2* calo_obj; |
|
100 |
ToFLevel2* tof_obj; |
ToFLevel2* tof_obj; |
101 |
TrigLevel2* trig_obj; |
TrigLevel2* trig_obj; |
102 |
S4Level2* s4_obj; |
S4Level2* s4_obj; |
103 |
NDLevel2* nd_obj; |
NDLevel2* nd_obj; |
104 |
AcLevel2* ac_obj; |
AcLevel2* ac_obj; |
105 |
OrbitalInfo* orb_obj; |
OrbitalInfo* orb_obj; |
106 |
|
|
107 |
GL_RUN* run_obj; |
GL_RUN* run_obj; |
108 |
|
SoftInfo* soft_obj; // Emiliano |
109 |
|
|
110 |
TRefArray* sorted_tracks; |
TTree* tree_clone[8]; |
|
|
|
|
TChain* Tout; |
|
|
|
|
|
public: |
|
111 |
|
|
112 |
Bool_t CAL; |
// TRefArray* sorted_tracks; |
113 |
Bool_t TRK; |
// TRefArray sorted_tracks; |
114 |
Bool_t TRG; |
|
115 |
Bool_t TOF; |
TClonesArray *tsorted; |
116 |
Bool_t S4; |
TClonesArray *timage; |
117 |
Bool_t ND; |
|
118 |
Bool_t AC; |
|
119 |
Bool_t ORB; |
PamTrack *track; //store the last required |
120 |
|
|
121 |
Bool_t TRK_L1; |
|
122 |
|
Bool_t CAL2; //level2 branch |
123 |
|
Bool_t CAL1; //level1 branch |
124 |
|
|
125 |
|
Bool_t TRK2; //level2 branch |
126 |
|
Bool_t TRK1; //level1 branch |
127 |
|
Bool_t TRKh; //hough branch |
128 |
|
|
129 |
|
Bool_t TRG; |
130 |
|
Bool_t TOF; |
131 |
|
Bool_t S4; |
132 |
|
Bool_t ND; |
133 |
|
Bool_t AC; |
134 |
|
Bool_t ORB; |
135 |
|
|
136 |
|
Bool_t RUN; |
137 |
|
|
138 |
PamLevel2(); |
PamLevel2(); |
139 |
~PamLevel2(); |
~PamLevel2(){Delete();}; |
140 |
|
|
141 |
void Clear(); |
void Clear(); |
142 |
|
void Delete(); |
143 |
|
|
144 |
TrkLevel1* GetTrkLevel1() { return trk_l1_obj; }; |
|
145 |
TrkLevel2* GetTrkLevel2() { return trk_obj; }; |
// ========================================= |
146 |
CaloLevel2* GetCaloLevel2() { return calo_obj; }; |
// methods needed to read/write Level2 trees |
147 |
ToFLevel2* GetToFLevel2() { return tof_obj; }; |
// ========================================= |
148 |
TrigLevel2* GetTrigLevel2() { return trig_obj; }; |
void SetWhichTrees(TString); |
149 |
S4Level2* GetS4Level2() { return s4_obj; }; |
void GetWhichTrees(TFile*); |
150 |
NDLevel2* GetNDLevel2() { return nd_obj; }; |
|
151 |
AcLevel2* GetAcLevel2() { return ac_obj; }; |
TTree* GetPamTree(TFile*,TString); |
152 |
OrbitalInfo* GetOrbitalInfo(){ return orb_obj; }; |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"");}; |
153 |
GL_RUN* GetRunInfo() { return run_obj; }; |
|
154 |
|
TList* GetListOfLevel2Files(TString, TString); |
155 |
// ===================================== |
Bool_t CheckLevel2File(TString); |
156 |
// methods needed to read Level2 trees |
TChain* GetPamTree(TList*,TString); |
157 |
// ===================================== |
TChain* GetPamTree(TString ddir,TString list,TString detlist){ return GetPamTree(GetListOfLevel2Files(ddir,list),detlist); }; |
158 |
void SetWhichTrees(TString); |
TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); }; |
159 |
TList* GetListOfLevel2Files(TString, TString); |
|
160 |
Bool_t CheckLevel2File(TString); |
TTree* GetRunTree(TFile*); |
161 |
void SetBranchAddress(); |
TChain* GetRunTree(TList*); |
162 |
TTree* GetPamTree(TFile*,TString); |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
163 |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"+ALL");}; |
Bool_t UpdateRunInfo(TTree *,ULong64_t); |
164 |
TChain* GetPamTree(TList*,TString); |
Bool_t UpdateRunInfo(TChain *,ULong64_t); |
165 |
TTree* GetRunTree(TFile*); |
|
166 |
TChain* GetRunTree(TList*); |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
167 |
|
void CreateCloneTrees(TFile* file); |
168 |
// ===================================== |
void FillCloneTrees(); |
169 |
// methods needed to set brach addresses |
TTree *GetCloneTree(TString); |
170 |
// ===================================== |
void WriteCloneTrees(); |
171 |
void* GetPointerToTrk() {return &trk_obj;}; |
|
172 |
void* GetPointerToTrk(int s){ |
void SetBranchAddress(TTree *); |
173 |
switch (s) { |
void SetBranchAddress(TChain *); |
174 |
case 1: return &trk_l1_obj; |
|
175 |
case 2: return &trk_obj; |
// ======================================================== |
176 |
default: return 0; |
// methods needed to retrieve subdetector general variables |
177 |
}; |
// ======================================================== |
178 |
}; |
void* GetPointerTo(const char*); |
179 |
void* GetPointerToCalo() {return &calo_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj;}; |
180 |
void* GetPointerToToF() {return &tof_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj;}; |
181 |
void* GetPointerToTrig() {return &trig_obj; }; |
TrkHough *GetTrkHough() { return trkh_obj;}; |
182 |
void* GetPointerToS4() {return &s4_obj; }; |
CaloLevel1 *GetCaloLevel1() { return calo1_obj;}; |
183 |
void* GetPointerToND() {return &nd_obj; }; |
CaloLevel2 *GetCaloLevel2() { return calo2_obj;}; |
184 |
void* GetPointerToAc() {return &ac_obj; }; |
ToFLevel2 *GetToFLevel2() { return tof_obj;}; |
185 |
void* GetPointerToOrb() {return &orb_obj; }; |
TrigLevel2 *GetTrigLevel2() { return trig_obj;}; |
186 |
void* GetPointerToRun() {return &run_obj; }; |
S4Level2 *GetS4Level2() { return s4_obj;}; |
187 |
void* GetPointerTo(const char*); |
NDLevel2 *GetNDLevel2() { return nd_obj;}; |
188 |
|
AcLevel2 *GetAcLevel2() { return ac_obj;}; |
189 |
|
OrbitalInfo *GetOrbitalInfo(){ return orb_obj;}; |
190 |
|
GL_RUN *GetRunInfo() { return run_obj; }; |
191 |
|
SoftInfo *GetSoftInfo() { return soft_obj; }; // Emiliano |
192 |
|
|
193 |
// ============================================== |
// ============================================== |
194 |
// methods to retrieve subdetectors stored tracks |
// methods to retrieve subdetectors stored tracks |
195 |
// ============================================== |
// ============================================== |
196 |
TrkTrack* GetTrkStoredTrack(int seqno){return TrkLevel2::GetStoredTrack(seqno); }; |
TrkTrack* GetTrkStoredTrack(int seqno){return trk2_obj->TrkLevel2::GetStoredTrack(seqno); }; |
197 |
CaloTrkVar* GetCaloStoredTrack(int); |
CaloTrkVar* GetCaloStoredTrack(int); |
198 |
ToFTrkVar* GetToFStoredTrack(int); |
ToFTrkVar* GetToFStoredTrack(int); |
199 |
// |
// |
200 |
PamTrack* GetPamTrackAlong(TrkTrack*); |
PamTrack* GetPamTrackAlong(TrkTrack*); |
201 |
// PamTrack* GetPamTrackAlong(CaloTrkVar*); //se serve |
// PamTrack* GetPamTrackAlong(CaloTrkVar*); //se serve |
202 |
// PamTrack* GetPamTrackAlong(ToFTrkVar*); //se serve |
// PamTrack* GetPamTrackAlong(ToFTrkVar*); //se serve |
203 |
|
|
205 |
// methods to retrieve pamela tracks |
// methods to retrieve pamela tracks |
206 |
// ================================= |
// ================================= |
207 |
PamTrack* GetStoredTrack(Int_t); |
PamTrack* GetStoredTrack(Int_t); |
208 |
// |
// |
209 |
void SortTracks(TString); //assign value to variable sorted_tracks |
void SortTracks(TString); //assign value to variable sorted_tracks |
210 |
TRefArray* GetTracks(); //return sorted_tracks |
// TRefArray* GetTracks(); //return sorted_tracks |
211 |
PamTrack* GetTrack(int); |
TClonesArray* GetTracks(); //return sorted_tracks |
212 |
|
PamTrack* GetTrack(int); |
213 |
PamTrack* GetTrackImage(int); |
PamTrack* GetTrackImage(int); |
214 |
|
|
215 |
|
// ================================= |
216 |
|
// other methods |
217 |
|
// ================================= |
218 |
|
// Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); }; |
219 |
|
|
220 |
|
|
221 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
222 |
}; |
}; |
223 |
|
|