1 |
mocchiut |
1.1 |
/** |
2 |
|
|
* \file TrkCore.cpp |
3 |
|
|
* \author Elena Vannuccini |
4 |
|
|
*/ |
5 |
|
|
// ......................................................... |
6 |
|
|
// ROOT header files |
7 |
|
|
// ......................................................... |
8 |
|
|
#include <TTree.h> |
9 |
|
|
#include <TClassEdit.h> |
10 |
|
|
#include <TObject.h> |
11 |
|
|
#include <TList.h> |
12 |
|
|
#include <TSystem.h> |
13 |
|
|
#include <TSystemDirectory.h> |
14 |
|
|
#include <TString.h> |
15 |
|
|
#include <TFile.h> |
16 |
|
|
#include <TClass.h> |
17 |
|
|
#include <TCanvas.h> |
18 |
|
|
#include <TH1.h> |
19 |
|
|
#include <TH1F.h> |
20 |
|
|
#include <TH2D.h> |
21 |
|
|
#include <TLatex.h> |
22 |
|
|
#include <TPad.h> |
23 |
|
|
#include <TSQLServer.h> |
24 |
|
|
#include <TSQLRow.h> |
25 |
|
|
#include <TSQLResult.h> |
26 |
pam-fi |
1.11 |
#include <TBenchmark.h> |
27 |
|
|
|
28 |
mocchiut |
1.1 |
// ......................................................... |
29 |
|
|
// other general header files |
30 |
|
|
// ......................................................... |
31 |
|
|
#include <fstream> |
32 |
|
|
#include <iostream> |
33 |
|
|
// ......................................................... |
34 |
|
|
// files in the inc directory |
35 |
|
|
// ......................................................... |
36 |
|
|
#include <RunInfo.h> |
37 |
|
|
#include <GLTables.h> |
38 |
|
|
#include <TrkVerl2.h> |
39 |
|
|
#include <TrkProcess.h> |
40 |
pam-fi |
1.2 |
//#include <TrkStruct.h> |
41 |
mocchiut |
1.1 |
#include <TrkLevel2.h> |
42 |
pam-fi |
1.6 |
#include <TrkLevel1.h> |
43 |
mocchiut |
1.1 |
#include <TrkLevel0.h> |
44 |
pam-fi |
1.15 |
#include <TrkHough.h> |
45 |
mocchiut |
1.1 |
// ......................................................... |
46 |
|
|
// YODA header files |
47 |
|
|
// ......................................................... |
48 |
|
|
#include <PamelaRun.h> |
49 |
pam-fi |
1.7 |
//#include <RegistryEvent.h> |
50 |
mocchiut |
1.1 |
#include <physics/tracker/TrackerEvent.h> |
51 |
|
|
#include <CalibTrk1Event.h> |
52 |
|
|
#include <CalibTrk2Event.h> |
53 |
mocchiut |
1.42 |
// |
54 |
mocchiut |
1.43 |
// Calorimeter level1 class header and definitions |
55 |
mocchiut |
1.42 |
// |
56 |
|
|
#include <CaloLevel1.h> //EM |
57 |
mocchiut |
1.43 |
// |
58 |
|
|
// ToF level2 class header and definitions |
59 |
|
|
// |
60 |
|
|
#include <ToFLevel2.h> //EM |
61 |
pam-fi |
1.45 |
// |
62 |
|
|
// Extended tracking |
63 |
|
|
// |
64 |
|
|
#include <ExtTrkingAlg.h> //EV |
65 |
pam-fi |
1.2 |
|
66 |
mocchiut |
1.1 |
// ......................................................... |
67 |
|
|
// namespaces |
68 |
|
|
// ......................................................... |
69 |
|
|
using namespace std; |
70 |
|
|
using namespace pamela; |
71 |
|
|
// ================================================================================ |
72 |
|
|
// |
73 |
|
|
// |
74 |
|
|
// ================================================================================ |
75 |
|
|
/** |
76 |
|
|
* \brief Tracker data reduction routine. |
77 |
|
|
* |
78 |
|
|
* It performs data reduction LEVEL0->LEVEL1->LEVEL2, producing LEVEL1 and or LEVEL2 output, in ROOT or HBOOK format. |
79 |
|
|
* Input parameters: |
80 |
|
|
* @param run id of the run to be processed (if run=0 a whole file is reprocessed) |
81 |
|
|
* @param dbc pointer to BD server |
82 |
|
|
* @param file1 output LEVEL1 file name (null if no LEVEL1 output is required) |
83 |
|
|
* @param file2 output LEVEL2 file name (null if no LEVEL2 output is required) |
84 |
|
|
* @param standalone (flag to run the program in standalone mode, that is without reading RunInfo) |
85 |
|
|
*/ |
86 |
|
|
//short int TrkCore(Int_t run, TSQLServer *dbc, TString file1, TString file2, Bool_t standalone) |
87 |
mocchiut |
1.31 |
//int TrkCore(UInt_t run, TFile *f2, TSQLServer *dbc, int ncustom, char*vcustom[]) // EMILIANO |
88 |
|
|
int TrkCore(UInt_t run, TFile *f2, GL_TABLES *glt, int ncustom, char*vcustom[]) // EMILIANO |
89 |
mocchiut |
1.1 |
{ |
90 |
|
|
// --------------------------- |
91 |
|
|
// Define some basic variables |
92 |
|
|
// --------------------------- |
93 |
|
|
|
94 |
pizzolot |
1.36 |
TString filename = ""; |
95 |
pam-fi |
1.7 |
Long64_t nentries = 0LL; |
96 |
pam-fi |
1.2 |
|
97 |
mocchiut |
1.1 |
// LEVEL0 input |
98 |
|
|
TFile *f0 = 0; |
99 |
|
|
TTree *physicsTree = 0; |
100 |
|
|
TBranch *b_trk = 0; |
101 |
|
|
TBranch *b_header = 0; |
102 |
|
|
EventHeader *header = 0; |
103 |
|
|
PscuHeader *pscu = 0; |
104 |
pam-fi |
1.22 |
TrkLevel0 *l0_event = new TrkLevel0(); |
105 |
mocchiut |
1.1 |
// RunInfo |
106 |
|
|
ItoRunInfo *runinfo = 0; |
107 |
pam-fi |
1.7 |
TArrayI *runlist = 0; |
108 |
|
|
UInt_t from_run; |
109 |
|
|
UInt_t to_run; |
110 |
mocchiut |
1.44 |
// Bool_t reprocessing = false; // EM GCC 4.7 |
111 |
mocchiut |
1.1 |
//LEVEL2 output - ROOT |
112 |
|
|
TTree *t_level2 = 0; |
113 |
|
|
TTree *t_clone = 0; |
114 |
|
|
TrkLevel2 *l2_event = new TrkLevel2(); |
115 |
|
|
TrkLevel2 *l2_clone = new TrkLevel2(); |
116 |
pam-fi |
1.13 |
//LEVEL1 output - ROOT |
117 |
|
|
TrkLevel1 *l1_event = new TrkLevel1(); |
118 |
pam-fi |
1.15 |
TrkHough *lh_event = new TrkHough(); |
119 |
mocchiut |
1.42 |
|
120 |
pam-fi |
1.45 |
//Extended tracking: |
121 |
|
|
TTree *t_ext = NULL; |
122 |
|
|
TTree *t_ext_clone = NULL; |
123 |
|
|
TTree *t_cal = NULL; |
124 |
|
|
TTree *t_tof = NULL; |
125 |
|
|
ExtTrkingAlg *trkAlg = NULL; |
126 |
|
|
TClonesArray *trk_array = NULL; |
127 |
|
|
// TClonesArray *trk_array_clone = new TClonesArray("TrkTrack"); |
128 |
|
|
CaloLevel1 *cl1 = NULL; |
129 |
|
|
ToFLevel2 *tl2 = NULL; |
130 |
mocchiut |
1.43 |
/* |
131 |
mocchiut |
1.42 |
// EM: how to use CaloLevel1 data inside tracker core routine, example: |
132 |
|
|
TTree *T = (TTree*)f2->Get("Calorimeter"); |
133 |
|
|
if ( T ){ |
134 |
|
|
CaloStrip *cs = new CaloStrip(false); |
135 |
|
|
CaloLevel1 *cl1 = new CaloLevel1(); |
136 |
|
|
T->SetBranchAddress("CaloLevel1",&cl1); |
137 |
|
|
// |
138 |
|
|
for (Int_t i=0; i < T->GetEntries(); i++){ |
139 |
|
|
T->GetEntry(i); |
140 |
|
|
Bool_t OK = false; |
141 |
|
|
Int_t k = 0; |
142 |
|
|
Int_t view = 0; |
143 |
|
|
Int_t plane = 0; |
144 |
|
|
Int_t strip = 0; |
145 |
|
|
Float_t mip = 0.; |
146 |
|
|
Float_t ene[2][22][96]; |
147 |
|
|
memset (ene,0,sizeof(Float_t)*2*22*96); |
148 |
|
|
// |
149 |
|
|
while ( k < cl1->istrip ){ |
150 |
|
|
mip = cl1->DecodeEstrip(k,view,plane,strip); |
151 |
|
|
// if ( view==0 && plane==18 ) mip = 0.; // 9thRED - set to zero signals from plane 18X |
152 |
|
|
// |
153 |
|
|
ene[view][plane][strip] = mip; |
154 |
|
|
k++; |
155 |
|
|
}; |
156 |
|
|
// check 5 |
157 |
|
|
Float_t totX = 0.; |
158 |
|
|
Float_t totY = 0.; |
159 |
|
|
Float_t posX = 0.; |
160 |
|
|
Float_t posY = 0.; |
161 |
|
|
Int_t minYstrip = 100; |
162 |
|
|
Int_t maxYstrip = -1; |
163 |
|
|
// calculate baricenter strip on first x and y planes |
164 |
|
|
for (Int_t j = 0; j<2; j++){ |
165 |
|
|
for (Int_t i = 0; i<96; i++){ |
166 |
|
|
totX += ene[0][j][i]; |
167 |
|
|
totY += ene[1][j][i]; |
168 |
|
|
if ( j==0 && ene[1][0][i]>0. && i > maxYstrip ) maxYstrip = i; |
169 |
|
|
if ( j==0 && ene[1][0][i]>0. && i < minYstrip ) minYstrip = i; |
170 |
|
|
posX += (float)i*ene[0][j][i]; |
171 |
|
|
posY += (float)i*ene[1][j][i]; |
172 |
|
|
} |
173 |
|
|
} |
174 |
|
|
// |
175 |
|
|
// printf(" totX %f totY %f maxYstrip %i minYstrip %i \n",totX,totY,maxYstrip,minYstrip); |
176 |
|
|
Int_t bariX = 0; |
177 |
|
|
Int_t bariY = 0; |
178 |
|
|
if ( totX>0. && totY > 0.){ |
179 |
|
|
// printf(" totX %f totY %f \n",totX,totY); |
180 |
|
|
posX /= totX; |
181 |
|
|
posY /= totY; |
182 |
|
|
bariX = (int)(posX); |
183 |
|
|
bariY = (int)(posY); |
184 |
|
|
Int_t minX = bariX - 10; |
185 |
|
|
Int_t maxX = bariX + 10; |
186 |
|
|
Int_t minY = bariY - 10; |
187 |
|
|
Int_t maxY = bariY + 10; |
188 |
|
|
if ( minX < 0 ) minX = 0; |
189 |
|
|
if ( minY < 0 ) minY = 0; |
190 |
|
|
if ( maxX > 95 ) maxX = 95; |
191 |
|
|
if ( maxY > 95 ) maxY = 95; |
192 |
|
|
totX = 0.; |
193 |
|
|
totY = 0.; |
194 |
|
|
Float_t parX = 0.; |
195 |
|
|
Float_t parY = 0.; |
196 |
|
|
|
197 |
|
|
for (Int_t j = 0; j<3; j++){ |
198 |
|
|
for (Int_t i = 0; i<96; i++){ |
199 |
|
|
totX += ene[0][j][i]; |
200 |
|
|
|
201 |
|
|
|
202 |
|
|
totY += ene[1][j][i]; |
203 |
|
|
if ( i>=minX && i<=maxX){ |
204 |
|
|
parX += ene[0][j][i]; |
205 |
|
|
} |
206 |
|
|
if ( i>=minY && i<=maxY){ |
207 |
|
|
parY += ene[1][j][i]; |
208 |
|
|
} |
209 |
|
|
} |
210 |
|
|
} |
211 |
|
|
// printf(" bariX %i bariY %i minX %i maxX %i minY %i maxY %i fractionX %f fractionY %f \n",bariX,bariY,minX,maxX,minY,maxY,parX/totX,parY/totY); |
212 |
|
|
|
213 |
|
|
if ( parX/totX > 0.65 && parY/totY > 0.75 ) OK = true; // less strict cut on the X due to possible bremsstrhalung double showers |
214 |
|
|
// if ( OK ) printf(" CHECK5 PASSED\n"); |
215 |
|
|
} |
216 |
|
|
|
217 |
|
|
// check 1 |
218 |
|
|
if ( totY > 0. && abs(maxYstrip-minYstrip)<10 ){ |
219 |
|
|
posY /= totY; |
220 |
|
|
bariY = (int)(posY); |
221 |
|
|
Float_t ntotX = 0.; |
222 |
|
|
Float_t ntotY = 0.; |
223 |
|
|
for (Int_t j = 0; j<2; j++){ |
224 |
|
|
for (Int_t i = 0; i<96; i++){ |
225 |
|
|
ntotX += ene[0][j][i]; |
226 |
|
|
if ( j > 0 ) ntotY += ene[1][j][i]; |
227 |
|
|
} |
228 |
|
|
} |
229 |
|
|
if ( ntotX < 0.3 && ntotY < 0.3 ){ |
230 |
|
|
OK = true; |
231 |
|
|
// printf(" CHECK1 PASSED\n"); |
232 |
|
|
} |
233 |
|
|
} |
234 |
|
|
|
235 |
|
|
if ( OK ){ |
236 |
|
|
printf("%i: event is good! \n",i); |
237 |
|
|
cs->Set(1,0,bariY); |
238 |
|
|
printf(" Y0 hit strip coordinates: X %f Y %f Z %f \n",cs->GetX(),cs->GetY(),cs->GetZ()); |
239 |
|
|
} |
240 |
|
|
} |
241 |
|
|
T->Delete(); |
242 |
|
|
} |
243 |
|
|
// end EM |
244 |
mocchiut |
1.43 |
// EM: how to use ToF data inside tracker core routine, example: |
245 |
|
|
T = (TTree*)f2->Get("ToF"); |
246 |
|
|
if ( T ){ |
247 |
|
|
ToFLevel2 *tl2 = new ToFLevel2(); |
248 |
|
|
T->SetBranchAddress("ToFLevel2",&tl2); |
249 |
|
|
// |
250 |
|
|
for (Int_t i=0; i < T->GetEntries(); i++){ |
251 |
|
|
T->GetEntry(i); |
252 |
|
|
printf("%i GetPaddleIdOfTrack(-2.4,5.6,2) %i HitPaddle(2,0) %i \n",i,tl2->GetPaddleIdOfTrack(-24.,5.6,2),tl2->HitPaddle(2,0)); |
253 |
|
|
} |
254 |
|
|
T->Delete(); |
255 |
|
|
} |
256 |
|
|
// END EM |
257 |
|
|
*/ |
258 |
mocchiut |
1.42 |
|
259 |
mocchiut |
1.1 |
// ----------------------- |
260 |
|
|
// ----------------------- |
261 |
|
|
// Handle input parameters |
262 |
|
|
// (data) |
263 |
|
|
// |
264 |
|
|
// - open/create output files, determining the environment root/hbook from the estension |
265 |
|
|
// - create the level1/level2 tree+branch/nt-uple |
266 |
|
|
// ----------------------- |
267 |
|
|
// ----------------------- |
268 |
|
|
TrkProcess *p = new TrkProcess(run,f2); |
269 |
pam-fi |
1.26 |
if( p->HandleCustomPar(ncustom,vcustom) )return(p->ostatus);; |
270 |
pam-fi |
1.25 |
if( TrkParams::VerboseMode() )p->Dump(); |
271 |
mocchiut |
1.1 |
|
272 |
|
|
// =================================== |
273 |
|
|
// Open/Create level2 output file |
274 |
|
|
// =================================== |
275 |
|
|
if(p->get2){ |
276 |
pam-fi |
1.13 |
//------------------------------------------- |
277 |
|
|
// read RunInfo |
278 |
|
|
//------------------------------------------- |
279 |
|
|
if(!(p->standalone)){ |
280 |
|
|
// Open "RunInfo" tree and get list of run |
281 |
|
|
runinfo = new ItoRunInfo(f2); |
282 |
|
|
char *trkversion = TrkInfo(false); |
283 |
|
|
int runinfo_error = runinfo->Update(run,"TRK",trkversion); |
284 |
|
|
if( runinfo_error ) throw runinfo_error; |
285 |
|
|
runlist = runinfo->GetRunList(); |
286 |
mocchiut |
1.44 |
// reprocessing = runinfo->IsReprocessing();//???? |
287 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode()){ |
288 |
pam-fi |
1.13 |
cout << "#events "<< runinfo->GetFileEntries() << endl;// #events in the file |
289 |
|
|
cout << "#runs "<< runinfo->GetRunEntries() << endl;// #runs in the file |
290 |
|
|
cout << "1-st run "<< runlist->At(0) << endl; |
291 |
|
|
cout << "last run "<< runlist->At(runinfo->GetRunEntries()-1) << endl; |
292 |
|
|
cout << "1-st event "<< runinfo->GetFirstEntry() << endl;// first event of our run |
293 |
|
|
cout << "last event+1 "<< runinfo->GetLastEntry() << endl;// first event AFTER the last event of our run |
294 |
mocchiut |
1.44 |
// cout << "reprocessing "<< runinfo->IsReprocessing() << endl << endl; |
295 |
pam-fi |
1.13 |
}; |
296 |
|
|
}; |
297 |
|
|
//------------------------------------------- |
298 |
|
|
// |
299 |
|
|
//------------------------------------------- |
300 |
|
|
// Take (if present) the old Tracker tree |
301 |
|
|
t_clone = (TTree*)f2->Get("Tracker"); |
302 |
|
|
if( t_clone != NULL ) t_clone->SetBranchAddress("TrkLevel2",&l2_clone); |
303 |
|
|
// Create NEW Tracker tree |
304 |
|
|
t_level2 = new TTree("Tracker","PAMELA tracker level2 data "); |
305 |
pam-fi |
1.21 |
l2_event->Set(); // ****NBNBNBN***** |
306 |
pam-fi |
1.13 |
t_level2->Branch("TrkLevel2","TrkLevel2",&l2_event); |
307 |
|
|
if(p->get1){ |
308 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode())cout << endl << "Requested LEVEL1 output" << endl; |
309 |
pam-fi |
1.21 |
l1_event->Set(); // ****NBNBNBN***** |
310 |
pam-fi |
1.13 |
t_level2->Branch("TrkLevel1","TrkLevel1",&l1_event); |
311 |
pam-fi |
1.16 |
} |
312 |
|
|
if(p->geth){ |
313 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode())cout << endl << "Requested Hough-Transform output" << endl; |
314 |
pam-fi |
1.16 |
t_level2->Branch("TrkHough","TrkHough",&lh_event); |
315 |
pam-fi |
1.7 |
}; |
316 |
pam-fi |
1.13 |
}; |
317 |
pam-fi |
1.45 |
|
318 |
|
|
// ========================================= |
319 |
|
|
// Open/Create extended-tracking output file //EV |
320 |
|
|
// ========================================= |
321 |
|
|
if(p->gete){ |
322 |
|
|
//------------------------------------------- |
323 |
|
|
// read RunInfo ??? |
324 |
|
|
//------------------------------------------- |
325 |
|
|
if(!(p->standalone) && !p->get2){ |
326 |
|
|
// Open "RunInfo" tree and get list of run |
327 |
|
|
runinfo = new ItoRunInfo(f2); |
328 |
|
|
char *trkversion = TrkInfo(false); |
329 |
|
|
int runinfo_error = runinfo->Update(run,"TRK",trkversion); |
330 |
|
|
if( runinfo_error ) throw runinfo_error; |
331 |
|
|
runlist = runinfo->GetRunList(); |
332 |
|
|
// reprocessing = runinfo->IsReprocessing();//???? |
333 |
|
|
if(TrkParams::VerboseMode()){ |
334 |
|
|
cout << "#events "<< runinfo->GetFileEntries() << endl;// #events in the file |
335 |
|
|
cout << "#runs "<< runinfo->GetRunEntries() << endl;// #runs in the file |
336 |
|
|
cout << "1-st run "<< runlist->At(0) << endl; |
337 |
|
|
cout << "last run "<< runlist->At(runinfo->GetRunEntries()-1) << endl; |
338 |
|
|
cout << "1-st event "<< runinfo->GetFirstEntry() << endl;// first event of our run |
339 |
|
|
cout << "last event+1 "<< runinfo->GetLastEntry() << endl;// first event AFTER the last event of our run |
340 |
|
|
// cout << "reprocessing "<< runinfo->IsReprocessing() << endl << endl; |
341 |
|
|
}; |
342 |
|
|
}; |
343 |
|
|
//------------------------------------------- |
344 |
|
|
// |
345 |
|
|
//------------------------------------------- |
346 |
|
|
trkAlg = new ExtTrkingAlg(); |
347 |
|
|
trk_array = trkAlg->GetTrackArray(); |
348 |
|
|
|
349 |
|
|
t_ext_clone = (TTree*)f2->Get("ExtTracks"); |
350 |
|
|
// if( t_ext_clone != NULL ) t_ext_clone->SetBranchAddress("TrkTracks",&trk_array_clone); |
351 |
|
|
if( t_ext_clone != NULL ) t_ext_clone->SetBranchAddress("TrkTracks",trkAlg->GetPointerToTrackArray()); |
352 |
|
|
// Create NEW tree |
353 |
|
|
t_ext = new TTree("ExtTracks"," Extended tracking algorythm "); |
354 |
|
|
// t_ext->Branch("TrkTracks",&trk_array); |
355 |
|
|
t_ext->Branch("TrkTracks",trkAlg->GetPointerToTrackArray()); |
356 |
|
|
// |
357 |
|
|
// calorimeter and tof tree |
358 |
|
|
// |
359 |
|
|
t_cal = (TTree*)f2->Get("Calorimeter"); |
360 |
|
|
if(!t_cal)throw -206; |
361 |
|
|
cl1 = new CaloLevel1(); |
362 |
|
|
t_cal->SetBranchAddress("CaloLevel1",&cl1); |
363 |
|
|
|
364 |
|
|
|
365 |
|
|
t_tof = (TTree*)f2->Get("ToF"); |
366 |
|
|
if(!t_tof)throw -206; |
367 |
|
|
tl2 = new ToFLevel2(); |
368 |
|
|
t_tof->SetBranchAddress("ToFLevel2",&tl2); |
369 |
mocchiut |
1.1 |
|
370 |
pam-fi |
1.45 |
} |
371 |
|
|
|
372 |
mocchiut |
1.1 |
|
373 |
|
|
// ------------------------------------------- |
374 |
|
|
// define runs to be processed/reprocessed |
375 |
|
|
// ------------------------------------------- |
376 |
|
|
if(run == 0){ |
377 |
pam-fi |
1.13 |
// reprocessing ALL runs |
378 |
|
|
if(p->standalone)throw -298; // reprocessing not implemented |
379 |
|
|
from_run = runlist->At(0); |
380 |
|
|
to_run = runlist->At(runinfo->GetRunEntries()-1); |
381 |
mocchiut |
1.1 |
}else{ |
382 |
|
|
// processing/reprocessing ONE single run |
383 |
pam-fi |
1.13 |
from_run = run; |
384 |
|
|
to_run = run; |
385 |
mocchiut |
1.1 |
}; |
386 |
|
|
|
387 |
|
|
// |
388 |
|
|
// init event counter |
389 |
|
|
// |
390 |
|
|
Int_t ev_count =0; |
391 |
|
|
// |
392 |
|
|
// create query-results objects |
393 |
|
|
// |
394 |
pam-fi |
1.7 |
GL_RUN q1 = GL_RUN(); |
395 |
mocchiut |
1.1 |
GL_TRK_CALIB q2 = GL_TRK_CALIB(); |
396 |
|
|
GL_ROOT q3 = GL_ROOT(); |
397 |
|
|
GL_PARAM q4 = GL_PARAM(); |
398 |
|
|
|
399 |
|
|
// ------------------------------------------------------------ |
400 |
|
|
// if reprocessing one run, copy all the events BEFORE the run |
401 |
|
|
// ------------------------------------------------------------ |
402 |
|
|
if( !(p->standalone) ){ |
403 |
pam-fi |
1.13 |
for(UInt_t i=0; i<runinfo->GetFirstEntry(); i++){ |
404 |
mocchiut |
1.37 |
if ( t_clone->GetEntry(i) <= 0 ) throw -36;// EM |
405 |
pam-fi |
1.13 |
*l2_event = *l2_clone; |
406 |
|
|
t_level2->Fill(); |
407 |
|
|
l2_event->Clear(); |
408 |
|
|
// COPY COPY COPY |
409 |
pam-fi |
1.45 |
if(p->gete){ |
410 |
|
|
//extended-tracking tree //EV |
411 |
|
|
if ( t_ext_clone->GetEntry(i) <= 0 ) throw -36;// EM |
412 |
|
|
// *trk_array = *trk_array_clone; |
413 |
|
|
// trk_array_clone->Copy(*trk_array); |
414 |
|
|
t_ext->Fill(); |
415 |
|
|
trk_array->Clear(); |
416 |
|
|
} |
417 |
pam-fi |
1.13 |
}; |
418 |
mocchiut |
1.1 |
}; |
419 |
|
|
// ------------------------------------------------------------ |
420 |
|
|
// ------------------------------------------------------------ |
421 |
pam-fi |
1.25 |
// START LOOP OVER RUNS TO PROCESS/REPROCESS |
422 |
mocchiut |
1.1 |
// ------------------------------------------------------------ |
423 |
|
|
// ------------------------------------------------------------ |
424 |
pam-fi |
1.7 |
for(UInt_t idRun = from_run; idRun <= to_run; idRun++){ |
425 |
mocchiut |
1.1 |
|
426 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode()) cout << endl<<" ========================= Run: "<< idRun << endl; |
427 |
pam-fi |
1.7 |
UInt_t runheadtime = 0; |
428 |
|
|
UInt_t runtrailtime = 0; |
429 |
pam-fi |
1.32 |
UInt_t runheadobt = 0; |
430 |
|
|
UInt_t runtrailobt = 0; |
431 |
mocchiut |
1.41 |
UInt_t abstime = 0; |
432 |
mocchiut |
1.1 |
UInt_t evfrom = 0; |
433 |
|
|
UInt_t evto = 0; |
434 |
pam-fi |
1.7 |
UInt_t nevents = 0; |
435 |
|
|
Int_t id_root_l0 =-1; |
436 |
mocchiut |
1.1 |
Int_t trk_calib_used = 0; |
437 |
pam-fi |
1.7 |
|
438 |
mocchiut |
1.31 |
TString host = glt->CGetHost(); // EMILIANO |
439 |
|
|
TString user = glt->CGetUser(); // EMILIANO |
440 |
|
|
TString psw = glt->CGetPsw(); // EMILIANO |
441 |
|
|
// TString host = "mysql://localhost/pamelaprod"; |
442 |
|
|
// TString user = "anonymous"; |
443 |
|
|
// TString psw = ""; |
444 |
|
|
// const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
445 |
|
|
// const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
446 |
|
|
// const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
447 |
|
|
// if ( !pamdbhost ) pamdbhost = ""; |
448 |
|
|
// if ( !pamdbuser ) pamdbuser = ""; |
449 |
|
|
// if ( !pamdbpsw ) pamdbpsw = ""; |
450 |
|
|
// if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
451 |
|
|
// if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
452 |
|
|
// if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
453 |
mocchiut |
1.29 |
TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
454 |
mocchiut |
1.31 |
stringstream myquery; // EMILIANO |
455 |
|
|
myquery.str(""); // EMILIANO |
456 |
|
|
myquery << "SET time_zone='+0:00'"; // EMILIANO |
457 |
mocchiut |
1.39 |
delete dbc->Query(myquery.str().c_str()); // EMILIANO |
458 |
mocchiut |
1.1 |
if(p->standalone){ |
459 |
|
|
// ============================== |
460 |
|
|
// first query: retrieve run info |
461 |
|
|
// ============================== |
462 |
pam-fi |
1.7 |
if (q1.Query_GL_RUN(idRun,dbc) )throw -50; |
463 |
|
|
id_root_l0 = q1.ID_ROOT_L0; |
464 |
mocchiut |
1.1 |
runheadtime = q1.RUNHEADER_TIME; |
465 |
|
|
runtrailtime = q1.RUNTRAILER_TIME; |
466 |
pam-fi |
1.32 |
runheadobt = q1.RUNHEADER_OBT; |
467 |
|
|
runtrailobt = q1.RUNTRAILER_OBT; |
468 |
pam-fi |
1.7 |
evfrom = q1.EV_FROM; |
469 |
|
|
evto = q1.EV_TO; |
470 |
pam-fi |
1.13 |
nevents = q1.NEVENTS; |
471 |
|
|
trk_calib_used = q1.TRK_CALIB_USED; |
472 |
mocchiut |
1.1 |
}else{ |
473 |
|
|
// ============================== |
474 |
|
|
// get run info from RunInfo tree |
475 |
|
|
// ============================== |
476 |
pam-fi |
1.3 |
int runinfo_error = runinfo->GetRunInfo(idRun); |
477 |
pam-fi |
1.7 |
if( runinfo_error ) throw runinfo_error; |
478 |
|
|
id_root_l0 = runinfo->ID_ROOT_L0; |
479 |
mocchiut |
1.1 |
runheadtime = runinfo->RUNHEADER_TIME; |
480 |
|
|
runtrailtime = runinfo->RUNTRAILER_TIME; |
481 |
pam-fi |
1.32 |
runheadobt = runinfo->RUNHEADER_OBT; |
482 |
|
|
runtrailobt = runinfo->RUNTRAILER_OBT; |
483 |
pam-fi |
1.7 |
evfrom = runinfo->EV_FROM; |
484 |
|
|
evto = runinfo->EV_TO; |
485 |
pam-fi |
1.13 |
nevents = runinfo->NEVENTS; |
486 |
|
|
trk_calib_used = runinfo->TRK_CALIB_USED; |
487 |
pam-fi |
1.24 |
|
488 |
mocchiut |
1.1 |
}; |
489 |
pam-fi |
1.24 |
|
490 |
mocchiut |
1.1 |
// |
491 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode()){ |
492 |
pam-fi |
1.7 |
cout << "ROOT file ID "<< id_root_l0 << endl; |
493 |
mocchiut |
1.1 |
cout << "RunHeader time "<< runheadtime << endl; |
494 |
|
|
cout << "RunTrailer time "<< runtrailtime << endl; |
495 |
pam-fi |
1.7 |
cout << " from event "<< evfrom << endl; |
496 |
|
|
cout << " to event "<< evto << endl; |
497 |
pam-fi |
1.24 |
cout << " num. events "<< nevents << endl; |
498 |
|
|
cout << "trk-calibration used "<< trk_calib_used << endl; |
499 |
mocchiut |
1.1 |
}; |
500 |
|
|
// ======================================================== |
501 |
|
|
// second query: search the LEVEL0 file that contains idRun |
502 |
|
|
// ======================================================== |
503 |
|
|
TString lastfilename = filename; |
504 |
pam-fi |
1.7 |
if( q3.Query_GL_ROOT(id_root_l0,dbc) )throw -51; |
505 |
mocchiut |
1.1 |
filename = q3.PATH + q3.NAME; |
506 |
|
|
// ======================================================== |
507 |
|
|
// Open the input LEVEL0 data file |
508 |
|
|
// ======================================================== |
509 |
|
|
if(filename.CompareTo(lastfilename)){ |
510 |
|
|
if(!lastfilename.IsNull())f0->Close(); |
511 |
|
|
//if( debug ) cout << "Opening LEVEL0 file: "<< filename << endl; |
512 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode()) cout << "Opening LEVEL0 file: "<< filename << endl; |
513 |
pam-fi |
1.2 |
FileStat_t t; |
514 |
|
|
if( gSystem->GetPathInfo(filename.Data(),t) )throw -6; |
515 |
mocchiut |
1.39 |
if ( f0 ) f0->Close(); |
516 |
mocchiut |
1.1 |
f0 = new TFile(filename); |
517 |
|
|
if ( !f0 ) throw -6; |
518 |
|
|
physicsTree = (TTree*)f0->Get("Physics"); if(!physicsTree) throw -7; |
519 |
|
|
b_header = physicsTree ->GetBranch("Header"); if(!b_header ) throw -8; |
520 |
|
|
b_trk = physicsTree ->GetBranch("Tracker"); if(!b_trk ) throw -203; |
521 |
pam-fi |
1.22 |
l0_event->Set(); |
522 |
|
|
physicsTree->SetBranchAddress("Tracker" ,l0_event->GetPointerToTrackerEvent()); |
523 |
mocchiut |
1.1 |
physicsTree->SetBranchAddress("Header",&header); |
524 |
|
|
|
525 |
pam-fi |
1.7 |
nentries = physicsTree->GetEntries(); |
526 |
mocchiut |
1.34 |
if ( nentries < 1 && nevents ) throw -11; // EMILIANO: go on if the file is empty, why not? in principle we should not have any event to process but if the case the next line will take care of exiting; exit only if the file is empty but nevents is not zero |
527 |
mocchiut |
1.33 |
if ( nentries < (evto+1) && nevents > 0 ) throw -12; // EMILIANO: if NEVENTS = 0 and the file is empty everything is ok but due to a mistake in the |
528 |
|
|
// variable EV_TO type (UInt_t instead of Int_t) that we don't want to change to avoid changing a lot of code, evto becomes inf hence |
529 |
|
|
// the condition ( nentries < (evto+1) ) is satisfied and DV exit with error even if the error is only in the DB. |
530 |
pam-fi |
1.7 |
|
531 |
mocchiut |
1.1 |
}; |
532 |
|
|
|
533 |
pam-fi |
1.7 |
GL_TIMESYNC *dbtime = new GL_TIMESYNC(id_root_l0,"ID",dbc); |
534 |
|
|
|
535 |
pam-fi |
1.24 |
|
536 |
|
|
// ============================================================= |
537 |
|
|
// retrieve information about parameters to process LEVEL2 |
538 |
|
|
// ============================================================= |
539 |
|
|
|
540 |
mocchiut |
1.41 |
TrkParams::Set(runinfo->GetGL_RUN(),dbc); |
541 |
|
|
for(int i=0; i<p->npar; i++){ |
542 |
|
|
if(TrkParams::VerboseMode())cout<<" ((( force parameters from input path )))"<<endl; |
543 |
|
|
TrkParams::Set(p->parpath[i],p->partype[i]); |
544 |
|
|
} |
545 |
pam-fi |
1.25 |
|
546 |
mocchiut |
1.41 |
TrkParams::Load(); |
547 |
|
|
if( !TrkParams::IsLoaded() )throw -52; |
548 |
pam-fi |
1.24 |
|
549 |
|
|
// ============================================================= |
550 |
|
|
// retrieve calibration file needed to reduce data |
551 |
|
|
// ============================================================= |
552 |
|
|
|
553 |
|
|
TrkParams::SetCalib(runinfo->GetGL_RUN(),dbc); |
554 |
|
|
TrkParams::LoadCalib( ); |
555 |
|
|
if( !TrkParams::CalibIsLoaded() )throw -53; |
556 |
|
|
|
557 |
pam-fi |
1.11 |
TBenchmark *reduction = new TBenchmark(); |
558 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode())reduction->Start("reduction"); |
559 |
pam-fi |
1.11 |
Int_t ntrk=0; |
560 |
mocchiut |
1.1 |
// ==================================================== |
561 |
|
|
// start looping on events cointained in the data file |
562 |
|
|
// ==================================================== |
563 |
mocchiut |
1.41 |
if ( TrkParams::GetSimuFlag() ){ |
564 |
|
|
abstime = runheadtime; |
565 |
|
|
} else { |
566 |
|
|
if(dbc){ |
567 |
|
|
dbc->Close(); |
568 |
|
|
delete dbc; |
569 |
|
|
} |
570 |
|
|
} |
571 |
|
|
|
572 |
pam-fi |
1.32 |
for (UInt_t re = evfrom+min(p->nskip,nevents); re < evfrom+nevents; re++){ |
573 |
mocchiut |
1.1 |
|
574 |
|
|
ev_count++; |
575 |
pam-fi |
1.32 |
|
576 |
pam-fi |
1.45 |
// |
577 |
|
|
// NBNB check if events are aligned!!!!!!!!!!! |
578 |
|
|
// |
579 |
|
|
|
580 |
|
|
|
581 |
|
|
if(p->gete){ |
582 |
|
|
int iev = 0; |
583 |
|
|
int jumped = 0; |
584 |
|
|
iev = runinfo->GetFirstEntry() + (re - evfrom -jumped); |
585 |
|
|
if ( t_cal->GetEntry(iev) <= 0 ) throw -36;//EV |
586 |
|
|
if ( t_tof->GetEntry(iev) <= 0 ) throw -36;//EV |
587 |
|
|
} |
588 |
|
|
|
589 |
pam-fi |
1.25 |
// if ( TrkParams::DebugMode() && re%100 == 0 && re > 0 ) cout << "."; |
590 |
mocchiut |
1.1 |
|
591 |
mocchiut |
1.37 |
if ( b_trk->GetEntry(re) <= 0 ) throw -36;//EM |
592 |
|
|
if ( b_header->GetEntry(re) <= 0 ) throw -36;//EM |
593 |
pam-fi |
1.13 |
pscu = header->GetPscuHeader(); |
594 |
mocchiut |
1.41 |
|
595 |
|
|
// ============================================================= |
596 |
|
|
// The following 6 lines have been moved here by VALERIO. |
597 |
|
|
if(TrkParams::GetSimuFlag()){ |
598 |
|
|
abstime = runheadtime + (int) floor(0.03*(re-evfrom)); //If simulated data we need to assign a fake abstime. 30ms between each event. |
599 |
|
|
if(TrkParams::VerboseMode())cout << "Event: " << re-evfrom << " - Attempting to retrieve Mask Info for abstime=" << abstime << endl; |
600 |
|
|
if(!TrkParams::Set(runinfo->GetGL_RUN(),dbc,6,abstime))throw -52; // Setting to load mask (VALERIO) |
601 |
|
|
TrkParams::Load(6); |
602 |
|
|
if( !TrkParams::IsLoaded() )throw -52; |
603 |
|
|
if(TrkParams::VerboseMode())cout << "Mask Info for abstime=" << abstime << " retrieved" << endl; |
604 |
|
|
} |
605 |
|
|
|
606 |
pam-fi |
1.25 |
if( TrkParams::DebugMode() )cout << ">>> "<<ev_count-1<<" @ OBT "<<pscu->GetOrbitalTime()<<endl; |
607 |
pam-fi |
1.23 |
|
608 |
mocchiut |
1.35 |
if ( dbtime->DBabsTime(pscu->GetOrbitalTime()) > (runtrailtime+1) || dbtime->DBabsTime(pscu->GetOrbitalTime()) < (runheadtime-1)) { |
609 |
pam-fi |
1.7 |
|
610 |
pam-fi |
1.25 |
if (TrkParams::VerboseMode()){ |
611 |
pam-fi |
1.14 |
printf(" TrkCore - WARNING: event outside the run time window, skipping it\n"); |
612 |
pam-fi |
1.32 |
cout << " OBT "<<pscu->GetOrbitalTime()<<" RUN "<<runheadobt<<"-"<<runtrailobt<<" ABS-time "<<dbtime->DBabsTime(pscu->GetOrbitalTime())<<" RUN "<<runheadtime<<"-"<<runtrailtime<<endl; |
613 |
pam-fi |
1.14 |
}; |
614 |
pam-fi |
1.13 |
}else{ |
615 |
pam-fi |
1.25 |
if ( TrkParams::DebugMode() ) |
616 |
pam-fi |
1.23 |
printf("\n-------------------------------\nevent %d\n",re-evfrom); |
617 |
pam-fi |
1.16 |
|
618 |
pam-fi |
1.13 |
p->ProcessEvent(l0_event); |
619 |
pam-fi |
1.7 |
|
620 |
pam-fi |
1.13 |
// ---------------- |
621 |
|
|
// LEVEL1 output |
622 |
|
|
// ---------------- |
623 |
|
|
if(p->get1){ |
624 |
|
|
if(p->ifroot1){ // root |
625 |
|
|
l1_event->Clear(); |
626 |
pam-fi |
1.22 |
// l1_event->SetFromLevel1Struct(&level1event_,p->full1); |
627 |
|
|
l1_event->SetFromLevel1Struct(p->full1); |
628 |
pam-fi |
1.13 |
// t_level1->Fill(); |
629 |
pam-fi |
1.23 |
}else{ // hbook |
630 |
pam-fi |
1.13 |
throw -299; |
631 |
|
|
}; |
632 |
|
|
}; |
633 |
|
|
// ---------------- |
634 |
|
|
// HOUGH output |
635 |
|
|
// ---------------- |
636 |
|
|
if(p->geth){ |
637 |
|
|
if(p->ifrooth){ // root |
638 |
pam-fi |
1.23 |
lh_event->Delete(); |
639 |
|
|
lh_event->SetFromHoughStruct(&houghevent_); |
640 |
pam-fi |
1.13 |
}else{ // hbook |
641 |
|
|
throw -299; |
642 |
|
|
}; |
643 |
|
|
}; |
644 |
|
|
// ---------------- |
645 |
|
|
// LEVEL2 output |
646 |
|
|
// ---------------- |
647 |
|
|
if(p->get2){ |
648 |
pam-fi |
1.23 |
l2_event->Clear(); |
649 |
|
|
if(p->get1){ |
650 |
|
|
l2_event->SetFromLevel2Struct(&level2event_,l1_event);//set references to level1 |
651 |
|
|
}else{ |
652 |
|
|
l2_event->SetFromLevel2Struct(&level2event_); |
653 |
|
|
} |
654 |
pam-fi |
1.10 |
// l2_event->Dump(); |
655 |
pam-fi |
1.23 |
t_level2->Fill(); |
656 |
|
|
if( l2_event->ntrk()>0 )ntrk++; |
657 |
pam-fi |
1.27 |
if(TrkParams::VerboseMode())l2_event->Dump(); |
658 |
mocchiut |
1.1 |
}; |
659 |
pam-fi |
1.45 |
// ------------------ |
660 |
|
|
// extended-tracking |
661 |
|
|
// ------------------ |
662 |
|
|
if(p->gete){ |
663 |
|
|
|
664 |
|
|
TrkLevel1 *trkl1 = new TrkLevel1(); |
665 |
|
|
trkl1->Clear(); |
666 |
|
|
trkl1->SetFromLevel1Struct(true); |
667 |
|
|
|
668 |
|
|
trkAlg->Clear(); |
669 |
|
|
trkAlg->SetTrkLevel2(l2_event); |
670 |
|
|
trkAlg->SetTrkLevel1(trkl1); |
671 |
|
|
trkAlg->SetCaloLevel1(cl1); |
672 |
|
|
trkAlg->SetToFLevel2(tl2); |
673 |
|
|
// trkAlg->Dump(); |
674 |
|
|
trkAlg->ProcessEvent(); |
675 |
|
|
|
676 |
|
|
//trk_array = (TClonesArray*)trkAlg->GetTrackArray()->Clone();//non funziona |
677 |
|
|
//trk_array = trkAlg->GetTrackArray();//non funziona |
678 |
|
|
// ovvediamo se ora funziona... |
679 |
|
|
// TClonesArray &trackso = *trk_array;trackso.Clear("C"); |
680 |
|
|
// TClonesArray &tracksi = *trkAlg->GetTrackArray(); |
681 |
|
|
// for(int i=0 ;i<trkAlg->GetTrackArray()->GetEntries(); i++) new((TrkTrack*)trackso[i]) TrkTrack(*(TrkTrack*)tracksi[i]); |
682 |
|
|
// si` funziona!! ma e` inefficiente e non raccomandato... |
683 |
|
|
// cout << " trk.s "<< l2_event->GetNTracks()<<" - "<<tracksi.GetEntries()<<" --> "<<trackso.GetEntries()<<endl; |
684 |
|
|
|
685 |
|
|
// cout << " trk.s "<< l2_event->GetNTracks()<<" - "<<trk_array->GetEntries()<<endl; |
686 |
|
|
|
687 |
|
|
delete trkl1; |
688 |
|
|
// delete trk_array; |
689 |
|
|
|
690 |
|
|
t_ext->Fill(); |
691 |
|
|
|
692 |
|
|
} |
693 |
|
|
|
694 |
pam-fi |
1.13 |
}; |
695 |
mocchiut |
1.1 |
}; // end loop on events |
696 |
pam-fi |
1.25 |
if(TrkParams::VerboseMode()){ |
697 |
pam-fi |
1.13 |
cout << " >>> processed "<< ev_count <<" events"<< endl; |
698 |
|
|
if(ev_count)cout << ntrk << " events with at least one track ("<<(Int_t)(100*ntrk/ev_count)<<"%)\n"; |
699 |
|
|
reduction->Show("reduction"); |
700 |
pam-fi |
1.11 |
} |
701 |
|
|
delete reduction; |
702 |
pam-fi |
1.7 |
|
703 |
|
|
delete dbtime; |
704 |
|
|
|
705 |
pam-fi |
1.13 |
}; // end loop on runs |
706 |
|
|
|
707 |
|
|
|
708 |
mocchiut |
1.1 |
// ------------------------------------------------------------ |
709 |
|
|
// if reprocessing one run, copy all the events AFTER the run |
710 |
|
|
// ------------------------------------------------------------ |
711 |
|
|
if( !(p->standalone) ){ |
712 |
|
|
for(UInt_t i=runinfo->GetLastEntry()+1; i<runinfo->GetFileEntries(); i++){ |
713 |
mocchiut |
1.37 |
if ( t_clone->GetEntry(i) <= 0 ) throw -36;//EM |
714 |
mocchiut |
1.1 |
*l2_event = *l2_clone; |
715 |
|
|
t_level2->Fill(); |
716 |
|
|
l2_event->Clear(); |
717 |
|
|
// COPY COPY COPY |
718 |
pam-fi |
1.45 |
// extended-tracking tree //EV |
719 |
|
|
if(p->gete){ |
720 |
|
|
if ( t_ext_clone->GetEntry(i) <= 0 ) throw -36;//EM |
721 |
|
|
// *trk_array = *trk_array_clone; |
722 |
|
|
// trk_array_clone->Copy(*trk_array); |
723 |
|
|
t_ext->Fill(); |
724 |
|
|
trk_array->Clear(); |
725 |
|
|
} |
726 |
mocchiut |
1.1 |
}; |
727 |
|
|
}; |
728 |
|
|
// --------------- |
729 |
|
|
// close the files |
730 |
|
|
// --------------- |
731 |
|
|
if(p->get2){ |
732 |
mocchiut |
1.40 |
if( t_clone )t_clone->Delete("all");//delete old tree from file |
733 |
pam-fi |
1.13 |
if( !(p->standalone) )runinfo->Close(); |
734 |
mocchiut |
1.40 |
// t_level2->Write("Tracker", TObject::kOverwrite); |
735 |
|
|
f2->Write("Tracker", TObject::kOverwrite); |
736 |
|
|
if( t_level2 )t_level2->Delete(); //delete new tree from memory |
737 |
pam-fi |
1.13 |
|
738 |
|
|
}; |
739 |
pam-fi |
1.45 |
// extended-tracking //EV |
740 |
|
|
if(p->gete){ |
741 |
|
|
if( t_ext_clone )t_ext_clone->Delete("all");//delete old tree from file |
742 |
|
|
f2->Write("ExtTracks", TObject::kOverwrite); |
743 |
|
|
if( t_ext )t_ext->Delete(); //delete new tree from memory |
744 |
|
|
|
745 |
|
|
}; |
746 |
|
|
|
747 |
pam-fi |
1.24 |
if(f0) if(f0->IsOpen()) f0->Close(); |
748 |
|
|
// if( f0_c->IsOpen() )f0_c->Close(); |
749 |
pam-fi |
1.13 |
|
750 |
|
|
// lh_event->Delete(); |
751 |
|
|
l1_event->Delete(); |
752 |
|
|
l2_event->Delete(); |
753 |
|
|
l2_clone->Delete(); |
754 |
pam-fi |
1.2 |
|
755 |
pam-fi |
1.45 |
trk_array->Delete(); |
756 |
|
|
// trk_array_clone->Delete(); |
757 |
|
|
|
758 |
pam-fi |
1.2 |
return(p->ostatus); |
759 |
mocchiut |
1.1 |
} |
760 |
|
|
|