1 |
/** |
2 |
* FTrkQLook_EXPERT.cxx |
3 |
* |
4 |
* autor: D.Fedele |
5 |
* version v1r06 |
6 |
* Parameters: |
7 |
* file - the data file to analyze |
8 |
* fromevent - first event to analyze |
9 |
* toevent - last event to analyze |
10 |
* outdir - total path of output file |
11 |
* outfile - extension of output file (pdf,ps,gif,jpg) |
12 |
* |
13 |
* |
14 |
*/ |
15 |
// |
16 |
#include <fstream> |
17 |
// |
18 |
#include <TPaveText.h> |
19 |
#include <TLatex.h> |
20 |
#include <TCanvas.h> |
21 |
#include <TGraph.h> |
22 |
#include <TFile.h> |
23 |
#include <TTree.h> |
24 |
#include <TStyle.h> |
25 |
// |
26 |
#include <physics/tracker/TrackerEvent.h> |
27 |
#include <PscuHeader.h> |
28 |
#include <EventHeader.h> |
29 |
#include <RunHeaderEvent.h> |
30 |
#include <TrkAlarmEvent.h> |
31 |
#include <tsbt/TsbTRecord.h> |
32 |
#include <tsbt/TsbTEvent.h> |
33 |
#include <EventCounter.h> |
34 |
#include <PacketType.h> |
35 |
// |
36 |
#define MAXSTORAGE 50000 |
37 |
|
38 |
void FTrkQLook_EXPERT(TString file,Int_t fromevent,Int_t toevent, TString outdir, TString outfile) |
39 |
{ |
40 |
// |
41 |
// obtain information about the data file and select the output dir |
42 |
Int_t dwpos = file.Last('/'); |
43 |
Int_t dwpos1 = file.Last('.'); |
44 |
TString base,ffile ; |
45 |
ffile=file(dwpos+1,dwpos1-(dwpos+1)); |
46 |
if(dwpos>0) base=file(0,dwpos); |
47 |
|
48 |
TString out; |
49 |
if(outdir.Length()==0){ |
50 |
out = base; |
51 |
}else{ |
52 |
out = outdir; |
53 |
} |
54 |
if(out.Last('/')+1<out.Length()) out+="/"; |
55 |
|
56 |
// |
57 |
// inizialise the variables and open the file |
58 |
pamela::TsbTEvent *event = 0; |
59 |
pamela::TsbTRecord *record = 0; |
60 |
pamela::tracker::TrackerEvent *te=0; |
61 |
pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0; |
62 |
pamela::PscuHeader *ph=0,*pH=0; |
63 |
pamela::TrkAlarmEvent *al=0; |
64 |
pamela::RunHeaderEvent *reh=0; |
65 |
pamela::EventCounter *cod=0; |
66 |
|
67 |
pamela::PacketType *pctp=0; |
68 |
|
69 |
TFile *datafile = new TFile(file); |
70 |
if ( !datafile ){ |
71 |
printf("No data file, exiting...\n"); |
72 |
return; |
73 |
} |
74 |
|
75 |
TTree *tree = (TTree*)datafile->Get("TsbT"); |
76 |
tree->SetBranchAddress("TsbT",&event); |
77 |
tree->SetBranchAddress("Header",&eT); |
78 |
|
79 |
TTree *altr = (TTree*)datafile->Get("TrkAlarm"); |
80 |
altr->SetBranchAddress("TrkAlarm",&al); |
81 |
altr->SetBranchAddress("Header",&aleh); |
82 |
|
83 |
TTree *tr = (TTree*)datafile->Get("Physics"); |
84 |
tr->SetBranchAddress("Tracker",&te); |
85 |
tr->SetBranchAddress("Header",&eh); |
86 |
|
87 |
TTree *otr = (TTree*)datafile->Get("RunHeader"); |
88 |
otr->SetBranchAddress("Header",&eH); |
89 |
otr->SetBranchAddress("RunHeader",&reh); |
90 |
|
91 |
Long64_t nevent = tr->GetEntries(); |
92 |
Long64_t neventH = otr->GetEntries(); |
93 |
Long64_t tnevent = tree->GetEntries(); |
94 |
Long64_t alnevent = altr->GetEntries(); |
95 |
Int_t minevent=0; |
96 |
Int_t maxevent=0; |
97 |
|
98 |
printf("Number of total events: %lld\n",nevent); |
99 |
printf("Number of header events: %lld\n",neventH); |
100 |
printf("Number of TsbT events: %lld\n",tnevent); |
101 |
printf("Number of TrkAlarm packet events: %lld\n",alnevent); |
102 |
|
103 |
if (nevent<=0){ |
104 |
datafile->Close(); |
105 |
return; |
106 |
} |
107 |
if ( fromevent > toevent && toevent>0 ){ |
108 |
printf("It must be fromevent < toevent \n"); |
109 |
return; |
110 |
} |
111 |
if ( fromevent > nevent || fromevent < 0 ) { |
112 |
printf("You can choose fromevent between 0 (all) and %lld \n",nevent); |
113 |
return; |
114 |
} |
115 |
if ( toevent > nevent || toevent < 0 ) { |
116 |
printf("You can choose toevent between 0 (all) and %lld \n",nevent); |
117 |
return; |
118 |
} |
119 |
if ( fromevent == 0 ) { |
120 |
minevent = 0; |
121 |
maxevent = nevent; |
122 |
} else { |
123 |
minevent = fromevent; |
124 |
if ( toevent > 0 ){ |
125 |
maxevent = toevent+1; |
126 |
} else if (toevent > nevent) { |
127 |
maxevent = nevent; |
128 |
} else { |
129 |
maxevent = toevent+1; |
130 |
} |
131 |
nevent=maxevent-minevent ; |
132 |
} |
133 |
|
134 |
// |
135 |
// information about the RunHeader |
136 |
ULong64_t HOBT[neventH]; |
137 |
Int_t trk_cal_us[neventH]; |
138 |
for (Int_t vi=0; vi<neventH;vi++){ |
139 |
HOBT[vi]=0; |
140 |
trk_cal_us[vi]=0; |
141 |
} |
142 |
for (Int_t ev=0; ev<neventH; ev++){ |
143 |
otr->GetEntry(ev); |
144 |
pH = eH->GetPscuHeader(); |
145 |
HOBT[ev]= pH->GetOrbitalTime(); |
146 |
trk_cal_us[ev]=reh->TRK_CALIB_USED; |
147 |
} |
148 |
|
149 |
// |
150 |
// other variables definitions |
151 |
stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit; |
152 |
Int_t ALARM=0; |
153 |
Int_t WARNING[12]; |
154 |
|
155 |
// |
156 |
// information about the entries for the temperatures |
157 |
Int_t tmpSize=0,siztmp=0,maxsize=0; |
158 |
for (Int_t ev=0; ev<tnevent; ev++){ |
159 |
tree->GetEntry(ev); |
160 |
tmpSize = event->Records->GetEntries(); |
161 |
maxsize+=tmpSize; |
162 |
} |
163 |
const Int_t tsize=maxsize; |
164 |
Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize]; |
165 |
Int_t countnboot=1; |
166 |
// |
167 |
// information about the temperatures |
168 |
for (Int_t ev=0; ev<tnevent; ev++){ |
169 |
tree->GetEntry(ev); |
170 |
tmpSize = event->Records->GetEntries(); |
171 |
for (Int_t j = 0; j < tmpSize; j++){ |
172 |
record = (pamela::TsbTRecord*)event->Records->At(j); |
173 |
xt[siztmp]=record->RECORD_OBT; |
174 |
if((xt[siztmp]<xt[siztmp-1]) && siztmp>0) |
175 |
countnboot+=1; |
176 |
|
177 |
for (Int_t z = 0; z < 5; z++){ |
178 |
tempt[siztmp][z] = record->TEMPERATURES[z+1]; |
179 |
} |
180 |
siztmp++; |
181 |
} |
182 |
} |
183 |
countnboot+=2*(Int_t)nevent/MAXSTORAGE; |
184 |
// printf("\ncountnboot=%d\n",countnboot); |
185 |
|
186 |
// |
187 |
// open the output text files for the alarms |
188 |
TString fname1 = out+ffile; |
189 |
TString fname = out+ffile; |
190 |
int slen=fname.Length(); |
191 |
int last=fname.Last('_'); |
192 |
if(last<(slen-1))fname.Append('_'); |
193 |
fname.Append("FTrk-DSP-report.txt"); |
194 |
ofstream alarm(fname,ios::out); |
195 |
alarm << "TRACKER DSP REPORT - Downlink " << ffile<< endl; |
196 |
fname1.Append("_FTrkAlarm-pkt-report.txt"); |
197 |
ofstream alarm1(fname1,ios::out); |
198 |
alarm1 << "TrkAlarm pkt REPORT - Downlink " << ffile<< endl; |
199 |
|
200 |
// |
201 |
// write the file for the TrkAlarm packet |
202 |
if(alnevent==0) alarm1 <<endl<< "------> NO ALARM!!! <-------"<< endl; |
203 |
else{ |
204 |
Long64_t obt=0; |
205 |
for (Int_t ev=0; ev<alnevent; ev++){ |
206 |
altr->GetEntry(ev); |
207 |
ph = aleh->GetPscuHeader(); |
208 |
|
209 |
if(ph->GetOrbitalTime()<obt && ev>0) |
210 |
alarm1<<endl<<"NEW CPU BOOT"<<endl; |
211 |
obt=ph->GetOrbitalTime(); |
212 |
|
213 |
alarm1 << "================================================="<< endl; |
214 |
alarm1 << "PSCU-Pkt N. "<< ph->GetCounter() ; |
215 |
alarm1 << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl; |
216 |
alarm1 << "(ROOT-tree entry "<<ev<<")"<<endl; |
217 |
alarm1 << "================================================="<< endl<<endl; |
218 |
|
219 |
alarm1 << "Alarm variables (range 0-1)"<<endl; |
220 |
alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[1]<<endl; |
221 |
alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[2]<<endl; |
222 |
alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl; |
223 |
alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl; |
224 |
alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl; |
225 |
alarm1 << " FlashShutdown= 0x"<< (Int_t)al->FlashShutdown<<endl; |
226 |
alarm1 << " FlashUpset= 0x"<< (Int_t)al->FlashUpset<<endl; |
227 |
alarm1 << " InterCheck= 0x"<< (Int_t)al->InterCheck<<endl; |
228 |
alarm1 << " UnknownCmd= 0x"<<(Int_t)al->UnknownCmd<<endl<<endl; |
229 |
|
230 |
alarm1 << "Alarm variables (range 0-3F)"<<endl; |
231 |
alarm1 << " CmdIDMA= 0x"<< (Int_t)al->CmdIDMA<<endl; |
232 |
alarm1 << " DSPSoft= 0x"<< (Int_t)al->DSPSoft<<endl; |
233 |
alarm1 << " TrigIDMA= 0x"<< (Int_t)al->TrigIDMA<<endl<<endl; |
234 |
|
235 |
alarm1 << "Control variables (range 0-3F)"<<endl; |
236 |
alarm1 << " DSPBusy= 0x"<< (Int_t)al->DSPBusy<<endl; |
237 |
alarm1 << " DSPMask= 0x"<< (Int_t)al->DSPMask<<endl<<endl; |
238 |
|
239 |
alarm1 << "Control variables (range 0-1)"<<endl; |
240 |
alarm1 << " FlashOn= 0x"<< (Int_t)al->FlashOn<<endl<<endl; |
241 |
|
242 |
alarm1 << "Control variables (range 0-3)"<<endl; |
243 |
alarm1 << " TrigMask= 0x"<< (Int_t)al->TrigMask<<endl<<endl; |
244 |
|
245 |
alarm1 << "Control bits fixed"<<endl; |
246 |
alarm1 << " Aswr= 0x"<< (Int_t)al->Aswr<<endl; |
247 |
alarm1 << " BID[1]= 0x"<< (Int_t)al->BID[0]<<endl; |
248 |
alarm1 << " BID[2]= 0x"<< (Int_t)al->BID[1]<<endl; |
249 |
alarm1 << " BID[3]= 0x"<< (Int_t)al->BID[2]<<endl; |
250 |
alarm1 << " BID[4]= 0x"<< (Int_t)al->BID[3]<<endl; |
251 |
alarm1 << " BID[5]= 0x"<< (Int_t)al->BID[4]<<endl; |
252 |
alarm1 << " BID[6]= 0x"<< (Int_t)al->BID[5]<<endl; |
253 |
alarm1 << " BID[7]= 0x"<< (Int_t)al->BID[6]<<endl; |
254 |
alarm1 << " CmdNum= 0x"<< (Int_t)al->CmdNum<<endl; |
255 |
alarm1 << " PNum= 0x"<< (Int_t)al->PNum<< dec <<endl; |
256 |
|
257 |
alarm1 << "================================================="<< endl<<endl; |
258 |
|
259 |
} |
260 |
} |
261 |
|
262 |
// |
263 |
// Set Style options |
264 |
gStyle->SetLabelSize(0.05,"x"); |
265 |
gStyle->SetLabelSize(0.06,"y"); |
266 |
gStyle->SetStatFontSize(0.075); |
267 |
gStyle->SetOptStat(1110); |
268 |
gStyle->SetFillColor(10); |
269 |
gStyle->SetStatColor(10); |
270 |
gStyle->SetTitleFillColor(10); |
271 |
gStyle->SetTitleFontSize(0.1); |
272 |
gStyle->SetTitleOffset(0.8,"y"); |
273 |
gStyle->SetTitleOffset(0.9,"x"); |
274 |
gStyle->SetTitleSize(0.06,"y"); |
275 |
gStyle->SetTitleSize(0.055,"x"); |
276 |
|
277 |
// |
278 |
// Define output canvas, histos and graphs |
279 |
TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[countnboot]; |
280 |
TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3; |
281 |
|
282 |
TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12]; |
283 |
TGraph *comprtime[12][countnboot],*temp[5][countnboot],*eventnumb[countnboot]; |
284 |
TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5]; |
285 |
|
286 |
for(Int_t n = 0; n<12; n++) { |
287 |
|
288 |
/* -----------> HISTOGRAMS */ |
289 |
|
290 |
tit<<"DSP "<<n+1; |
291 |
oss1<<"DSP "<<n+1; |
292 |
oss2<<"DSPh "<<n+1; |
293 |
oss3<<"DSP h "<<n+1; |
294 |
oss4<<"DSP h"<<n+1; |
295 |
|
296 |
landau1[n]= new TH1F(oss1.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
297 |
landau2[n]= new TH1F(oss2.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
298 |
landau3[n]= new TH1F(oss3.str().c_str(),tit.str().c_str(),401,-0.5,1200.5); |
299 |
|
300 |
illuminazione[n]= new TH1F(oss4.str().c_str(),tit.str().c_str(),3073,-0.5,3072.5); |
301 |
|
302 |
tit.str(""); |
303 |
oss1.str(""); |
304 |
oss2.str(""); |
305 |
oss3.str(""); |
306 |
oss4.str(""); |
307 |
}; |
308 |
|
309 |
|
310 |
//*************************************************************************************** |
311 |
// LOOP on each event |
312 |
//*************************************************************************************** |
313 |
|
314 |
if (fromevent!=0) |
315 |
printf("\n Scan of events from %i to %i ... \n",minevent,maxevent-1); |
316 |
else |
317 |
printf("\n Scan of events from %i to %i ... \n",minevent+1,maxevent); |
318 |
|
319 |
TLatex *t=new TLatex(); |
320 |
TLatex *t1=new TLatex(); |
321 |
|
322 |
Int_t cntpgtemp=0,cntpgdat=0; |
323 |
Int_t minev=minevent,maxev=maxevent,countTEMP=0; |
324 |
|
325 |
// |
326 |
// Fill temperature graphs |
327 |
for(Int_t ii=0; ii<countnboot;ii++){ |
328 |
//**************************************************************************************** |
329 |
//Temperature Output Pages |
330 |
//**************************************************************************************** |
331 |
fromfile.str(""); |
332 |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
333 |
isfile<<"Temperatures vs OBT pag"<<ii+1; |
334 |
TempCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
335 |
TempCanv[ii]->SetFillColor(10); |
336 |
TempCanv[ii]->Range(0,0,100,100); |
337 |
|
338 |
t->SetTextFont(32); |
339 |
t->SetTextColor(1); |
340 |
t->SetTextAlign(12); |
341 |
t->SetTextSize(0.02); |
342 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
343 |
t1->SetTextFont(32); |
344 |
t1->SetTextColor(1); |
345 |
t1->SetTextAlign(12); |
346 |
t1->SetTextSize(0.02); |
347 |
t1->DrawLatex(78.,98.7,isfile.str().c_str()); |
348 |
isfile.str(""); |
349 |
|
350 |
Float_t tposy = 0.95; // up y-coord - top pads |
351 |
Float_t thpad = 0; // pad height |
352 |
Float_t tposx1=0; // left x-coord - pad column |
353 |
Float_t tposx0=0; // x-coord - column division |
354 |
Float_t twrel = 0; // relative x size of first sub-column |
355 |
Float_t tmarg = 0.004; // margin among pads |
356 |
|
357 |
thpad = (tposy-tmarg*5)/3; |
358 |
twrel = (1-tmarg*4)/2; |
359 |
|
360 |
for(Int_t i=0; i<5; i++){ |
361 |
if ( (i+1)%2==1 ) { |
362 |
if(i>1) tposy = tposy-(tmarg*2+thpad); |
363 |
tposx1 = tmarg; |
364 |
tposx0 = tposx1 + twrel; |
365 |
} |
366 |
else { |
367 |
tposx1 = tposx0 + 2*tmarg; |
368 |
tposx0 = tposx1 + twrel; |
369 |
} |
370 |
|
371 |
/* -----------> pad for histograms */ |
372 |
pad6[i] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0); |
373 |
|
374 |
Int_t v=0,xt_tmp[tsize]; |
375 |
for (Int_t ev=countTEMP; ev<tsize; ev++){ |
376 |
|
377 |
if(ev==tsize-1 && i==4) countTEMP=tsize-1; |
378 |
if(xt[ev]<xt[ev-1] && ev>countTEMP){ |
379 |
if(i==4) countTEMP=ev; |
380 |
break; |
381 |
} |
382 |
else{ |
383 |
if(tempt[ev][i]!=65535){ |
384 |
tempt_tmp[v]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231); |
385 |
if(tempt_tmp[v]>0) xt_tmp[v++]=xt[ev]; |
386 |
} |
387 |
} |
388 |
} |
389 |
TempCanv[ii]->cd(); |
390 |
tit<<"T"<<i+5<<" (magnetic module "<<i+1<<")"; |
391 |
pad6[i]->SetFillColor(10); |
392 |
pad6[i]->Draw(); |
393 |
pad6[i]->cd(); |
394 |
temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp); |
395 |
temp[i][ii]->SetTitle(tit.str().c_str()); |
396 |
temp[i][ii]->GetXaxis()->SetLabelSize(0.04); |
397 |
temp[i][ii]->GetXaxis()->SetTitleSize(0.04); |
398 |
temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)"); |
399 |
temp[i][ii]->GetXaxis()->CenterTitle(); |
400 |
temp[i][ii]->GetXaxis()->SetTitleOffset(0.85); |
401 |
temp[i][ii]->GetYaxis()->SetTitleOffset(1.2); |
402 |
temp[i][ii]->GetYaxis()->SetLabelOffset(0.001); |
403 |
temp[i][ii]->GetYaxis()->SetLabelSize(0.04); |
404 |
temp[i][ii]->GetYaxis()->SetTitleSize(0.04); |
405 |
temp[i][ii]->GetYaxis()->SetTitle("Temperatures ( ^{o}C)"); |
406 |
temp[i][ii]->GetYaxis()->CenterTitle(); |
407 |
temp[i][ii]->SetMarkerStyle(21); |
408 |
temp[i][ii]->SetMarkerSize(0.2); |
409 |
temp[i][ii]->Draw("ap"); |
410 |
tit.str(""); |
411 |
TempCanv[ii]->Update(); |
412 |
|
413 |
} |
414 |
if(countTEMP==tsize-1){ |
415 |
cntpgtemp=ii+1; |
416 |
break; |
417 |
} |
418 |
} |
419 |
|
420 |
|
421 |
// |
422 |
// Fill compressiontime and eventnumber graphs and DSP warnings |
423 |
for(Int_t ii=0; ii<countnboot;ii++){ |
424 |
TPad *pt; //pad for histos |
425 |
|
426 |
//**************************************************************************************** |
427 |
//COMPRESSIONTIME vs. OBT Output Pages |
428 |
//**************************************************************************************** |
429 |
fromfile.str(""); |
430 |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
431 |
isfile<<"COMPRESSIONTIME vs. OBT pag"<<ii+1; |
432 |
CompTimeCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
433 |
CompTimeCanv[ii]->SetFillColor(10); |
434 |
CompTimeCanv[ii]->Range(0,0,100,100); |
435 |
t->SetTextFont(32); |
436 |
t->SetTextColor(1); |
437 |
t->SetTextAlign(12); |
438 |
t->SetTextSize(0.02); |
439 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
440 |
t1->SetTextFont(32); |
441 |
t1->SetTextColor(1); |
442 |
t1->SetTextAlign(12); |
443 |
t1->SetTextSize(0.02); |
444 |
t1->DrawLatex(62.,98.7,isfile.str().c_str()); |
445 |
isfile.str(""); |
446 |
|
447 |
//**************************************************************************************** |
448 |
//DSP EVENT NUMBER Output Pages |
449 |
//**************************************************************************************** |
450 |
|
451 |
isfile<<"DSP EVENT NUMBER vs. OBT pag"<<ii+1; |
452 |
EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
453 |
EventNumCanv[ii]->SetFillColor(10); |
454 |
EventNumCanv[ii]->Range(0,0,100,100); |
455 |
t->SetTextFont(32); |
456 |
t->SetTextColor(1); |
457 |
t->SetTextAlign(12); |
458 |
t->SetTextSize(0.02); |
459 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
460 |
t1->SetTextFont(32); |
461 |
t1->SetTextColor(1); |
462 |
t1->SetTextAlign(12); |
463 |
t1->SetTextSize(0.02); |
464 |
t1->DrawLatex(62.,98.7,isfile.str().c_str()); |
465 |
isfile.str(""); |
466 |
|
467 |
Float_t posy = 0.95; // up y-coord - top pads |
468 |
Float_t hpad = 0; // pad height |
469 |
Float_t posx1=0; // left x-coord - pad column |
470 |
Float_t posx0=0; // x-coord - column division |
471 |
Float_t wrel = 0; // relative x size of first sub-column |
472 |
Float_t marg = 0.004; // margin among pads |
473 |
|
474 |
hpad = (posy-marg*11)/6; |
475 |
wrel = (1-marg*4)/2; |
476 |
|
477 |
for(Int_t n = 0; n<12; n++) { |
478 |
|
479 |
if ( (n+1)%2==1 ) { |
480 |
if(n>1) posy = posy-(marg*2+hpad); |
481 |
posx1 = marg; |
482 |
posx0 = posx1 + wrel; |
483 |
} |
484 |
else { |
485 |
posx1 = posx0 + 2*marg; |
486 |
posx0 = posx1 + wrel; |
487 |
} |
488 |
|
489 |
/* -----------> pad for histograms */ |
490 |
pad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
491 |
pad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
492 |
pad3[n] = new TPad("pad3"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
493 |
pad4[n] = new TPad("pad4"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
494 |
pad5[n] = new TPad("pad5"," ",posx1,posy-hpad,posx0,posy,18,0,0); |
495 |
} |
496 |
|
497 |
// |
498 |
// Obtain information about the tracker data |
499 |
// and fill graphs and histos |
500 |
|
501 |
Int_t al=0; |
502 |
Float_t x[MAXSTORAGE]; |
503 |
Float_t yc[MAXSTORAGE][12]; |
504 |
Float_t eventint[MAXSTORAGE]; |
505 |
Int_t eventn[12]; |
506 |
|
507 |
for (Int_t ev=minev; ev<maxevent; ev++){ |
508 |
tr->GetEntry(ev); |
509 |
ph = eh->GetPscuHeader(); |
510 |
cod = eh->GetCounter(); |
511 |
|
512 |
|
513 |
if(ev==maxevent-1) maxev=maxevent-1; |
514 |
|
515 |
if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==MAXSTORAGE){ |
516 |
maxev=ev; |
517 |
break; |
518 |
} |
519 |
else{ |
520 |
x[(ev-minev)]= ph->GetOrbitalTime(); |
521 |
ALARM=0; |
522 |
|
523 |
Int_t dsp=0; |
524 |
for(Int_t i=0; i<12; i++){ |
525 |
if(te->DSPnumber[i]<1 || te->DSPnumber[i]>12) { |
526 |
ALARM=1; |
527 |
break; |
528 |
} |
529 |
|
530 |
dsp=te->DSPnumber[i]-1; |
531 |
yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i]; |
532 |
|
533 |
// |
534 |
// Fill Cluster Signal and Lighting of the view histos |
535 |
for(Int_t j=0;j<3;j++){ |
536 |
if(te->signcluster[i][j]!=0){ |
537 |
if((te->addrcluster[i][j]>6 && te->addrcluster[i][j]<505) ||(te->addrcluster[i][j]>518 && te->addrcluster[i][j]<1018)){ |
538 |
illuminazione[dsp]->Fill((Float_t)((j*1024.)+te->addrcluster[i][j])); |
539 |
} |
540 |
} |
541 |
} |
542 |
if(trk_cal_us[cod->Get(pctp->RunHeader)]!=104){ |
543 |
if(!(dsp%2)){ |
544 |
if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)(1024.-te->signcluster[i][0])); |
545 |
if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)(1024.-te->signcluster[i][1])); |
546 |
if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)(1024.-te->signcluster[i][2])); |
547 |
} |
548 |
else{ |
549 |
if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)te->signcluster[i][0]); |
550 |
if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)te->signcluster[i][1]); |
551 |
if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)te->signcluster[i][2]); |
552 |
} |
553 |
} |
554 |
|
555 |
WARNING[i]=0; |
556 |
if(te->fc[i]!=0 || te->fl1[i]!=0 || te->fl2[i]!=0 || te->fl3[i]!=0 || te->fl4[i]!=0 || te->fl5[i]!=0 || te->fl6[i]!=0){ |
557 |
ALARM = 1; //general alarm |
558 |
WARNING[i] = 1; // DSP warning |
559 |
}; |
560 |
|
561 |
if(te->alarm[i]!=0){ // hardware alarm |
562 |
ALARM = 1; |
563 |
}; |
564 |
|
565 |
//************************************************************************************** |
566 |
// warning for internal number |
567 |
//************************************************************************************** |
568 |
if(i<=10 && te->eventn[i]!=te->eventn[i+1]) ALARM=1; |
569 |
if((ev-minev)>=1 && eventn[i]+1!=te->eventn[i] && te->eventn[i]!=1) ALARM=1; |
570 |
} |
571 |
eventint[(ev-minev)]=te->eventn[0]; |
572 |
|
573 |
//******************************************************************************************** |
574 |
// file DSP warning |
575 |
//******************************************************************************************** |
576 |
|
577 |
if(ALARM==1) { |
578 |
al=1; |
579 |
alarm <<endl<< "================================================="<< endl; |
580 |
alarm << "PSCU-Pkt N. "<< ph->GetCounter() ; |
581 |
alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl; |
582 |
alarm << "Total events "<<nevent<<endl; |
583 |
alarm << "(ROOT-tree entry "<<ev<<" in page "<<ii+1<<" )"<<endl; |
584 |
alarm << "================================================="<< endl; |
585 |
|
586 |
alarm << " DSPn"; |
587 |
alarm << " Counter"; |
588 |
alarm << " previous"; |
589 |
alarm << " Words"; |
590 |
alarm << " crc"; |
591 |
alarm << " FC"; |
592 |
alarm << " FL1"; |
593 |
alarm << " FL2"; |
594 |
alarm << " FL3"; |
595 |
alarm << " FL4"; |
596 |
alarm << " FL5"; |
597 |
alarm << " FL6" << endl; |
598 |
|
599 |
for(Int_t i=0; i<12 ; i++){ |
600 |
alarm.width(5); alarm << te->DSPnumber[i]; |
601 |
alarm.width(8); alarm << te->eventn[i]; |
602 |
alarm.width(8); alarm << eventn[i]; |
603 |
alarm.width(6); alarm << te->DATAlength[i]; |
604 |
alarm.width(4); alarm << te->crc[i]; |
605 |
alarm.width(4); alarm << te->fc[i]; |
606 |
alarm.width(4); alarm << te->fl1[i]; |
607 |
alarm.width(4); alarm << te->fl2[i]; |
608 |
alarm.width(4); alarm << te->fl3[i]; |
609 |
alarm.width(4); alarm << te->fl4[i]; |
610 |
alarm.width(4); alarm << te->fl5[i]; |
611 |
alarm.width(4); alarm << te->fl6[i]; |
612 |
if(te->alarm[i]!=0)alarm<<" >> ALARM "; |
613 |
if(WARNING[i]!=0)alarm<<" (DSP warning) "; |
614 |
alarm << endl; |
615 |
} |
616 |
} |
617 |
for(Int_t i=0; i<12 ; i++) |
618 |
eventn[i]=te->eventn[i]; |
619 |
} |
620 |
} |
621 |
if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------> NO ALARM!!! <-------"<<endl; |
622 |
|
623 |
// |
624 |
// Draw the graphs |
625 |
for (Int_t i=0; i<12 ; i++){ |
626 |
Float_t yyc[maxev-minev]; |
627 |
for (Int_t v=0; v<maxev-minev; v++){ |
628 |
yyc[v]=yc[v][i]; |
629 |
} |
630 |
|
631 |
CompTimeCanv[ii]->cd(); |
632 |
pad3[i]->SetFillColor(10); |
633 |
pad3[i]->SetFrameFillColor(10); |
634 |
pad3[i]->Draw(); |
635 |
pad3[i]->cd(); |
636 |
comprtime[i][ii]= new TGraph(maxev-minev,x,yyc); |
637 |
oss1<<"DSP "<<i+1; |
638 |
comprtime[i][ii]->SetTitle(oss1.str().c_str()); |
639 |
comprtime[i][ii]->GetXaxis()->SetTitle("OBT (ms)"); |
640 |
comprtime[i][ii]->GetXaxis()->CenterTitle(); |
641 |
comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)"); |
642 |
comprtime[i][ii]->GetYaxis()->CenterTitle(); |
643 |
comprtime[i][ii]->GetYaxis()->SetRangeUser(0,3); |
644 |
comprtime[i][ii]->Draw("ap"); |
645 |
oss1.str(""); |
646 |
CompTimeCanv[ii]->Update(); |
647 |
} |
648 |
|
649 |
EventNumCanv[ii]->cd(); |
650 |
pt = new TPad("pt"," ",0.02,0.01,1.,0.98,18,0,0); |
651 |
pt->SetFillColor(10); |
652 |
pt->SetFrameFillColor(10); |
653 |
pt->Draw(); |
654 |
pt->cd(); |
655 |
eventnumb[ii]=new TGraph(maxev-minev,x,eventint); |
656 |
eventnumb[ii]->SetTitle(""); |
657 |
eventnumb[ii]->GetXaxis()->SetLabelSize(0.02); |
658 |
eventnumb[ii]->GetXaxis()->SetTitleSize(0.03); |
659 |
eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)"); |
660 |
eventnumb[ii]->GetXaxis()->CenterTitle(); |
661 |
eventnumb[ii]->GetXaxis()->SetTickLength(0.01); |
662 |
eventnumb[ii]->GetXaxis()->SetTitleOffset(1.1); |
663 |
eventnumb[ii]->GetYaxis()->SetLabelSize(0.02); |
664 |
eventnumb[ii]->GetYaxis()->SetTitleSize(0.03); |
665 |
eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number"); |
666 |
eventnumb[ii]->GetYaxis()->CenterTitle(); |
667 |
eventnumb[ii]->GetYaxis()->SetTitleOffset(2.); |
668 |
eventnumb[ii]->SetMarkerStyle(21); |
669 |
eventnumb[ii]->SetMarkerColor(kBlue); |
670 |
eventnumb[ii]->SetMarkerSize(0.2); |
671 |
eventnumb[ii]->Draw("ap"); |
672 |
EventNumCanv[ii]->Update(); |
673 |
|
674 |
minev=maxev; |
675 |
if(maxev==maxevent-1) { |
676 |
cntpgdat=ii+1; |
677 |
break; |
678 |
} |
679 |
|
680 |
} |
681 |
|
682 |
|
683 |
alarm.close(); |
684 |
|
685 |
//**************************************************************************************** |
686 |
//Cluster Signal ladder1 Output Pages |
687 |
//**************************************************************************************** |
688 |
|
689 |
fromfile.str(""); |
690 |
fromfile<<"FTrkQLook_EXPERT File: "<<ffile; |
691 |
isfile<<"Cluster Signal ladder1"; |
692 |
LandauCanv1=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
693 |
LandauCanv1->SetFillColor(10); |
694 |
LandauCanv1->Range(0,0,100,100); |
695 |
|
696 |
t->SetTextFont(32); |
697 |
t->SetTextColor(1); |
698 |
t->SetTextAlign(12); |
699 |
t->SetTextSize(0.02); |
700 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
701 |
t1->SetTextFont(32); |
702 |
t1->SetTextColor(1); |
703 |
t1->SetTextAlign(12); |
704 |
t1->SetTextSize(0.02); |
705 |
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
706 |
isfile.str(""); |
707 |
|
708 |
//**************************************************************************************** |
709 |
//Cluster Signal ladder2 Output Pages |
710 |
//**************************************************************************************** |
711 |
|
712 |
isfile<<"Cluster Signal ladder2"; |
713 |
LandauCanv2=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
714 |
LandauCanv2->SetFillColor(10); |
715 |
LandauCanv2->Range(0,0,100,100); |
716 |
|
717 |
t->SetTextFont(32); |
718 |
t->SetTextColor(1); |
719 |
t->SetTextAlign(12); |
720 |
t->SetTextSize(0.02); |
721 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
722 |
t1->SetTextFont(32); |
723 |
t1->SetTextColor(1); |
724 |
t1->SetTextAlign(12); |
725 |
t1->SetTextSize(0.02); |
726 |
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
727 |
isfile.str(""); |
728 |
|
729 |
//**************************************************************************************** |
730 |
//Cluster Signal ladder3 Output Pages |
731 |
//**************************************************************************************** |
732 |
|
733 |
isfile<<"Cluster Signal ladder3"; |
734 |
LandauCanv3=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
735 |
LandauCanv3->SetFillColor(10); |
736 |
LandauCanv3->Range(0,0,100,100); |
737 |
|
738 |
t->SetTextFont(32); |
739 |
t->SetTextColor(1); |
740 |
t->SetTextAlign(12); |
741 |
t->SetTextSize(0.02); |
742 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
743 |
t1->SetTextFont(32); |
744 |
t1->SetTextColor(1); |
745 |
t1->SetTextAlign(12); |
746 |
t1->SetTextSize(0.02); |
747 |
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
748 |
isfile.str(""); |
749 |
|
750 |
//**************************************************************************************** |
751 |
//Lighting of the views Output Pages |
752 |
//**************************************************************************************** |
753 |
|
754 |
isfile<<"lighting of the views"; |
755 |
IlluminaCanv=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200); |
756 |
IlluminaCanv->SetFillColor(10); |
757 |
IlluminaCanv->Range(0,0,100,100); |
758 |
t->SetTextFont(32); |
759 |
t->SetTextColor(1); |
760 |
t->SetTextAlign(12); |
761 |
t->SetTextSize(0.02); |
762 |
t->DrawLatex(2.,98.7,fromfile.str().c_str()); |
763 |
t1->SetTextFont(32); |
764 |
t1->SetTextColor(1); |
765 |
t1->SetTextAlign(12); |
766 |
t1->SetTextSize(0.02); |
767 |
t1->DrawLatex(70.,98.7,isfile.str().c_str()); |
768 |
isfile.str(""); |
769 |
|
770 |
// |
771 |
// Draw the histos |
772 |
for (Int_t i=0; i<12 ; i++){ |
773 |
|
774 |
TBox b; |
775 |
b.SetFillColor(6); |
776 |
b.SetFillStyle(3945); |
777 |
|
778 |
Float_t maxhist=0; |
779 |
LandauCanv1->cd(); |
780 |
pad1[i]->SetFillColor(10); |
781 |
pad1[i]->SetFrameFillColor(10); |
782 |
pad1[i]->Draw(); |
783 |
pad1[i]->cd(); |
784 |
landau1[i]->GetXaxis()->SetTitle("max signal"); |
785 |
landau1[i]->GetXaxis()->CenterTitle(); |
786 |
landau1[i]->Draw(""); |
787 |
LandauCanv1->Update(); |
788 |
|
789 |
LandauCanv2->cd(); |
790 |
pad4[i]->SetFillColor(10); |
791 |
pad4[i]->SetFrameFillColor(10); |
792 |
pad4[i]->Draw(); |
793 |
pad4[i]->cd(); |
794 |
landau2[i]->GetXaxis()->SetTitle("max signal"); |
795 |
landau2[i]->GetXaxis()->CenterTitle(); |
796 |
landau2[i]->Draw(""); |
797 |
LandauCanv2->Update(); |
798 |
|
799 |
LandauCanv3->cd(); |
800 |
pad5[i]->SetFillColor(10); |
801 |
pad5[i]->SetFrameFillColor(10); |
802 |
pad5[i]->Draw(); |
803 |
pad5[i]->cd(); |
804 |
landau3[i]->GetXaxis()->SetTitle("max signal"); |
805 |
landau3[i]->GetXaxis()->CenterTitle(); |
806 |
landau3[i]->Draw(""); |
807 |
LandauCanv3->Update(); |
808 |
|
809 |
IlluminaCanv->cd(); |
810 |
pad2[i]->SetFillColor(10); |
811 |
pad2[i]->SetFrameFillColor(10); |
812 |
pad2[i]->SetLogy(); |
813 |
pad2[i]->Draw(); |
814 |
pad2[i]->cd(); |
815 |
illuminazione[i]->GetXaxis()->SetTitle("strip with max signal"); |
816 |
illuminazione[i]->GetXaxis()->CenterTitle(); |
817 |
illuminazione[i]->Draw(""); |
818 |
if(i==1){ |
819 |
maxhist= illuminazione[i]->GetMaximum(); |
820 |
b.DrawBox(2816.,0.,3060.,maxhist); |
821 |
} |
822 |
else if(i==6){ |
823 |
maxhist= illuminazione[i]->GetMaximum(); |
824 |
b.DrawBox(2560.,0.,2816.,maxhist); |
825 |
b.DrawBox(512.,0.,768.,maxhist); |
826 |
b.DrawBox(1024.,0.,1792.,maxhist); |
827 |
} |
828 |
else if(i==11){ |
829 |
maxhist= illuminazione[i]->GetMaximum(); |
830 |
b.DrawBox(768.,0.,1024.,maxhist); |
831 |
} |
832 |
IlluminaCanv->Update(); |
833 |
} |
834 |
|
835 |
printf("... end of packets. \n"); |
836 |
|
837 |
//************************************************************************* |
838 |
// Save output Files |
839 |
//************************************************************************* |
840 |
stringstream out1,out2,out3,command; |
841 |
Int_t totpg=0; |
842 |
if(cntpgtemp>cntpgdat) totpg=cntpgtemp; |
843 |
else if(cntpgtemp<=cntpgdat) totpg=cntpgdat; |
844 |
|
845 |
for(Int_t fl=0;fl<totpg;fl++){ |
846 |
if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){ |
847 |
out1.str(""); |
848 |
out2.str(""); |
849 |
out3.str(""); |
850 |
|
851 |
out1<<ffile<<"_FTrkQLook_EXPERT.ps("; |
852 |
out2<<ffile<<"_FTrkQLook_EXPERT.ps"; |
853 |
out3<<ffile<<"_FTrkQLook_EXPERT.ps)"; |
854 |
|
855 |
if(totpg==1){ |
856 |
CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
857 |
EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
858 |
TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
859 |
LandauCanv1->Print(out+out2.str().c_str(),"Portrait"); |
860 |
LandauCanv2->Print(out+out2.str().c_str(),"Portrait"); |
861 |
LandauCanv3->Print(out+out2.str().c_str(),"Portrait"); |
862 |
IlluminaCanv->Print(out+out3.str().c_str(),"Portrait"); |
863 |
} |
864 |
else if(totpg>1){ |
865 |
if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait"); |
866 |
if(fl>0 && fl<cntpgdat) CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
867 |
if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
868 |
if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait"); |
869 |
if(fl==totpg-1){ |
870 |
LandauCanv1->Print(out+out2.str().c_str(),"Portrait"); |
871 |
LandauCanv2->Print(out+out2.str().c_str(),"Portrait"); |
872 |
LandauCanv3->Print(out+out2.str().c_str(),"Portrait"); |
873 |
IlluminaCanv->Print(out+out3.str().c_str(),"Portrait"); |
874 |
} |
875 |
} |
876 |
} |
877 |
else{ |
878 |
out1.str(""); |
879 |
out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data(); |
880 |
if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str()); |
881 |
out1.str(""); |
882 |
out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data(); |
883 |
if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str()); |
884 |
out1.str(""); |
885 |
out1<<ffile<<"_FTrkQLook_EXPERT-EvNum-pag"<<fl+1<<"."<<outfile.Data(); |
886 |
if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out1.str().c_str()); |
887 |
if(fl==totpg-1){ |
888 |
out1.str(""); |
889 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL1."<<outfile.Data(); |
890 |
LandauCanv1->Print(out+out1.str().c_str()); |
891 |
out1.str(""); |
892 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL2."<<outfile.Data(); |
893 |
LandauCanv2->Print(out+out1.str().c_str()); |
894 |
out1.str(""); |
895 |
out1<<ffile<<"_FTrkQLook_EXPERT-LandauL3."<<outfile.Data(); |
896 |
LandauCanv3->Print(out+out1.str().c_str()); |
897 |
out1.str(""); |
898 |
out1<<ffile<<"_FTrkQLook_EXPERT-Lighting."<<outfile.Data(); |
899 |
IlluminaCanv->Print(out+out1.str().c_str()); |
900 |
} |
901 |
} |
902 |
} |
903 |
|
904 |
// |
905 |
// Convert ps to pdf if required |
906 |
if(!strcmp(outfile.Data(),"pdf")){ |
907 |
stringstream com; |
908 |
com<<"ps2pdf13 "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "<<out<<ffile<<"_FTrkQLook_EXPERT.pdf"; |
909 |
system(com.str().c_str()); |
910 |
printf("\n---> ps file converted in pdf format!\n"); |
911 |
com.str(""); |
912 |
com<<"rm -f "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "; |
913 |
system(com.str().c_str()); |
914 |
printf("---> ps file removed!\n\n"); |
915 |
com.str(""); |
916 |
} |
917 |
|
918 |
gROOT->Reset(); |
919 |
return; |
920 |
} |