/[PAMELA software]/PamelaLevel2/inc/PamLevel2.h
ViewVC logotype

Contents of /PamelaLevel2/inc/PamLevel2.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.10 - (show annotations) (download)
Mon Jan 15 11:51:40 2007 UTC (17 years, 10 months ago) by pam-fi
Branch: MAIN
Changes since 1.9: +46 -70 lines
File MIME type: text/plain
v3r00 **NEW**

1
2
3 /**
4 * \file PamLevel2.h
5 * \author Elena Vannuccini
6 */
7 #ifndef pamlevel2_h
8 #define pamlevel2_h
9
10 #include <TRefArray.h>
11
12 #include <TrkLevel1.h>
13 #include <TrkLevel2.h>
14 #include <TrkHough.h>
15 #include <CaloLevel1.h>
16 #include <CaloLevel2.h>
17 #include <ToFLevel2.h>
18 #include <TrigLevel2.h>
19 #include <S4Level2.h>
20 #include <NDLevel2.h>
21 #include <AcLevel2.h>
22 #include <OrbitalInfo.h>
23 #include <OrbitalInfo.h>
24 #include <RunInfo.h>
25 #include <GLTables.h>
26
27
28 #include <TTree.h>
29 #include <TFriendElement.h>
30 #include <TChain.h>
31 #include <TFile.h>
32 #include <TList.h>
33 #include <TKey.h>
34 #include <TSystemFile.h>
35 #include <TSystemDirectory.h>
36
37 #include <iostream>
38 using namespace std;
39
40 /**
41 * \brief Class to describe particle tracks in the apparatus, including tracker and track-related variables from other detectors (calorimeter and TOF).
42 *
43 * This class inherites from TrkTrack, CaloTrkVar ecc...
44 *
45 */
46 //class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar {
47 class PamTrack : public TObject {
48
49 private:
50
51 TrkTrack* trk_track;
52 CaloTrkVar* calo_track;
53 ToFTrkVar* tof_track;
54
55 bool candeleteobj;
56
57 // TClonesArray *Cluster; ///< clusters (if stored)
58
59 public:
60
61 PamTrack();
62 PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* );
63 PamTrack(const PamTrack&);
64 ~PamTrack(){ Delete(); };
65
66 void Clear();
67 void Clear(Option_t *option){Clear();};
68 void Delete();
69
70 TrkTrack* GetTrkTrack(){return trk_track;};
71 CaloTrkVar* GetCaloTrack(){return calo_track;};
72 ToFTrkVar* GetToFTrack(){return tof_track;};
73
74 ClassDef(PamTrack,1);
75 };
76
77 /**
78 * \brief Class to describe PAMELA LEVEL2 data.
79 *
80 * This class inherites from TrkLevel2, CaloLevel2 ecc... and it overrides the TrkLevel2:GetTrack(int it) and TrkLevel2:GetTrackImage(int it) methods.
81 * This allows to solve the tracker ambiguity (that is, to choose between track images) by using also information from other detectors.
82 */
83
84 //class PamLevel2 : public CaloLevel2, public CaloLevel1, public ToFLevel2, public TrkLevel2, public TrkLevel1, public TrkHough, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo {
85 class PamLevel2 : public TObject {
86
87 private:
88 public:
89
90 TrkLevel1* trk1_obj;
91 TrkLevel2* trk2_obj;
92 TrkHough* trkh_obj;
93
94 CaloLevel1* calo1_obj;
95 CaloLevel2* calo2_obj;
96
97 ToFLevel2* tof_obj;
98 TrigLevel2* trig_obj;
99 S4Level2* s4_obj;
100 NDLevel2* nd_obj;
101 AcLevel2* ac_obj;
102 OrbitalInfo* orb_obj;
103
104 GL_RUN* run_obj;
105
106 TTree* tree_clone[8];
107
108 // TRefArray* sorted_tracks;
109 // TRefArray sorted_tracks;
110
111 TClonesArray *tsorted;
112 TClonesArray *timage;
113
114
115 PamTrack *track; //store the last required
116
117
118 Bool_t CAL2; //level2 branch
119 Bool_t CAL1; //level1 branch
120
121 Bool_t TRK2; //level2 branch
122 Bool_t TRK1; //level1 branch
123 Bool_t TRKh; //hough branch
124
125 Bool_t TRG;
126 Bool_t TOF;
127 Bool_t S4;
128 Bool_t ND;
129 Bool_t AC;
130 Bool_t ORB;
131
132 Bool_t RUN;
133
134 PamLevel2();
135 ~PamLevel2(){Delete();};
136
137 void Clear();
138 void Delete();
139
140 GL_RUN* GetRunInfo() { return run_obj; };
141
142 // =========================================
143 // methods needed to read/write Level2 trees
144 // =========================================
145 void SetWhichTrees(TString);
146 void GetWhichTrees(TFile*);
147
148 TTree* GetPamTree(TFile*,TString);
149 TTree* GetPamTree(TFile* f){return GetPamTree(f,"");};
150
151 TList* GetListOfLevel2Files(TString, TString);
152 Bool_t CheckLevel2File(TString);
153 TChain* GetPamTree(TList*,TString);
154 TChain* GetPamTree(TString ddir,TString list,TString detlist){ return GetPamTree(GetListOfLevel2Files(ddir,list),detlist); };
155 TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); };
156
157 TTree* GetRunTree(TFile*);
158 TChain* GetRunTree(TList*);
159
160 void CreateCloneTrees0(TChain *fChain, TFile* file);
161 void CreateCloneTrees(TFile* file);
162 void FillCloneTrees();
163 TTree *GetCloneTree(TString);
164 void WriteCloneTrees();
165
166 void SetBranchAddress(TTree *);
167 void SetBranchAddress(TChain *);
168
169 // ========================================================
170 // methods needed to retrieve subdetector general variables
171 // ========================================================
172 void* GetPointerTo(const char*);
173 TrkLevel1 *GetTrkLevel1() { return trk1_obj;};
174 TrkLevel2 *GetTrkLevel2() { return trk2_obj;};
175 TrkHough *GetTrkHough() { return trkh_obj;};
176 CaloLevel1 *GetCaloLevel1() { return calo1_obj;};
177 CaloLevel2 *GetCaloLevel2() { return calo2_obj;};
178 ToFLevel2 *GetToFLevel2() { return tof_obj;};
179 TrigLevel2 *GetTrigLevel2() { return trig_obj;};
180 S4Level2 *GetS4Level2() { return s4_obj;};
181 NDLevel2 *GetNDLevel2() { return nd_obj;};
182 AcLevel2 *GetAcLevel2() { return ac_obj;};
183 OrbitalInfo *GetOrbitalInfo(){ return orb_obj;};
184
185 // ==============================================
186 // methods to retrieve subdetectors stored tracks
187 // ==============================================
188 TrkTrack* GetTrkStoredTrack(int seqno){return trk2_obj->TrkLevel2::GetStoredTrack(seqno); };
189 CaloTrkVar* GetCaloStoredTrack(int);
190 ToFTrkVar* GetToFStoredTrack(int);
191 //
192 PamTrack* GetPamTrackAlong(TrkTrack*);
193 // PamTrack* GetPamTrackAlong(CaloTrkVar*); //se serve
194 // PamTrack* GetPamTrackAlong(ToFTrkVar*); //se serve
195
196 // =================================
197 // methods to retrieve pamela tracks
198 // =================================
199 PamTrack* GetStoredTrack(Int_t);
200 //
201 void SortTracks(TString); //assign value to variable sorted_tracks
202 // TRefArray* GetTracks(); //return sorted_tracks
203 TClonesArray* GetTracks(); //return sorted_tracks
204 PamTrack* GetTrack(int);
205 PamTrack* GetTrackImage(int);
206
207 // =================================
208 // other methods
209 // =================================
210 // Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); };
211
212
213 ClassDef(PamLevel2,1);
214 };
215
216 //===============================================================================================
217 //
218 //
219 //
220 //
221 //===============================================================================================
222
223
224 #endif
225

  ViewVC Help
Powered by ViewVC 1.1.23