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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.13 - (hide annotations) (download)
Mon Sep 18 15:01:56 2006 UTC (18 years, 2 months ago) by pam-fi
Branch: MAIN
CVS Tags: v1r12
Changes since 1.12: +4 -2 lines
*** empty log message ***

1 pam-fi 1.1 /**
2 pam-fi 1.6 * FTrkCalibQLookExpert.cxx
3 pam-fi 1.1 *
4     * autor: D.Fedele
5 pam-fi 1.13 * version v1r11
6 pam-fi 1.1 * 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 pam-fi 1.6 #include <TFile.h>
22 pam-fi 1.1 #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 pam-fi 1.6 typedef struct caltrk_def{
34 pam-fi 1.1 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 pam-fi 1.6 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 pam-fi 1.1
67     TString out;
68     if(outdir.Length()==0){
69     out = base;
70     }else{
71     out = outdir;
72     }
73 pam-fi 1.6 if(out.Last('/')+1<out.Length()) out+="/";
74 pam-fi 1.1
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 pam-fi 1.8 ULong64_t FOBT[2];
81 pam-fi 1.1
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 pam-fi 1.8 pamela::CalibTrk2Event *trk2 = 0;
125     pamela::EventCounter *cod=0;
126    
127     pamela::PacketType *pctp=0;
128 pam-fi 1.1
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 pam-fi 1.13 maxevent = nevents;
180 pam-fi 1.1 };
181     };
182    
183     //**********************************************************************
184     //
185     // LOOP OVER EVENTS
186     //
187     //**********************************************************************
188    
189 pam-fi 1.8 Int_t hcevent=hotr->GetEntries();
190 pam-fi 1.11 Int_t tcevent=totr->GetEntries();
191     ULong64_t HOBT[hcevent], TOBT[tcevent];
192 pam-fi 1.8 for (Int_t i = 0; i < hcevent; i++){
193     hotr->GetEntry(i);
194     ph = eh4->GetPscuHeader();
195     HOBT[i]= ph->GetOrbitalTime();
196 pam-fi 1.11 }
197     for (Int_t i = 0; i < tcevent; i++){
198     totr->GetEntry(i);
199 pam-fi 1.8 ph = eh3->GetPscuHeader();
200     TOBT[i]= ph->GetOrbitalTime();
201     }
202    
203 pam-fi 1.1 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 pam-fi 1.8 otr2->GetEntry(i);
208    
209 pam-fi 1.1 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 pam-fi 1.8 cod = eh1->GetCounter();
214 pam-fi 1.1 FOBT[0]= ph->GetOrbitalTime();
215     ctrk.daqmode[trk1->DSPnumber[m]-1]=trk1->DAQmode[m];
216     ctrk.dspnum[trk1->DSPnumber[m]-1]=trk1->DSPnumber[m];
217     ctrk.calibnum[trk1->DSPnumber[m]-1]=trk1->calibnumber[m];
218     ctrk.ncalev[trk1->DSPnumber[m]-1]=trk1->ncalib_event[m];
219     ctrk.ped1[trk1->DSPnumber[m]-1]=trk1->ped_l1[m];
220     ctrk.ped2[trk1->DSPnumber[m]-1]=trk1->ped_l2[m];
221     ctrk.ped3[trk1->DSPnumber[m]-1]=trk1->ped_l3[m];
222     ctrk.sig1[trk1->DSPnumber[m]-1]=trk1->sig_l1[m];
223     ctrk.sig2[trk1->DSPnumber[m]-1]=trk1->sig_l2[m];
224     ctrk.sig3[trk1->DSPnumber[m]-1]=trk1->sig_l3[m];
225     ctrk.nbad1[trk1->DSPnumber[m]-1]=trk1->nbad_l1[m];
226     ctrk.nbad2[trk1->DSPnumber[m]-1]=trk1->nbad_l2[m];
227     ctrk.nbad3[trk1->DSPnumber[m]-1]=trk1->nbad_l3[m];
228     ctrk.calfl[trk1->DSPnumber[m]-1]=trk1->cal_flag[m];
229     ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk1->crc_cal[m][0];
230     ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk1->crc_cal[m][1];
231     ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk1->crc_cal[m][2];
232     ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk1->crc_hcal[m];
233     for (Int_t j = 0; j < 3072; j++){
234     ctrk.dspped[trk1->DSPnumber[m]-1][j]=trk1->DSPped_par[m][j];
235     ctrk.dspsig[trk1->DSPnumber[m]-1][j]=trk1->DSPsig_par[m][j];
236     ctrk.dspbad[trk1->DSPnumber[m]-1][j]=trk1->DSPbad_par[m][j];
237     };
238     ph = eh2->GetPscuHeader();
239     FOBT[1]= ph->GetOrbitalTime();
240     ctrk.daqmode[trk2->DSPnumber[m]-1]=trk2->DAQmode[m];
241     ctrk.dspnum[trk2->DSPnumber[m]-1]=trk2->DSPnumber[m];
242     ctrk.calibnum[trk2->DSPnumber[m]-1]=trk2->calibnumber[m];
243     ctrk.ncalev[trk2->DSPnumber[m]-1]=trk2->ncalib_event[m];
244     ctrk.ped1[trk2->DSPnumber[m]-1]=trk2->ped_l1[m];
245     ctrk.ped2[trk2->DSPnumber[m]-1]=trk2->ped_l2[m];
246     ctrk.ped3[trk2->DSPnumber[m]-1]=trk2->ped_l3[m];
247     ctrk.sig1[trk2->DSPnumber[m]-1]=trk2->sig_l1[m];
248     ctrk.sig2[trk2->DSPnumber[m]-1]=trk2->sig_l2[m];
249     ctrk.sig3[trk2->DSPnumber[m]-1]=trk2->sig_l3[m];
250     ctrk.nbad1[trk2->DSPnumber[m]-1]=trk2->nbad_l1[m];
251     ctrk.nbad2[trk2->DSPnumber[m]-1]=trk2->nbad_l2[m];
252     ctrk.nbad3[trk2->DSPnumber[m]-1]=trk2->nbad_l3[m];
253     ctrk.calfl[trk2->DSPnumber[m]-1]=trk2->cal_flag[m];
254     ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk2->crc_cal[m][0];
255     ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk2->crc_cal[m][1];
256     ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk2->crc_cal[m][2];
257     ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk2->crc_hcal[m];
258     for (Int_t j = 0; j < 3072; j++){
259     ctrk.dspped[trk2->DSPnumber[m]-1][j]=trk2->DSPped_par[m][j];
260     ctrk.dspsig[trk2->DSPnumber[m]-1][j]=trk2->DSPsig_par[m][j];
261     ctrk.dspbad[trk2->DSPnumber[m]-1][j]=trk2->DSPbad_par[m][j];
262 pam-fi 1.8 }
263     }
264 pam-fi 1.1
265    
266     //
267     // other variables definitions
268     Int_t risposta=0;
269     stringstream fromfile;
270    
271 pam-fi 1.11 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))]<<" --";
272 pam-fi 1.1
273 pam-fi 1.9 gStyle->SetLabelSize(0.07,"x");
274     gStyle->SetLabelSize(0.07,"y");
275 pam-fi 1.1 gStyle->SetTitleFillColor(10);
276 pam-fi 1.9 gStyle->SetTitleFontSize(0.08);
277 pam-fi 1.1 gStyle->SetTitleOffset(0.8,"y");
278 pam-fi 1.9 gStyle->SetTitleOffset(0.9,"x");
279 pam-fi 1.1 gStyle->SetTitleSize(0.06,"y");
280     gStyle->SetTitleSize(0.06,"x");
281 pam-fi 1.9 gStyle->SetOptStat(101110);
282     gStyle->SetStatX(0.9);
283     gStyle->SetStatW(0.4);
284     gStyle->SetStatColor(10);
285     gStyle->SetStatFontSize(0.1);
286 pam-fi 1.1
287     //
288     // draw display area
289 pam-fi 1.9
290 pam-fi 1.1 TLatex *tzz=new TLatex();
291     tzz->SetTextFont(32);
292     tzz->SetTextColor(1);
293     tzz->SetTextAlign(12);
294     tzz->SetTextSize(0.019);
295     Int_t canvasx=1200;
296     Int_t canvasy=900;
297     TCanvas *c1 = new TCanvas("c1","FTrkCalibQLook_EXPERT_ped",canvasx,canvasy);
298     c1->SetFillColor(10);
299     tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
300     tzz->DrawLatex(.90,0.98,"PEDESTAL");
301     TCanvas *c2 = new TCanvas("c2","FTrkCalibQLook_EXPERT_sig",canvasx,canvasy);
302     c2->SetFillColor(10);
303     tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
304     tzz->DrawLatex(.90,0.98,"SIGMA");
305    
306 pam-fi 1.9
307     TCanvas *sig=new TCanvas("sig","FTrkCalibQLook_EXPERT_histosig",canvasx,canvasy);
308     sig->SetFillColor(10);
309     tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
310     tzz->DrawLatex(.85,0.97,"Histograms of the sigmas");
311    
312    
313    
314 pam-fi 1.1 // draw pads
315 pam-fi 1.9 TPad *trkpad1[12],*trkpad2[12],*trkpad3[36]; //pad for histos
316 pam-fi 1.1 TPaveText *trkpadtext[12]; //pad for header
317     TH1F *histosig[12]; //histos of sigma
318     TH1F *histoped[12]; //histos of pedestals
319     TH1F *histoasig[12]; //histos of sigma
320     TH1F *histoaped[12]; //histos of pedestals
321 pam-fi 1.9
322     TH1F *histosiglad[12][3]; //histos of sigma
323     stringstream title;
324     stringstream hid;
325 pam-fi 1.1
326 pam-fi 1.3 Float_t posy = 0.95; // up y-coord - top pads
327     Float_t hpad = 0.15; // pad height
328     Float_t posx1=0; // left x-coord - pad column
329     Float_t posx2=0; // right x-coord - pad olumn
330     Float_t posx0=0; // x-coord - column division
331     Float_t wrel = 0.6; // relative x size of first sub-column
332     Float_t marg = 0.004; // margin among pads
333 pam-fi 1.1
334 pam-fi 1.9
335 pam-fi 1.1 for(Int_t n = 0; n<12; n++){
336     if ( (n+1)%2 ) {
337     if(n>1)posy = posy-(marg*2+hpad);
338     posx1 = marg;
339     posx2 = 0.5 - marg;
340     posx0 = 0.5*wrel;
341 pam-fi 1.9
342 pam-fi 1.1 } else {
343     posx1 = posx1 + 0.5;
344     posx2 = posx2 + 0.5;
345     posx0 = posx0 + 0.5;
346 pam-fi 1.9
347 pam-fi 1.1 };
348     /* -----------> pad for histograms */
349     trkpad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);
350     trkpad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);
351     /* -----------> pad for header dump */
352     trkpadtext[n] = new TPaveText((posx0+marg),(posy-hpad),posx2,posy);
353     /* -----------> HISTOGRAMS */
354     /* calibration parameters */
355     title<<"DSP "<<n+1;
356 pam-fi 1.4 hid<<"h"<<n<<"i"<<i;
357 pam-fi 1.1 histosig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
358     hid.str("");
359 pam-fi 1.4 hid<<"hh"<<n<<"i"<<i;
360 pam-fi 1.1 histoped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
361     hid.str("");
362 pam-fi 1.4 hid<<"hhh"<<n<<"i"<<i;
363 pam-fi 1.1 hid.str("");
364     /* AVERAGE calibration parameters */
365 pam-fi 1.4 hid<<"ah"<<n<<"i"<<i;
366 pam-fi 1.1 histoasig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
367     hid.str("");
368 pam-fi 1.4 hid<<"ahh"<<n<<"i"<<i;
369 pam-fi 1.1 histoaped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
370     hid.str("");
371 pam-fi 1.9 for(int ii=0;ii<3;ii++){
372     title.str("");
373     title<<"DSP "<<n+1<<" / Lad "<<ii+1;
374     hid<<"hhhh"<<n<<"i"<<i<<"ii"<<ii;
375     histosiglad[n][ii] = new TH1F(hid.str().c_str(),title.str().c_str(),32,-0.5,30.5);
376     hid.str("");
377     }
378     title.str("");
379 pam-fi 1.1 }; //end loop on views
380 pam-fi 1.9
381     Float_t tposy = 0.95; // up y-coord - top pads
382     Float_t thpad = 0.; // pad height
383     Float_t tposx1=0; // left x-coord - pad column
384     Float_t tposx0=0; // x-coord - column division
385     Float_t twrel = 0.; // relative x size of first sub-column
386     Float_t tmarg = 0.002; // margin among pads
387     thpad = (tposy-tmarg*11)/6;
388     twrel = (1-tmarg*12)/6;
389    
390     for(Int_t n = 0; n<36; n++){
391     if ( (n+1)%6==1 ) {
392     if(n>1) tposy = tposy-(tmarg*2+thpad);
393     tposx1 = tmarg;
394     tposx0 = tposx1 + twrel;
395     } else {
396     tposx1 = tposx0 + 2*tmarg;
397     tposx0 = tposx1 + twrel;
398     }
399     trkpad3[n]= new TPad("pad3"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
400     }
401    
402    
403 pam-fi 1.1 stringstream message;
404 pam-fi 1.9
405 pam-fi 1.1 //--------------------------------
406     //CHECK CALIBRATION procedure
407     //--------------------------------
408     Int_t nn=0;
409     Int_t calok = 0;//BAD
410     for(Int_t n = 0; n<12; n++){
411     if(ctrk.ncalev[n]==0 && ctrk.calfl[n]==0)calok = 1;//GOOD
412 pam-fi 1.9
413 pam-fi 1.1
414     nn=ctrk.dspnum[n]-1;
415     /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
416     *
417     * Write event LEVEL0 report
418     *
419     *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*/
420     trkpadtext[nn]->SetTextFont(40);
421     trkpadtext[nn]->SetFillColor(33);
422     if(calok==0)trkpadtext[nn]->SetFillColor(2);
423     trkpadtext[nn]->SetTextSize(0.013);
424     trkpadtext[nn]->SetTextAlign(13);
425     trkpadtext[nn]->SetTextColor(1);
426    
427     trkpadtext[nn]->AddText(" ");
428     message<<"DSP num --------> "<<ctrk.dspnum[n];
429     trkpadtext[nn]->AddText(message.str().c_str());
430     message.str("");
431     message<<"DAQ mode -------> "<<ctrk.daqmode[n];
432     trkpadtext[nn]->AddText(message.str().c_str());
433     message.str("");
434     message<<"Calibnumber ----> "<<ctrk.calibnum[n];
435     trkpadtext[nn]->AddText(message.str().c_str());
436     message.str("");
437     message<<"ncalib_event ---> "<<ctrk.ncalev[n];
438     trkpadtext[nn]->AddText(message.str().c_str());
439     message.str("");
440     message<<"Cal_flag -------> "<<ctrk.calfl[n];
441     trkpadtext[nn]->AddText(message.str().c_str());
442     message.str("");
443     message<<"crc_hcal -------> "<<ctrk.crc_hc[n];
444     trkpadtext[nn]->AddText(message.str().c_str());
445     message.str("");
446     message<<"crc_cal: l1- ";message.width(5);message<< ctrk.crc_c[n][0];
447     message<<" l2- ";message.width(5);message<< ctrk.crc_c[n][1];
448     message<<" l3- ";message.width(5);message<< ctrk.crc_c[n][2];
449     trkpadtext[nn]->AddText(message.str().c_str());
450     message.str("");
451     message<<"<PED>: l1- "; message.width(5);message<< ctrk.ped1[n];
452     message<<" l2-"; message.width(5);message<< ctrk.ped2[n];
453     message<<" l3-"; message.width(5);message<< ctrk.ped3[n];
454     trkpadtext[nn]->AddText(message.str().c_str());
455     message.str("");
456     message<<"<SIG>: l1- "; message.width(5);message<< ctrk.sig1[n];
457     message<<" l2-"; message.width(5);message<< ctrk.sig2[n];
458     message<<" l3-"; message.width(5);message<< ctrk.sig3[n];
459     trkpadtext[nn]->AddText(message.str().c_str());
460     message.str("");
461     message<<"n.BAD: l1- "; message.width(5);message<<ctrk.nbad1[n];
462     message<<" l2-"; message.width(5);message<< ctrk.nbad2[n];
463     message<<" l3-"; message.width(5);message<< ctrk.nbad3[n];
464     trkpadtext[nn]->AddText(message.str().c_str());
465     message.str("");
466    
467     if(calok==0){
468    
469     message.str("*** FAILED ***");
470     TText *t=trkpadtext[nn]->AddText(message.str().c_str());
471     t->SetTextSize(0.02);
472     t->SetTextAlign(23);
473     t->SetTextColor(5);
474     };
475    
476     /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
477     *
478     * Plot histo
479     *
480     *.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*/
481    
482    
483     /******************************************************/
484     /* fill histos */
485     for(Int_t j = 0; j < 3072; j++){
486     histosig[nn]->Fill((Float_t)j,ctrk.dspsig[nn][j]);
487     histoped[nn]->Fill((Float_t)j,ctrk.dspped[nn][j]);
488 pam-fi 1.9 if(j<1024) histosiglad[nn][0]->Fill(ctrk.dspsig[nn][j]);
489     if(j>=1024 && j<2048) histosiglad[nn][1]->Fill(ctrk.dspsig[nn][j]);
490     if(j>=2048 && j<3072) histosiglad[nn][2]->Fill(ctrk.dspsig[nn][j]);
491 pam-fi 1.1 };
492     histoasig[nn]->Fill(1,ctrk.sig1[nn]);
493     histoasig[nn]->Fill(1025,ctrk.sig2[nn]);
494     histoasig[nn]->Fill(2049,ctrk.sig3[nn]);
495     histoaped[nn]->Fill(1,ctrk.ped1[nn]);
496     histoaped[nn]->Fill(1025,ctrk.ped2[nn]);
497     histoaped[nn]->Fill(2049,ctrk.ped3[nn]);
498     /******************************************************/
499    
500     TLine li;
501     li.SetLineColor(38);
502     li.SetLineStyle(3);
503     li.SetLineWidth(2);
504    
505 pam-fi 1.3 Float_t maxhist=0;
506 pam-fi 1.2 TBox b;
507 pam-fi 1.1 /* plot PEDESTAL */
508     c1->cd();
509     trkpadtext[nn]->Draw();
510     trkpad1[nn]->Draw();
511     trkpad1[nn]->cd();
512     trkpad1[nn]->SetFillColor(10);
513     trkpad1[nn]->SetFrameFillColor(10);
514 pam-fi 1.9 histoped[nn]->SetStats(kFALSE);
515 pam-fi 1.1 histoped[nn]->SetLineColor(1);
516     histoped[nn]->SetFillColor(12);
517     histoped[nn]->SetLineWidth(1);
518     histoped[nn]->GetYaxis()->SetTitle("PED (ADC channels)");
519     histoped[nn]->GetYaxis()->CenterTitle();
520 pam-fi 1.2 if((nn+1)%2==1) histoped[nn]->GetYaxis()->SetRangeUser(2200,3200);
521     if((nn+1)%2==0) histoped[nn]->GetYaxis()->SetRangeUser(700,1700);
522 pam-fi 1.1 histoaped[nn]->SetLineColor(5);
523     histoaped[nn]->SetLineWidth(1);
524 pam-fi 1.2 if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
525     histoped[nn]->Draw("b");
526     if(nn==1){
527     maxhist=histoped[nn]->GetMaximum();
528 pam-fi 1.9 b.SetFillColor(6);
529     b.SetFillStyle(3945);
530     b.DrawBox(2944.,700.,3060.,maxhist);
531    
532     b.SetFillColor(107);
533     b.SetFillStyle(3954);
534     b.DrawBox(2816.,700.,2944.,maxhist);
535     b.DrawBox(2048.,700.,2176.,maxhist);
536 pam-fi 1.2 }
537 pam-fi 1.11 else if(nn==4){
538     maxhist=histoped[nn]->GetMaximum();
539     b.SetFillColor(107);
540     b.SetFillStyle(3954);
541     b.DrawBox(384.,2200.,512.,maxhist);
542     }
543 pam-fi 1.2 else if(nn==6){
544     maxhist=histoped[nn]->GetMaximum();
545 pam-fi 1.9 b.SetFillColor(6);
546     b.SetFillStyle(3945);
547 pam-fi 1.2 b.DrawBox(2560.,2200.,2816.,maxhist);
548 pam-fi 1.12 b.DrawBox(1024.,2200.,1535.,maxhist);
549 pam-fi 1.9
550     b.SetFillColor(107);
551     b.SetFillStyle(3954);
552 pam-fi 1.2 b.DrawBox(512.,2200.,768.,maxhist);
553 pam-fi 1.12 b.DrawBox(1536.,2200.,1792.,maxhist);
554 pam-fi 1.9 }
555     else if(nn==7){
556     maxhist=histoped[nn]->GetMaximum();
557     b.SetFillColor(107);
558     b.SetFillStyle(3954);
559     b.DrawBox(512.,700.,768.,maxhist);
560 pam-fi 1.2 }
561     else if(nn==11){
562     maxhist=histoped[nn]->GetMaximum();
563 pam-fi 1.9 b.SetFillColor(6);
564     b.SetFillStyle(3945);
565 pam-fi 1.2 b.DrawBox(768.,700.,1024.,maxhist);
566 pam-fi 1.9
567     b.SetFillColor(107);
568     b.SetFillStyle(3954);
569     b.DrawBox(0.,700.,512.,maxhist);
570     b.DrawBox(1920.,700.,2048.,maxhist);
571 pam-fi 1.13 b.DrawBox(2176.,700.,2304.,maxhist);
572 pam-fi 1.2 }
573     }
574 pam-fi 1.1 else histoped[nn]->Draw("axis");
575     histoaped[nn]->Draw("same");
576     if((nn+1)%2==1) {
577 pam-fi 1.2 li.DrawLine(1024.5,2200,1024.5,3200);
578     li.DrawLine(2048.5,2200,2048.5,3200);
579 pam-fi 1.1 }
580     if((nn+1)%2==0) {
581 pam-fi 1.2 li.DrawLine(1024.5,700,1024.5,1700);
582     li.DrawLine(2048.5,700,2048.5,1700);
583 pam-fi 1.1 }
584    
585 pam-fi 1.2
586 pam-fi 1.1
587     /* plot SIGMA */
588 pam-fi 1.3 Float_t max=500.;
589 pam-fi 1.1 c2->cd();
590     trkpadtext[nn]->Draw();
591     trkpad2[nn]->SetLogy();
592     trkpad2[nn]->Draw();
593     trkpad2[nn]->cd();
594     trkpad2[nn]->SetFillColor(10);
595     trkpad2[nn]->SetFrameFillColor(10);
596 pam-fi 1.9 histosig[nn]->SetStats(kFALSE);
597 pam-fi 1.1 histosig[nn]->SetLineColor(1);
598     histosig[nn]->SetFillColor(12);
599     histosig[nn]->SetLineWidth(1);
600     histosig[nn]->SetMaximum(max);
601     histosig[nn]->SetMinimum(0.5);
602     histosig[nn]->GetYaxis()->SetTitle("SIG (ADC channels)");
603     histosig[nn]->GetYaxis()->CenterTitle();
604     histoasig[nn]->SetLineColor(5);
605     histoasig[nn]->SetLineWidth(1);
606 pam-fi 1.2 if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
607     histosig[nn]->Draw("b");
608     if(nn==1){
609     maxhist=histosig[nn]->GetMaximum();
610 pam-fi 1.9 b.SetFillColor(6);
611     b.SetFillStyle(3945);
612     b.DrawBox(2944.,0.,3060.,maxhist);
613    
614     b.SetFillColor(107);
615     b.SetFillStyle(3954);
616     b.DrawBox(2816.,0.,2944.,maxhist);
617     b.DrawBox(2048.,0.,2176.,maxhist);
618 pam-fi 1.2 }
619 pam-fi 1.11 else if(nn==4){
620     maxhist=histosig[nn]->GetMaximum();
621     b.SetFillColor(107);
622     b.SetFillStyle(3954);
623     b.DrawBox(384.,0.,512.,maxhist);
624     }
625 pam-fi 1.2 else if(nn==6){
626     maxhist=histosig[nn]->GetMaximum();
627 pam-fi 1.9 b.SetFillColor(6);
628     b.SetFillStyle(3945);
629 pam-fi 1.2 b.DrawBox(2560.,0.,2816.,maxhist);
630 pam-fi 1.12 b.DrawBox(1024.,0.,1535.,maxhist);
631 pam-fi 1.9
632     b.SetFillColor(107);
633     b.SetFillStyle(3954);
634     b.DrawBox(512.,0.,768.,maxhist);
635 pam-fi 1.12 b.DrawBox(1536.,0.,1792.,maxhist);
636 pam-fi 1.9 }
637     else if(nn==7){
638     maxhist=histosig[nn]->GetMaximum();
639     b.SetFillColor(107);
640     b.SetFillStyle(3954);
641 pam-fi 1.2 b.DrawBox(512.,0.,768.,maxhist);
642     }
643     else if(nn==11){
644     maxhist=histosig[nn]->GetMaximum();
645 pam-fi 1.9 b.SetFillColor(6);
646     b.SetFillStyle(3945);
647 pam-fi 1.2 b.DrawBox(768.,0.,1024.,maxhist);
648 pam-fi 1.9
649     b.SetFillColor(107);
650     b.SetFillStyle(3954);
651     b.DrawBox(0.,0.,512.,maxhist);
652     b.DrawBox(1920.,0.,2048.,maxhist);
653 pam-fi 1.13 b.DrawBox(2176.,0.,2304.,maxhist);
654 pam-fi 1.2 }
655     }
656 pam-fi 1.1 else histosig[nn]->Draw("axis");
657     histoasig[nn]->Draw("same");
658     li.DrawLine(1024.5,0,1024.5,max);
659     li.DrawLine(2048.5,0,2048.5,max);
660 pam-fi 1.2
661 pam-fi 1.9 for(int ii=0;ii<3;ii++){
662     sig->cd();
663     trkpad3[nn*3+ii]->Draw();
664     trkpad3[nn*3+ii]->cd();
665     trkpad3[nn*3+ii]->SetFillColor(10);
666     trkpad3[nn*3+ii]->SetFrameFillColor(10);
667     trkpad3[nn*3+ii]->SetLogy();
668     histosiglad[nn][ii]->SetLineColor(1);
669     histosiglad[nn][ii]->SetFillColor(1);
670     histosiglad[nn][ii]->SetLineWidth(1);
671     histosiglad[nn][ii]->GetXaxis()->SetTitle("SIG (ADC channels)");
672     histosiglad[nn][ii]->GetXaxis()->CenterTitle();
673     histosiglad[nn][ii]->Draw("");
674     }
675    
676 pam-fi 1.1 };//end loop on views
677     c1->Update();//draw pads in canvas
678     c2->Update();//draw pads in canvas
679 pam-fi 1.9 sig->Update();//draw pads in canvas
680    
681     stringstream nom1,nom2,nom3;
682    
683 pam-fi 1.1 if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
684     nom1.str("");
685     nom2.str("");
686 pam-fi 1.9 nom3.str("");
687 pam-fi 1.1 nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps(";
688 pam-fi 1.9 nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps";
689     nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps)";
690 pam-fi 1.1 c1->Print(nom1.str().c_str(),"Landscape");
691     c2->Print(nom2.str().c_str(),"Landscape");
692 pam-fi 1.9 sig->Print(nom3.str().c_str(),"Landscape");
693    
694 pam-fi 1.1 if(!strcmp(outfile.Data(),"pdf")){
695     stringstream com;
696     com<<"ps2pdf13 "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps "<<out<<ffile<<"_FTrkCalibQlook_EXPERT-pkt"<<i+1<<".pdf";
697     system(com.str().c_str());
698     printf("\n---> ps file converted in pdf format!\n");
699     com.str("");
700     com<<"rm -f "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps";
701     system(com.str().c_str());
702     printf("---> ps file removed!\n\n");
703     com.str("");
704     }
705     }
706     else{
707     nom1.str("");
708     nom2.str("");
709 pam-fi 1.9 nom3.str("");
710 pam-fi 1.1 nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-ped-pkt"<<i+1<<"."<<outfile.Data();
711     nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-sig-pkt"<<i+1<<"."<<outfile.Data();
712 pam-fi 1.9 nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-histosig-pkt"<<i+1<<"."<<outfile.Data();
713 pam-fi 1.1 c1->Print(nom1.str().c_str());
714     c2->Print(nom2.str().c_str());
715 pam-fi 1.9 sig->Print(nom3.str().c_str());
716 pam-fi 1.1 }
717 pam-fi 1.9
718 pam-fi 1.1 if(step==1 && i!=maxevent-1 ){
719     printf("\n Press 1<enter> to continue, 2<enter> to quit.\n");
720     cin>>risposta;
721     if ( i != maxevent-1 ) {
722     if ( risposta == 2 ) {
723     gROOT->Reset();
724     printf("Exiting...\n");
725     return;
726     }
727     }
728     }
729     };//end loop on events
730    
731     gROOT->Reset();
732     printf("... end of packets. \n");
733     return;
734     }
735    
736    

  ViewVC Help
Powered by ViewVC 1.1.23