/[PAMELA software]/quicklook/tracker/flight/macros/FTrkCalibQLook_EXPERT.cxx
ViewVC logotype

Contents of /quicklook/tracker/flight/macros/FTrkCalibQLook_EXPERT.cxx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.28 - (show annotations) (download)
Thu Mar 8 01:41:02 2007 UTC (17 years, 9 months ago) by pam-fi
Branch: MAIN
CVS Tags: v1r29
Changes since 1.27: +7 -11 lines
obt bug fixed

1 /**
2 * FTrkCalibQLookExpert.cxx
3 *
4 * autor: D.Fedele
5 * version v1r26
6 * Parameters:
7 * file - the data file to analyze
8 * step - select =1 in order to analyze one event at time
9 * fromevent - first event to analyze
10 * toevent - last event to analyze
11 * outdir - total path of output file
12 * outfile - extension of output file (pdf,ps,gif,jpg)
13 *
14 */
15 //
16 #include <iostream>
17 //
18 #include <TPaveText.h>
19 #include <TLatex.h>
20 #include <TCanvas.h>
21 #include <TFile.h>
22 #include <TTree.h>
23 #include <TGraph.h>
24 #include <TStyle.h>
25 #include <TString.h>
26 //
27 #include <PscuHeader.h>
28 #include <EventHeader.h>
29 #include <CalibTrk1Event.h>
30 #include <CalibTrk2Event.h>
31 //
32
33 typedef struct caltrk_def{
34 Int_t good0[2];
35 Int_t daqmode[12];
36 Int_t dspnum[12];
37 Int_t calibnum[12];
38 Int_t ncalev[12];
39 Int_t calfl[12];
40 Int_t ped1[12];
41 Int_t ped2[12];
42 Int_t ped3[12];
43 Int_t sig1[12];
44 Int_t sig2[12];
45 Int_t sig3[12];
46 Int_t nbad1[12];
47 Int_t nbad2[12];
48 Int_t nbad3[12];
49 Float_t dspped[12][3702];
50 Float_t dspsig[12][3702];
51 Float_t dspbad[12][3702];
52 Int_t crc_c[12][3];
53 Int_t crc_hc[12];
54 };
55
56
57 void FTrkCalibQLook_EXPERT(TString file,Int_t step,Int_t fromevent, Int_t toevent,TString outdir,TString outfile)
58 {
59 //
60 // obtain information about the data file and select the output dir
61 Int_t dwpos = file.Last('/');
62 Int_t dwpos1 = file.Last('.');
63 TString base,ffile ;
64 ffile=file(dwpos+1,dwpos1-(dwpos+1));
65 if(dwpos>0) base=file(0,dwpos);
66
67 TString out;
68 if(outdir.Length()==0){
69 out = base;
70 }else{
71 out = outdir;
72 }
73 if(out.Last('/')+1<out.Length()) out+="/";
74
75 //
76 // inizialise the variables and open the file
77 Int_t nevents=0;
78 Int_t minevent = 0;
79 Int_t maxevent = 0;
80 ULong_t FOBT[2];
81
82 FOBT[0]=0;
83 FOBT[1]=0;
84
85 struct caltrk_def ctrk;
86 ctrk.good0[0]=0;
87 ctrk.good0[1]=0;
88 for(Int_t i=0;i<12;i++){
89 ctrk.daqmode[i]=0;
90 ctrk.dspnum[i]=0;
91 ctrk.calibnum[i]=0;
92 ctrk.ncalev[i]=0;
93 ctrk.calfl[i]=0;
94 ctrk.ped1[i]=0;
95 ctrk.ped2[i]=0;
96 ctrk.ped3[i]=0;
97 ctrk.sig1[i]=0;
98 ctrk.sig2[i]=0;
99 ctrk.sig3[i]=0;
100 ctrk.nbad1[i]=0;
101 ctrk.nbad2[i]=0;
102 ctrk.nbad3[i]=0;
103 ctrk.crc_c[i][0]=0;
104 ctrk.crc_c[i][1]=0;
105 ctrk.crc_c[i][2]=0;
106 ctrk.crc_hc[i]=0;
107 for(Int_t iii=0;iii<3072;iii++){
108 ctrk.dspped[i][iii]=0;
109 ctrk.dspsig[i][iii]=0;
110 ctrk.dspbad[i][iii]=0;
111 };
112
113 };
114
115 TFile *calibFile = new TFile(file);
116 if ( !calibFile ){
117 printf("No data file, exiting...\n");
118 return;
119 };
120 TTree *otr1,*otr2,*hotr,*totr;
121 pamela::EventHeader *eh1=0,*eh2=0,*eh4=0,*eh3=0;
122 pamela::PscuHeader *ph=0;
123 pamela::CalibTrk1Event *trk1 = 0;
124 pamela::CalibTrk2Event *trk2 = 0;
125 pamela::EventCounter *cod=0;
126
127 pamela::PacketType *pctp=0;
128
129 hotr = (TTree*)calibFile->Get("CalibHeader");
130 hotr->SetBranchAddress("Header", &eh4);
131
132 totr = (TTree*)calibFile->Get("CalibTrailer");
133 totr->SetBranchAddress("Header", &eh3);
134
135 otr1 = (TTree*)calibFile->Get("CalibTrk1");
136 otr1->SetBranchAddress("CalibTrk1", &trk1);
137 otr1->SetBranchAddress("Header",&eh1);
138 otr2 = (TTree*)calibFile->Get("CalibTrk2");
139 otr2->SetBranchAddress("CalibTrk2", &trk2);
140 otr2->SetBranchAddress("Header",&eh2);
141
142 if(otr1->GetEntries()==otr2->GetEntries())
143 nevents = otr1->GetEntries();
144 else{
145 printf("WARNING: CalibTrk1 entries is different from CalibTrk2 entries");
146 return;}
147 if (nevents<=0) {
148 calibFile->Close();
149 printf("No calibration packets found, exiting...\n");
150 return;
151 };
152
153 printf("Number of calibration packets: %i\n",nevents);
154
155 if ( fromevent > toevent && toevent ){
156 printf("It must be fromevent < toevent \n");
157 return;
158 };
159
160 if ( fromevent > nevents || fromevent < 0 ) {
161 printf("You can choose fromevent between 0 (all) and %i \n",nevents);
162 return;
163 };
164
165 if ( toevent > nevents || toevent < 0 ) {
166 printf("You can choose toevent between 0 (all) and %i \n",nevents);
167 return;
168 };
169 if ( fromevent == 0 ) {
170 minevent = 0;
171 maxevent = nevents;
172 } else {
173 minevent = fromevent - 1;
174 if ( toevent > 0 ){
175 maxevent = toevent;
176 } else if (toevent > nevents) {
177 maxevent = nevents;
178 } else {
179 maxevent = nevents;
180 };
181 };
182
183 //**********************************************************************
184 //
185 // LOOP OVER EVENTS
186 //
187 //**********************************************************************
188
189 Int_t hcevent=hotr->GetEntries();
190 Int_t tcevent=totr->GetEntries();
191 ULong_t HOBT[hcevent], TOBT[tcevent];
192 for (Int_t i = 0; i < hcevent; i++){
193 hotr->GetEntry(i);
194 ph = eh4->GetPscuHeader();
195 HOBT[i]= ph->GetOrbitalTime();
196 }
197 for (Int_t i = 0; i < tcevent; i++){
198 totr->GetEntry(i);
199 ph = eh3->GetPscuHeader();
200 TOBT[i]= ph->GetOrbitalTime();
201 }
202
203 printf("\n Scan of calibration packets from %i to %i ... \n\n",minevent+1,maxevent);
204 for (Int_t i = minevent; i < maxevent; i++){
205
206 otr1->GetEntry(i);
207 otr2->GetEntry(i);
208
209 ctrk.good0[0]=trk1->good0;
210 ctrk.good0[1]=trk2->good0;
211 for (Int_t m = 0; m < 6; m++){
212 ph = eh1->GetPscuHeader();
213 cod = eh1->GetCounter();
214 FOBT[0]= ph->GetOrbitalTime();
215 if(trk1->DSPnumber[m]>0){
216 if(trk1->DSPnumber[m]<13){
217 ctrk.daqmode[trk1->DSPnumber[m]-1]=trk1->DAQmode[m];
218 ctrk.dspnum[trk1->DSPnumber[m]-1]=trk1->DSPnumber[m];
219 ctrk.calibnum[trk1->DSPnumber[m]-1]=trk1->calibnumber[m];
220 ctrk.ncalev[trk1->DSPnumber[m]-1]=trk1->ncalib_event[m];
221 ctrk.ped1[trk1->DSPnumber[m]-1]=trk1->ped_l1[m];
222 ctrk.ped2[trk1->DSPnumber[m]-1]=trk1->ped_l2[m];
223 ctrk.ped3[trk1->DSPnumber[m]-1]=trk1->ped_l3[m];
224 ctrk.sig1[trk1->DSPnumber[m]-1]=trk1->sig_l1[m];
225 ctrk.sig2[trk1->DSPnumber[m]-1]=trk1->sig_l2[m];
226 ctrk.sig3[trk1->DSPnumber[m]-1]=trk1->sig_l3[m];
227 ctrk.nbad1[trk1->DSPnumber[m]-1]=trk1->nbad_l1[m];
228 ctrk.nbad2[trk1->DSPnumber[m]-1]=trk1->nbad_l2[m];
229 ctrk.nbad3[trk1->DSPnumber[m]-1]=trk1->nbad_l3[m];
230 ctrk.calfl[trk1->DSPnumber[m]-1]=trk1->cal_flag[m];
231 ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk1->crc_cal[m][0];
232 ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk1->crc_cal[m][1];
233 ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk1->crc_cal[m][2];
234 ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk1->crc_hcal[m];
235 for (Int_t j = 0; j < 3072; j++){
236 ctrk.dspped[trk1->DSPnumber[m]-1][j]=trk1->DSPped_par[m][j];
237 ctrk.dspsig[trk1->DSPnumber[m]-1][j]=trk1->DSPsig_par[m][j];
238 ctrk.dspbad[trk1->DSPnumber[m]-1][j]=trk1->DSPbad_par[m][j];
239 };
240 }
241 }
242 ph = eh2->GetPscuHeader();
243 FOBT[1]= ph->GetOrbitalTime();
244 if(trk2->DSPnumber[m]>0){
245 if(trk2->DSPnumber[m]<13){
246 ctrk.daqmode[trk2->DSPnumber[m]-1]=trk2->DAQmode[m];
247 ctrk.dspnum[trk2->DSPnumber[m]-1]=trk2->DSPnumber[m];
248 ctrk.calibnum[trk2->DSPnumber[m]-1]=trk2->calibnumber[m];
249 ctrk.ncalev[trk2->DSPnumber[m]-1]=trk2->ncalib_event[m];
250 ctrk.ped1[trk2->DSPnumber[m]-1]=trk2->ped_l1[m];
251 ctrk.ped2[trk2->DSPnumber[m]-1]=trk2->ped_l2[m];
252 ctrk.ped3[trk2->DSPnumber[m]-1]=trk2->ped_l3[m];
253 ctrk.sig1[trk2->DSPnumber[m]-1]=trk2->sig_l1[m];
254 ctrk.sig2[trk2->DSPnumber[m]-1]=trk2->sig_l2[m];
255 ctrk.sig3[trk2->DSPnumber[m]-1]=trk2->sig_l3[m];
256 ctrk.nbad1[trk2->DSPnumber[m]-1]=trk2->nbad_l1[m];
257 ctrk.nbad2[trk2->DSPnumber[m]-1]=trk2->nbad_l2[m];
258 ctrk.nbad3[trk2->DSPnumber[m]-1]=trk2->nbad_l3[m];
259 ctrk.calfl[trk2->DSPnumber[m]-1]=trk2->cal_flag[m];
260 ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk2->crc_cal[m][0];
261 ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk2->crc_cal[m][1];
262 ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk2->crc_cal[m][2];
263 ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk2->crc_hcal[m];
264 for (Int_t j = 0; j < 3072; j++){
265 ctrk.dspped[trk2->DSPnumber[m]-1][j]=trk2->DSPped_par[m][j];
266 ctrk.dspsig[trk2->DSPnumber[m]-1][j]=trk2->DSPsig_par[m][j];
267 ctrk.dspbad[trk2->DSPnumber[m]-1][j]=trk2->DSPbad_par[m][j];
268 }
269 }
270 }
271 }
272
273
274 //
275 // other variables definitions
276
277 Int_t risposta=0;
278 stringstream fromfile;
279
280 fromfile<<"FTrkCalibQLook_EXPERT File: "<<ffile<<" -- CalibHeader OBT= "<<HOBT[(cod->Get(pctp->CalibHeader))-1]<<" -- Calib pkt OBT= "<<FOBT[0]<<" -- CalibTrailer OBT= "<<TOBT[(cod->Get(pctp->CalibTrailer))]<<" --";
281
282 gStyle->SetLabelSize(0.07,"x");
283 gStyle->SetLabelSize(0.07,"y");
284 gStyle->SetTitleFillColor(10);
285 gStyle->SetTitleFontSize(0.08);
286 gStyle->SetTitleOffset(0.8,"y");
287 gStyle->SetTitleOffset(0.9,"x");
288 gStyle->SetTitleSize(0.06,"y");
289 gStyle->SetTitleSize(0.06,"x");
290 gStyle->SetOptStat(101110);
291 gStyle->SetStatX(0.9);
292 gStyle->SetStatW(0.4);
293 gStyle->SetStatColor(10);
294 gStyle->SetStatFontSize(0.1);
295
296 //
297 // draw display area
298
299 TLatex *tzz=new TLatex();
300 tzz->SetTextFont(32);
301 tzz->SetTextColor(1);
302 tzz->SetTextAlign(12);
303 tzz->SetTextSize(0.019);
304 Int_t canvasx=1200;
305 Int_t canvasy=900;
306 TCanvas *c1 = new TCanvas("c1","FTrkCalibQLook_EXPERT_ped",canvasx,canvasy);
307 c1->SetFillColor(10);
308 tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
309 tzz->DrawLatex(.90,0.98,"PEDESTAL");
310 TCanvas *c2 = new TCanvas("c2","FTrkCalibQLook_EXPERT_sig",canvasx,canvasy);
311 c2->SetFillColor(10);
312 tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
313 tzz->DrawLatex(.90,0.98,"SIGMA");
314
315
316 TCanvas *sig=new TCanvas("sig","FTrkCalibQLook_EXPERT_histosig",canvasx,canvasy);
317 sig->SetFillColor(10);
318 tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
319 tzz->DrawLatex(.85,0.97,"Histograms of the sigmas");
320
321
322
323 // draw pads
324 TPad *trkpad1[12],*trkpad2[12],*trkpad3[36]; //pad for histos
325 TPaveText *trkpadtext[12]; //pad for header
326 TH1F *histosig[12]; //histos of sigma
327 TH1F *histoped[12]; //histos of pedestals
328 TH1F *histoasig[12]; //histos of sigma
329 TH1F *histoaped[12]; //histos of pedestals
330
331 TH1F *histosiglad[12][3]; //histos of sigma
332 stringstream title;
333 stringstream hid;
334
335 Float_t posy = 0.95; // up y-coord - top pads
336 Float_t hpad = 0.15; // pad height
337 Float_t posx1=0; // left x-coord - pad column
338 Float_t posx2=0; // right x-coord - pad olumn
339 Float_t posx0=0; // x-coord - column division
340 Float_t wrel = 0.6; // relative x size of first sub-column
341 Float_t marg = 0.004; // margin among pads
342
343
344 for(Int_t n = 0; n<12; n++){
345 if ( (n+1)%2 ) {
346 if(n>1)posy = posy-(marg*2+hpad);
347 posx1 = marg;
348 posx2 = 0.5 - marg;
349 posx0 = 0.5*wrel;
350
351 } else {
352 posx1 = posx1 + 0.5;
353 posx2 = posx2 + 0.5;
354 posx0 = posx0 + 0.5;
355
356 };
357 /* -----------> pad for histograms */
358 trkpad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);
359 trkpad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);
360 /* -----------> pad for header dump */
361 trkpadtext[n] = new TPaveText((posx0+marg),(posy-hpad),posx2,posy);
362 /* -----------> HISTOGRAMS */
363 /* calibration parameters */
364 title<<"DSP "<<n+1;
365 hid<<"h"<<n<<"i"<<i;
366 histosig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
367 hid.str("");
368 hid<<"hh"<<n<<"i"<<i;
369 histoped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
370 hid.str("");
371 hid<<"hhh"<<n<<"i"<<i;
372 hid.str("");
373 /* AVERAGE calibration parameters */
374 hid<<"ah"<<n<<"i"<<i;
375 histoasig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
376 hid.str("");
377 hid<<"ahh"<<n<<"i"<<i;
378 histoaped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
379 hid.str("");
380 for(int ii=0;ii<3;ii++){
381 title.str("");
382 title<<"DSP "<<n+1<<" / Lad "<<ii+1;
383 hid<<"hhhh"<<n<<"i"<<i<<"ii"<<ii;
384 histosiglad[n][ii] = new TH1F(hid.str().c_str(),title.str().c_str(),32,-0.5,30.5);
385 hid.str("");
386 }
387 title.str("");
388 }; //end loop on views
389
390 Float_t tposy = 0.95; // up y-coord - top pads
391 Float_t thpad = 0.; // pad height
392 Float_t tposx1=0; // left x-coord - pad column
393 Float_t tposx0=0; // x-coord - column division
394 Float_t twrel = 0.; // relative x size of first sub-column
395 Float_t tmarg = 0.002; // margin among pads
396 thpad = (tposy-tmarg*11)/6;
397 twrel = (1-tmarg*12)/6;
398
399 for(Int_t n = 0; n<36; n++){
400 if ( (n+1)%6==1 ) {
401 if(n>1) tposy = tposy-(tmarg*2+thpad);
402 tposx1 = tmarg;
403 tposx0 = tposx1 + twrel;
404 } else {
405 tposx1 = tposx0 + 2*tmarg;
406 tposx0 = tposx1 + twrel;
407 }
408 trkpad3[n]= new TPad("pad3"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
409 }
410
411
412 stringstream message;
413
414 //--------------------------------
415 //CHECK CALIBRATION procedure
416 //--------------------------------
417 Int_t nn=0;
418 Int_t calok = 0;//BAD
419 for(Int_t n = 0; n<12; n++){
420 if(ctrk.ncalev[n]==0 && ctrk.calfl[n]==0)calok = 1;//GOOD
421
422 if(ctrk.dspnum[n]==0)
423 continue;
424
425 nn=ctrk.dspnum[n]-1;
426 /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
427 *
428 * Write event LEVEL0 report
429 *
430 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*/
431 trkpadtext[nn]->SetTextFont(40);
432 trkpadtext[nn]->SetFillColor(33);
433 if(calok==0)trkpadtext[nn]->SetFillColor(2);
434 trkpadtext[nn]->SetTextSize(0.013);
435 trkpadtext[nn]->SetTextAlign(13);
436 trkpadtext[nn]->SetTextColor(1);
437
438 trkpadtext[nn]->AddText(" ");
439 message<<"DSP num --------> "<<ctrk.dspnum[n];
440 trkpadtext[nn]->AddText(message.str().c_str());
441 message.str("");
442 message<<"DAQ mode -------> "<<ctrk.daqmode[n];
443 trkpadtext[nn]->AddText(message.str().c_str());
444 message.str("");
445 message<<"Calibnumber ----> "<<ctrk.calibnum[n];
446 trkpadtext[nn]->AddText(message.str().c_str());
447 message.str("");
448 message<<"ncalib_event ---> "<<ctrk.ncalev[n];
449 trkpadtext[nn]->AddText(message.str().c_str());
450 message.str("");
451 message<<"Cal_flag -------> "<<ctrk.calfl[n];
452 trkpadtext[nn]->AddText(message.str().c_str());
453 message.str("");
454 message<<"crc_hcal -------> "<<ctrk.crc_hc[n];
455 trkpadtext[nn]->AddText(message.str().c_str());
456 message.str("");
457 message<<"crc_cal: l1- ";message.width(5);message<< ctrk.crc_c[n][0];
458 message<<" l2- ";message.width(5);message<< ctrk.crc_c[n][1];
459 message<<" l3- ";message.width(5);message<< ctrk.crc_c[n][2];
460 trkpadtext[nn]->AddText(message.str().c_str());
461 message.str("");
462 message<<"<PED>: l1- "; message.width(5);message<< ctrk.ped1[n];
463 message<<" l2-"; message.width(5);message<< ctrk.ped2[n];
464 message<<" l3-"; message.width(5);message<< ctrk.ped3[n];
465 trkpadtext[nn]->AddText(message.str().c_str());
466 message.str("");
467 message<<"<SIG>: l1- "; message.width(5);message<< ctrk.sig1[n];
468 message<<" l2-"; message.width(5);message<< ctrk.sig2[n];
469 message<<" l3-"; message.width(5);message<< ctrk.sig3[n];
470 trkpadtext[nn]->AddText(message.str().c_str());
471 message.str("");
472 message<<"n.BAD: l1- "; message.width(5);message<<ctrk.nbad1[n];
473 message<<" l2-"; message.width(5);message<< ctrk.nbad2[n];
474 message<<" l3-"; message.width(5);message<< ctrk.nbad3[n];
475 trkpadtext[nn]->AddText(message.str().c_str());
476 message.str("");
477
478 if(calok==0){
479
480 message.str("*** FAILED ***");
481 TText *t=trkpadtext[nn]->AddText(message.str().c_str());
482 t->SetTextSize(0.02);
483 t->SetTextAlign(23);
484 t->SetTextColor(5);
485 };
486
487 /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
488 *
489 * Plot histo
490 *
491 *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*/
492
493
494 /******************************************************/
495 /* fill histos */
496 for(Int_t j = 0; j < 3072; j++){
497 histosig[nn]->Fill(j,ctrk.dspsig[n][j]);
498 histoped[nn]->Fill(j,ctrk.dspped[n][j]);
499 if(j<1024) histosiglad[nn][0]->Fill(ctrk.dspsig[n][j]);
500 if(j>=1024 && j<2048) histosiglad[nn][1]->Fill(ctrk.dspsig[n][j]);
501 if(j>=2048 && j<3072) histosiglad[nn][2]->Fill(ctrk.dspsig[n][j]);
502 };
503 histoasig[nn]->Fill(1,ctrk.sig1[n]);
504 histoasig[nn]->Fill(1025,ctrk.sig2[n]);
505 histoasig[nn]->Fill(2049,ctrk.sig3[n]);
506 histoaped[nn]->Fill(1,ctrk.ped1[nn]);
507 histoaped[nn]->Fill(1025,ctrk.ped2[n]);
508 histoaped[nn]->Fill(2049,ctrk.ped3[n]);
509 /******************************************************/
510
511 TLine li,liva1;
512 li.SetLineColor(38);
513 li.SetLineStyle(4);
514 li.SetLineWidth(2);
515 liva1.SetLineColor(42);
516 liva1.SetLineStyle(3);
517 liva1.SetLineWidth(1);
518
519 Float_t maxhist=0,va1x=0;
520 TBox b;
521 /* plot PEDESTAL */
522 c1->cd();
523 trkpadtext[nn]->Draw();
524 trkpad1[nn]->Draw();
525 trkpad1[nn]->cd();
526 trkpad1[nn]->SetFillColor(10);
527 trkpad1[nn]->SetFrameFillColor(10);
528 histoped[nn]->SetStats(kFALSE);
529 histoped[nn]->SetLineColor(1);
530 histoped[nn]->SetFillColor(12);
531 histoped[nn]->SetLineWidth(1);
532 histoped[nn]->GetYaxis()->SetTitle("PED (ADC channels)");
533 histoped[nn]->GetYaxis()->CenterTitle();
534 if((nn+1)%2==1) histoped[nn]->GetYaxis()->SetRangeUser(2200,3200);
535 if((nn+1)%2==0) histoped[nn]->GetYaxis()->SetRangeUser(700,1700);
536 histoaped[nn]->SetLineColor(5);
537 histoaped[nn]->SetLineWidth(1);
538 // if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
539 histoped[nn]->Draw("b");
540 maxhist=histoped[nn]->GetMaximum();
541 if(nn==0){
542 b.SetFillColor(107);
543 b.SetFillStyle(3945);
544 b.DrawBox(256.,2200.,384.,maxhist);
545 b.DrawBox(768.,2200.,2047.,maxhist);
546 }
547 else if(nn==1){
548 b.SetFillColor(6);
549 b.SetFillStyle(3945);
550 b.DrawBox(2944.,700.,3060.,maxhist);
551
552 b.SetFillColor(107);
553 b.SetFillStyle(3954);
554 b.DrawBox(384.,700.,512.,maxhist);
555 b.DrawBox(2048.,700.,2432.,maxhist);
556 b.DrawBox(2816.,700.,2944.,maxhist);
557 }
558 else if(nn==3){
559 b.SetFillColor(107);
560 b.SetFillStyle(3954);
561 b.DrawBox(2816.,700.,3070.,maxhist);
562 }
563 else if(nn==4){
564 b.SetFillColor(107);
565 b.SetFillStyle(3954);
566 b.DrawBox(256.,2200.,512.,maxhist);
567 b.DrawBox(2816.,2200.,3070.,maxhist);
568 }
569 else if(nn==5){
570 b.SetFillColor(107);
571 b.SetFillStyle(3954);
572 b.DrawBox(896.,700.,1024.,maxhist);
573 }
574 else if(nn==6){
575 b.SetFillColor(107);
576 b.SetFillStyle(3954);
577 b.DrawBox(512.,2200.,768.,maxhist);
578 b.DrawBox(1024.,2200.,1280.,maxhist);
579 b.DrawBox(1280.,2200.,1792.,maxhist);
580 b.DrawBox(2560.,2200.,2816.,maxhist);
581 }
582 else if(nn==7){
583 b.SetFillColor(107);
584 b.SetFillStyle(3954);
585 b.DrawBox(512.,700.,768.,maxhist);
586 b.DrawBox(896.,700.,1535.,maxhist);
587 b.DrawBox(2024.,700.,2280.,maxhist);
588 }
589 else if(nn==8){
590 b.SetFillColor(107);
591 b.SetFillStyle(3954);
592 b.DrawBox(512.,2200.,768.,maxhist);
593 }
594 else if(nn==9){
595 b.SetFillColor(107);
596 b.SetFillStyle(3954);
597 b.DrawBox(256.,700.,384.,maxhist);
598 b.DrawBox(1280.,700.,1535.,maxhist);
599 b.DrawBox(1792.,700.,1920.,maxhist);
600 }
601 else if(nn==10){
602 b.SetFillColor(107);
603 b.SetFillStyle(3954);
604 b.DrawBox(1024.,2200.,1152.,maxhist);
605 b.DrawBox(2048.,2200.,3070.,maxhist);
606 }
607 else if(nn==11){
608 b.SetFillColor(6);
609 b.SetFillStyle(3945);
610 b.DrawBox(768.,700.,1024.,maxhist);
611
612 b.SetFillColor(107);
613 b.SetFillStyle(3954);
614 b.DrawBox(0.,700.,512.,maxhist);
615 b.DrawBox(1920.,700.,2560.,maxhist);
616 }
617 // }
618 // else histoped[nn]->Draw("axis");
619 histoaped[nn]->Draw("same");
620 if((nn+1)%2==1) {
621 for(int va=1; va<24; va++){
622 va1x=128*va;
623 liva1.DrawLine(va1x,2200.,va1x,3200.);
624 }
625 li.DrawLine(1024.5,2200.,1024.5,3200.);
626 li.DrawLine(2048.5,2200.,2048.5,3200.);
627 }
628 if((nn+1)%2==0) {
629 for(int va=1; va<24; va++){
630 va1x=128*va;
631 liva1.DrawLine(va1x,700.,va1x,1700.);
632 }
633 li.DrawLine(1024.5,700,1024.5,1700);
634 li.DrawLine(2048.5,700,2048.5,1700);
635 }
636 c1->Update();//draw pads in canvas
637
638
639
640 /* plot SIGMA */
641 Float_t max=500.;
642 c2->cd();
643 trkpadtext[nn]->Draw();
644 trkpad2[nn]->SetLogy();
645 trkpad2[nn]->Draw();
646 trkpad2[nn]->cd();
647 trkpad2[nn]->SetFillColor(10);
648 trkpad2[nn]->SetFrameFillColor(10);
649 histosig[nn]->SetStats(kFALSE);
650 histosig[nn]->SetLineColor(1);
651 histosig[nn]->SetFillColor(12);
652 histosig[nn]->SetLineWidth(1);
653 histosig[nn]->SetMaximum(max);
654 histosig[nn]->SetMinimum(0.5);
655 histosig[nn]->GetYaxis()->SetTitle("SIG (ADC channels)");
656 histosig[nn]->GetYaxis()->CenterTitle();
657 histoasig[nn]->SetLineColor(5);
658 histoasig[nn]->SetLineWidth(1);
659 // if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
660 histosig[nn]->Draw("b");
661 maxhist=histosig[nn]->GetMaximum();
662 if(nn==0){
663 b.SetFillColor(107);
664 b.SetFillStyle(3945);
665 b.DrawBox(256.,0.,384.,maxhist);
666 b.DrawBox(768.,0.,2047.,maxhist);
667 }
668 else if(nn==1){
669 b.SetFillColor(6);
670 b.SetFillStyle(3945);
671 b.DrawBox(2944.,0.,3070.,maxhist);
672
673 b.SetFillColor(107);
674 b.SetFillStyle(3954);
675 b.DrawBox(384.,0.,512.,maxhist);
676 b.DrawBox(2048.,0.,2432.,maxhist);
677 b.DrawBox(2816.,0.,2944.,maxhist);
678 }
679 else if(nn==3){
680 b.SetFillColor(107);
681 b.SetFillStyle(3954);
682 b.DrawBox(2816.,0.,3070.,maxhist);
683 }
684 else if(nn==4){
685 b.SetFillColor(107);
686 b.SetFillStyle(3954);
687 b.DrawBox(256.,0.,512.,maxhist);
688 b.DrawBox(2816.,0.,3070.,maxhist);
689 }
690 else if(nn==5){
691 b.SetFillColor(107);
692 b.SetFillStyle(3954);
693 b.DrawBox(896.,0.,1024.,maxhist);
694 }
695 else if(nn==6){
696 b.SetFillColor(107);
697 b.SetFillStyle(3954);
698 b.DrawBox(512.,0.,768.,maxhist);
699 b.DrawBox(1024.,0.,1280.,maxhist);
700 b.DrawBox(1280.,0.,1792.,maxhist);
701 b.DrawBox(2560.,0.,2816.,maxhist);
702 }
703 else if(nn==7){
704 b.SetFillColor(107);
705 b.SetFillStyle(3954);
706 b.DrawBox(512.,0.,768.,maxhist);
707 b.DrawBox(896.,0.,1535.,maxhist);
708 b.DrawBox(2024.,0.,2280.,maxhist);
709 }
710 else if(nn==8){
711 b.SetFillColor(107);
712 b.SetFillStyle(3954);
713 b.DrawBox(512.,0.,768.,maxhist);
714 }
715 else if(nn==9){
716 b.SetFillColor(107);
717 b.SetFillStyle(3954);
718 b.DrawBox(256.,0.,384.,maxhist);
719 b.DrawBox(1280.,0.,1535.,maxhist);
720 b.DrawBox(1792.,0.,1920.,maxhist);
721 }
722 else if(nn==10){
723 b.SetFillColor(107);
724 b.SetFillStyle(3954);
725 b.DrawBox(1024.,0.,1152.,maxhist);
726 b.DrawBox(2048.,0.,3070.,maxhist);
727 }
728 else if(nn==11){
729 b.SetFillColor(6);
730 b.SetFillStyle(3945);
731 b.DrawBox(768.,0.,1024.,maxhist);
732
733 b.SetFillColor(107);
734 b.SetFillStyle(3954);
735 b.DrawBox(0.,0.,512.,maxhist);
736 b.DrawBox(1920.,0.,2560.,maxhist);
737 }
738 // }
739 // else histosig[nn]->Draw("axis");
740 histoasig[nn]->Draw("same");
741 for(int va=1; va<24; va++){
742 va1x=128*va;
743 liva1.DrawLine(va1x,0.,va1x,max);
744 }
745 li.DrawLine(1024.5,0,1024.5,max);
746 li.DrawLine(2048.5,0,2048.5,max);
747 c2->Update();//draw pads in canvas
748
749 for(int ii=0;ii<3;ii++){
750 sig->cd();
751 trkpad3[nn*3+ii]->Draw();
752 trkpad3[nn*3+ii]->cd();
753 trkpad3[nn*3+ii]->SetFillColor(10);
754 trkpad3[nn*3+ii]->SetFrameFillColor(10);
755 trkpad3[nn*3+ii]->SetLogy();
756 histosiglad[nn][ii]->SetLineColor(1);
757 histosiglad[nn][ii]->SetFillColor(1);
758 histosiglad[nn][ii]->SetLineWidth(1);
759 histosiglad[nn][ii]->GetXaxis()->SetTitle("SIG (ADC channels)");
760 histosiglad[nn][ii]->GetXaxis()->CenterTitle();
761 histosiglad[nn][ii]->Draw("");
762 }
763
764 };//end loop on views
765 c1->Update();//draw pads in canvas
766 c2->Update();//draw pads in canvas
767 sig->Update();//draw pads in canvas
768
769 stringstream nom1,nom2,nom3;
770
771 if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
772 nom1.str("");
773 nom2.str("");
774 nom3.str("");
775 nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps(";
776 nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps";
777 nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps)";
778 c1->Print(nom1.str().c_str(),"Landscape");
779 c2->Print(nom2.str().c_str(),"Landscape");
780 sig->Print(nom3.str().c_str(),"Landscape");
781
782 if(!strcmp(outfile.Data(),"pdf")){
783 stringstream com;
784 com<<"ps2pdf13 "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps "<<out<<ffile<<"_FTrkCalibQlook_EXPERT-pkt"<<i+1<<".pdf";
785 system(com.str().c_str());
786 printf("\n---> ps file converted in pdf format!\n");
787 com.str("");
788 com<<"rm -f "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps";
789 system(com.str().c_str());
790 printf("---> ps file removed!\n\n");
791 com.str("");
792 }
793 }
794 else{
795 nom1.str("");
796 nom2.str("");
797 nom3.str("");
798 nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-ped-pkt"<<i+1<<"."<<outfile.Data();
799 nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-sig-pkt"<<i+1<<"."<<outfile.Data();
800 nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-histosig-pkt"<<i+1<<"."<<outfile.Data();
801 c1->Print(nom1.str().c_str());
802 c2->Print(nom2.str().c_str());
803 sig->Print(nom3.str().c_str());
804 }
805
806 if(step==1 && i!=maxevent-1 ){
807 printf("\n Press 1<enter> to continue, 2<enter> to quit.\n");
808 cin>>risposta;
809 if ( i != maxevent-1 ) {
810 if ( risposta == 2 ) {
811 gROOT->Reset();
812 printf("Exiting...\n");
813 return;
814 }
815 }
816 }
817 };//end loop on events
818
819 gROOT->Reset();
820 printf("... end of packets. \n");
821 return;
822 }
823
824

  ViewVC Help
Powered by ViewVC 1.1.23