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

Diff of /quicklook/tracker/flight/macros/FTrkScanQLook_EXPERT.cxx

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.20 by pam-fi, Fri Dec 8 17:49:31 2006 UTC revision 1.30 by pam-fi, Wed Jan 2 15:57:10 2008 UTC
# Line 2  Line 2 
2   *  FTrkScanQlook_EXPERT.cxx   *  FTrkScanQlook_EXPERT.cxx
3   *   *
4   * autor: D.Fedele   * autor: D.Fedele
5   * version v2r00   * version v2r08
6   * Parameters:   * Parameters:
7   *      file - the path to the root file to analyze   *      file - the path to the root file to analyze
8   *      outdir - total path of output file   *      outdir - total path of output file
9   *      event - the number of the single event to analyze   *      event - the number of the single event to analyze
10   *      va1 - the number of the single va1 to analyze (dsp*100+va1)   *      va1 - the number of the single va1 to analyze (dsp*100+va1)
11   *      value - the number of events to store in the .dat file with va1 values   *      value - the number of events to store in the .dat file with va1 values*10 + # of calibration (if #of cal = 0, select every calibration)
12   *      outfile - extension of output file (pdf,ps,gif,jpg)   *      outfile - extension of output file (pdf,ps,gif,jpg)
13   *                 *              
14   */   */
# Line 29  Line 29 
29  #include <physics/tracker/TrackerEvent.h>  #include <physics/tracker/TrackerEvent.h>
30  #include <PscuHeader.h>  #include <PscuHeader.h>
31  #include <EventHeader.h>  #include <EventHeader.h>
32    #include <CalibTrk1Event.h>
33    #include <CalibTrk2Event.h>
34  #include <RunHeaderEvent.h>  #include <RunHeaderEvent.h>
35  //  //
36    
# Line 143  void FTrkScanQLook_EXPERT(TString file, Line 145  void FTrkScanQLook_EXPERT(TString file,
145    pamela::EventHeader *eh=0,*eH=0;    pamela::EventHeader *eh=0,*eH=0;
146    pamela::PscuHeader *ph=0,*pH=0;    pamela::PscuHeader *ph=0,*pH=0;
147    pamela::RunHeaderEvent *reh=0;    pamela::RunHeaderEvent *reh=0;
148      pamela::CalibTrk1Event *trk1 = 0;
149      pamela::CalibTrk2Event *trk2 = 0;
150    pamela::EventCounter *cod=0;    pamela::EventCounter *cod=0;
151    
152    pamela::PacketType *pctp=0;    pamela::PacketType *pctp=0;
# Line 163  void FTrkScanQLook_EXPERT(TString file, Line 167  void FTrkScanQLook_EXPERT(TString file,
167    otr->SetBranchAddress("Header",&eH);    otr->SetBranchAddress("Header",&eH);
168    otr->SetBranchAddress("RunHeader",&reh);    otr->SetBranchAddress("RunHeader",&reh);
169    
170      TTree *otr1 = (TTree*)trackerFile->Get("CalibTrk1");
171      otr1->SetBranchAddress("CalibTrk1", &trk1);
172      TTree *otr2 = (TTree*)trackerFile->Get("CalibTrk2");
173      otr2->SetBranchAddress("CalibTrk2", &trk2);
174    
175    // Define variables    // Define variables
176    Int_t nevents = tr->GetEntries();    Int_t nevents = tr->GetEntries();
177    Int_t neventH = otr->GetEntries();    Int_t neventH = otr->GetEntries();
178      Int_t cevents=0;
179          
180      if(otr1->GetEntries()==otr2->GetEntries())
181        cevents = otr1->GetEntries();
182      else printf("\nWARNING: CalibTrk1 entries is different from CalibTrk2 entries\n\n");
183      
184      
185    if ( nevents <= 0 ) {    if ( nevents <= 0 ) {
186      trackerFile->Close();      trackerFile->Close();
187      printf("The file is empty, exiting...\n");      printf("The file is empty, exiting...\n");
# Line 184  void FTrkScanQLook_EXPERT(TString file, Line 200  void FTrkScanQLook_EXPERT(TString file,
200    //    //
201    printf("\n Number of Entries: %d\n",nevents);    printf("\n Number of Entries: %d\n",nevents);
202    printf(" Number of Header Entries: %d\n",neventH);    printf(" Number of Header Entries: %d\n",neventH);
203      printf(" Number of Calibration: %d\n",cevents);
204        
205    Long64_t obt=0;      ULong_t obt=0,hobt[neventH];  
206    Int_t eve,cin=0;    Int_t eve,cin=0,cins=0,br=0,olrun[neventH];
207    TString cal="";    TString cal="";
208      
209    eve=3;    eve=3;
210    for(Int_t i=0;i<neventH;i++){    for(Int_t i=0;i<neventH;i++){
211      otr->GetEntry(i);      otr->GetEntry(i);
212      pH = eH->GetPscuHeader();      pH = eH->GetPscuHeader();
213      if(reh->TRK_CALIB_USED!=104){      hobt[i]= pH->GetOrbitalTime();
214        olrun[i]=reh->TRK_CALIB_USED;
215        if(reh->TRK_CALIB_USED!=104 && br==0){
216        obt = pH->GetOrbitalTime();        obt = pH->GetOrbitalTime();
217        cal="Event with online calibration";        cal="Event with online calibration";
218        break;        br=1;
219      }      }
220      if(i==neventH-1){      if(i==neventH-1 && br==0){
221        cal="*****  ONLINE CALIBRATION NOT FOUND IN THIS FILE  *****";        cal="*****  ONLINE CALIBRATION NOT FOUND IN THIS FILE  *****";
222        eve=2;        eve=2;
223      }      }
224    }    }
   if(eve==3){  
     for(Int_t i=0;i<nevents;i++){  
       tr->GetEntry(i);  
       ph = eh->GetPscuHeader();  
       cod = eh->GetCounter();  
       if(i==0) cin=cod->Get(pctp->CalibTrk1);  
       if(reh->TRK_CALIB_USED==104) continue;  
       if(event<0 && cod->Get(pctp->CalibTrk1)==cin+1){  
         eve=i+3;  
         break;  
       }  
       else if(event>=0 && ph->GetOrbitalTime()>obt){  
         eve=i+3;  
         break;  
       }  
     }  
   }  
225    
226    int tot=2,totvalues=0,TOT=0;    int tot=2,totvalues=0,TOT=0,totsum=0;
227    if(event<0) tot=abs(event);    if(event<0) tot=abs(event);
228    if(value>0) totvalues=value;    if(value>0) totvalues=value/10;
229          
230    TOT= tot > totvalues ? tot : totvalues;    TOT= tot > totvalues ? tot : totvalues;
231      if(value>0) totsum= (value/10) > 100 ? (value/10) : 100;
232      else totsum=100;
233    
234      Int_t calev=cevents;
235    
236    TH1F *histomax[12][tot];           //histos of max signals    TH1F *histomax[12][tot];           //histos of max signals
237    TH1F *histocomp[12][tot];          //histos of compressed data    TH1F *histocomp[12][tot];          //histos of compressed data
238    TH1F *histofull[12][tot];          //histos of full data    TH1F *histofull[12][tot];          //histos of full data
239    TCanvas *c1[tot];    TCanvas *c1[tot],*csum[calev];
240    TH1F *histova[tot];               //histos of va1 signals      TH1F *histova[tot];
241      TGraph*sum[12][calev][totsum/2];                  
242    TCanvas *cva[tot];    TCanvas *cva[tot];
243        
244      TPad *trkpad[12];          //pad for histos
245    
246      stringstream fromfile,isfile,title,hid,message;
247      TString figsa="",figsav="",figsava="";
248      Int_t canvasx=1200;
249      Int_t canvasy=900;
250        
251    TLatex *t=new TLatex();    TLatex *t=new TLatex();
252    t->SetTextFont(32);    t->SetTextFont(32);
# Line 241  void FTrkScanQLook_EXPERT(TString file, Line 254  void FTrkScanQLook_EXPERT(TString file,
254    t->SetTextAlign(12);    t->SetTextAlign(12);
255    t->SetTextSize(0.02);    t->SetTextSize(0.02);
256    
257      gStyle->SetLabelSize(0.06,"x");
258      gStyle->SetLabelSize(0.06,"y");
259      gStyle->SetTitleFontSize(0.1);
260      gStyle->SetFillColor(10);  
261      gStyle->SetTitleFillColor(10);
262      gStyle->SetOptStat(0);
263        
264      Int_t p[12],psum=0;
265      Int_t whistostrip[3072];
266      for(int s=0;s<3072;s++) whistostrip[s]=s+1;
267    
268      if(eve==3){
269        for(Int_t i=0;i<nevents;i++){
270          tr->GetEntry(i);
271          ph = eh->GetPscuHeader();
272          cod = eh->GetCounter();
273          if(olrun[cod->Get(pctp->RunHeader)-1]==104) continue;
274          if(value%10!=0){
275            if(i==0) cin=cod->Get(pctp->CalibTrk1)+((value%10)-1);
276            if(cod->Get(pctp->CalibTrk1)==cin+1){
277              eve=i+3;
278              cin=100;
279            }
280          }
281          else {
282            if(i==0) cin=cod->Get(pctp->CalibTrk1);
283            if(event<0 && cod->Get(pctp->CalibTrk1)==cin+1){
284              eve=i+3;
285              cin=100;
286            }
287            else if(event>=0 && (ULong_t)ph->GetOrbitalTime()>obt && obt>0){
288              eve=i+3;
289              obt=0;
290            }
291          }
292          if(i==0) cins=cod->Get(pctp->CalibTrk1);
293          if(cod->Get(pctp->CalibTrk1)>cins){
294            psum=1;
295            cins=cod->Get(pctp->CalibTrk1);
296          }
297          if(psum==1){
298            figsa=out+ffile+"_FTrkScanQLook_EXPERT_sumof";
299            figsa+=totsum;
300            figsa+="events_cal";
301            figsa+=cins;
302            csum[cins-1] = new TCanvas(figsa.Data(),"FTrkQLookSCAN",canvasx,canvasy);
303            csum[cins-1]->SetFillColor(10);
304            csum[cins-1]->Range(0,0,1,1);
305            fromfile.str("");
306            fromfile<<"FTrkScanQLook_EXPERT      File: "<<ffile<<"   ---->  Sum of "<<totsum<<" events after the "<<cins<<"  calibration  at OBT= "<<hobt[(cod->Get(pctp->RunHeader))-1];
307            t->SetTextSize(0.02);
308            t->DrawLatex(0.02,0.98,fromfile.str().c_str());
309            
310            //  draw pads
311            Double_t posy = 0.95;    // up y-coord - top pads
312            Double_t hpad = 0.15;   // pad height
313            Double_t posx1=0;          // left  x-coord - pad column
314            Double_t posx0=0;          //       x-coord - column division
315            Double_t wrel = 0.6;     // relative x size of first sub-column
316            Double_t marg = 0.004;   // margin among pads
317            
318            hpad = (posy-marg*11)/6;
319            wrel = (1-marg*4)/2;
320            for(Int_t n = 0; n<12; n++){
321              if ( (n+1)%2 ) {
322                if(n>1)posy = posy-(marg*2+hpad);
323                posx1 = marg;
324                posx0 = posx1 + wrel;
325              } else {
326                posx1 = posx0 + 2*marg;
327                posx0 = posx1 + wrel;
328              };
329              
330              /* -----------> pad for histograms  */
331              trkpad[n] = new TPad("pad"," ",posx1,posy-hpad,posx0,posy,18,0,0);
332              trkpad[n]->SetFillColor(19);
333              trkpad[n]->SetFrameFillColor(10);
334    
335              p[n]=0;
336            }
337          }
338          if(psum>0 && psum<=totsum){
339            // = = = = = = = = = = = = = = = = = = = = = = = = =
340            //  create header dump retrieving event info
341            // = = = = = = = = = = = = = = = = = = = = = = = = =
342            Int_t ndsp=0;
343            
344            Int_t whistomax[3072];
345            Int_t whisto[3072];
346            Int_t whistocomp[3072];
347            Int_t whistofull[3072];
348            
349            //      //      transmitted words
350            Int_t word = 0;
351            Int_t iword = 0;  
352            Int_t ii=0,ifull[12],icomp[12],imax[12],nn=0;    
353            trkword thisword;
354            
355            Int_t address,ladder;
356            
357            
358            for(Int_t n = 0; n<12; n++){
359              ndsp = trk->DSPnumber[n];
360              nn = ndsp-1;
361              ifull[nn]=0;
362              icomp[nn]=0;
363              imax[nn]=0;
364              
365              for(Int_t vi = 0; vi< 3072; vi++){
366                whistomax[vi] = -200;
367                whistocomp[vi] = -200;
368                whistofull[vi] = -200;
369                whisto[vi] = -200;
370              }
371              
372              //              //      trasmitted data
373              //              
374              address = 0;
375              ladder = 1;
376              for(Int_t vi = 0; vi < trk->DATAlength[n] ; vi++){
377                word = trk->TrackerData.At(iword);      
378                thisword = datadecode(word);
379                iword++;
380                switch (thisword.type){
381                  
382                case 0:  //ADC value
383                  whisto[address] = thisword.decode;
384                  address++;    
385                  //        cout << "    adr " << address << "\n";
386                  break;
387                  
388                case 1:  //address
389                  address = 1024*(ladder-1) + thisword.decode;
390                  //        cout << "    adr " << address << "\n";
391                  break;
392                  
393                case 2:  //end-of-ladder
394                  ladder = thisword.decode;
395                  //                cout << "Ladder " << ladder << "\n";
396                  if(ladder==3){
397                    //                  end of compressed data - FILL HISTO
398                    //cout << ">>> COMPRESSED data" << "\n";
399                    for(ii = 0; ii < 3072; ii++){
400                      whistocomp[ii]=whisto[ii];
401                      whisto[ii] = -200;
402                    }
403                    address = 0;
404                    ladder = 1;                
405                  }else if(ladder==6){
406                    //                  end of full data - FILL HISTO
407                    //cout << ">>> FULL data" << "\n";
408                    for(ii = 0; ii < 3072; ii++){
409                      whistofull[ii]=whisto[ii];
410                      whisto[ii] = -200;
411                    }
412                    address = 0;
413                    ladder = 1;
414                  }else{            
415                    if(ladder>3)    ladder=ladder-3;
416                    address= ladder*1024;          
417                    ladder = ladder + 1;    
418                  }
419                }    
420              }    
421              
422              for(Int_t vi = 0; vi < 3072; vi++){
423                if(whistofull[vi]>-200){
424                  if(vi==3071){
425                    sum[nn][cins-1][p[nn]] = new TGraph(3072,whistostrip,whistofull);
426                    p[nn]++;
427                  }              
428                  if(value%10==0 && value>0){
429                    if(whistofull[vi]>0){
430                      if(vi==0) values << (short int)ndsp << " ";
431                      values <<(short int) whistofull[vi] <<" ";
432                      if(vi==3071) values << endl;
433                    }
434                  }
435                }
436              }
437            }
438            psum++;
439            if(value%10==0 && value>0) values << (short int)0 << endl << endl;
440          }
441          if(psum==totsum+1){
442            if(value%10==0 && value>0) values << (short int)(-cins) << endl << endl;
443            psum=0;
444            for(Int_t vi = 0; vi < 12; vi++){        
445              if(p[vi]>0){
446    
447                TLine li,liva1;
448                li.SetLineColor(38);
449                li.SetLineStyle(4);
450                li.SetLineWidth(2);
451                liva1.SetLineColor(42);
452                liva1.SetLineStyle(3);
453                liva1.SetLineWidth(1);
454              
455                Float_t va1x=0;
456                csum[cins-1]->cd();
457                trkpad[vi]->Draw();
458                trkpad[vi]->cd();
459                trkpad[vi]->SetFillColor(10);
460              
461                stringstream tit,hid;
462                tit.str("");
463                hid.str("");
464                tit<<"DSP "<<vi+1;
465                sum[vi][cins-1][0]->SetTitle(tit.str().c_str());
466                sum[vi][cins-1][0]->GetXaxis()->SetTitle("channel id");
467                sum[vi][cins-1][0]->GetXaxis()->CenterTitle();
468                sum[vi][cins-1][0]->GetXaxis()->SetRangeUser(0,3073);
469                sum[vi][cins-1][0]->GetXaxis()->SetTitleSize(0.06);
470                sum[vi][cins-1][0]->GetXaxis()->SetTitleOffset(0.8);
471                sum[vi][cins-1][0]->GetYaxis()->SetTitle("ADC value");
472                sum[vi][cins-1][0]->GetYaxis()->SetTitleSize(0.09);
473                sum[vi][cins-1][0]->GetYaxis()->SetTitleOffset(0.4);
474                sum[vi][cins-1][0]->GetYaxis()->CenterTitle();
475                sum[vi][cins-1][0]->GetYaxis()->SetRangeUser(0,4500);
476                sum[vi][cins-1][0]->SetMarkerStyle(20);
477                sum[vi][cins-1][0]->SetMarkerSize(0.1);
478                sum[vi][cins-1][0]->SetMarkerColor(4);
479                sum[vi][cins-1][0]->Draw("ap");
480                hid<<p[vi]<<" events";
481                t->SetTextSize(0.11);
482                t->DrawLatex(2400,4250,hid.str().c_str());
483                for(int pi=1; pi<p[vi];pi++){
484                  sum[vi][cins-1][pi]->SetMarkerStyle(21);
485                  sum[vi][cins-1][pi]->SetMarkerSize(0.1);
486                  sum[vi][cins-1][pi]->SetMarkerColor(4);
487                  sum[vi][cins-1][pi]->Draw("p");
488                }
489                for(int va=1; va<24; va++){
490                  va1x=128*va;
491                  liva1.DrawLine(va1x,0.,va1x,4500.);
492                }
493                li.DrawLine(1024.5,0.,1024.5,4500.);
494                li.DrawLine(2048.5,0.,2048.5,4500.);
495                csum[cins-1]->Update();
496                hid.str("");
497              }
498            }
499            if(strcmp(outfile.Data(),"ps") && strcmp(outfile.Data(),"pdf")){
500              figsa+="."+outfile;
501              csum[cins-1]->Print(figsa.Data());
502            }
503            if(cod->Get(pctp->CalibTrk1)==cevents) break;
504          }
505        }
506      }
507    
508      if(!strcmp(outfile.Data(),"ps") || !strcmp(outfile.Data(),"pdf")){
509        stringstream nom1,nom2,nom3;
510        nom1<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.ps(";
511        nom2<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.ps";
512        nom3<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.ps)";
513        
514        for(int va=0; va<cevents; va++){
515          if(cevents==1) csum[va]->Print(nom2.str().c_str(),"Landscape");
516          if(cevents>2){
517            if(va==0) csum[va]->Print(nom1.str().c_str(),"Landscape");
518            if(va>0 && va<cevents-1) csum[va]->Print(nom2.str().c_str(),"Landscape");
519            if(va>0 && va==cevents-1) csum[va]->Print(nom3.str().c_str(),"Landscape");
520          }
521        }
522      }  
523      //
524      // Convert ps to pdf if required
525      if(!strcmp(outfile.Data(),"pdf")){
526        stringstream com;
527        com<<"ps2pdf13 "<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.ps "<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.pdf";
528        system(com.str().c_str());
529        printf("\n---> ps file converted in pdf format!\n");
530        com.str("");
531        com<<"rm -f "<<out<<ffile<<"_FTrkScanQLook_EXPERT_sumof"<<totsum<<"event.ps ";
532        system(com.str().c_str());
533        printf("---> ps file removed!\n\n");
534        com.str("");
535      }
536    
537    
538    
539    for(Int_t e=0;e<TOT;e++){    for(Int_t e=0;e<TOT;e++){
540      if(event<=0)      if(event<=0 || (value%10!=0 && e==0))
541        event=eve;        event=eve;
542      else {      else {
543        event=event+1;        event=event+1;
# Line 257  void FTrkScanQLook_EXPERT(TString file, Line 551  void FTrkScanQLook_EXPERT(TString file,
551      tr->GetEntry(event);          tr->GetEntry(event);    
552      //============================================================================        //============================================================================  
553    
554        gStyle->SetLabelSize(0.06,"x");      //  draw display area      
555        gStyle->SetLabelSize(0.06,"y");  
556        //gStyle->SetTitleFontSize(0.1);      TPad *trkpad[12],*pad=0;          //pad for histos
557        gStyle->SetFillColor(10);        TPaveText *trkpadtext[12]; //pad for header
558        gStyle->SetTitleFillColor(10);      Int_t ndsp=0;
559        gStyle->SetTitleOffset(-1,"Y");  
560        gStyle->SetOptStat(0);      if((tot<TOT && e<tot) || tot==TOT){
       
       //  draw display area      
   
       stringstream fromfile,title,hid,message;  
       TString figsa="",figsav="",figsava="";  
   
       TPad *trkpad[12],*pad=0;          //pad for histos  
       TPaveText *trkpadtext[12]; //pad for header  
   
       if((tot<TOT && e<tot) || tot==TOT){  
       Int_t canvasx=1200;  
       Int_t canvasy=900;  
561        figsav=out+ffile+"_FTrkScanQLook_EXPERT_ev";        figsav=out+ffile+"_FTrkScanQLook_EXPERT_ev";
562        figsav+=event+1;        figsav+=event+1;
563        c1[e] = new TCanvas(figsav.Data(),"FTrkQLookSCAN",canvasx,canvasy);        c1[e] = new TCanvas(figsav.Data(),"FTrkQLookSCAN",canvasx,canvasy);
# Line 283  void FTrkScanQLook_EXPERT(TString file, Line 565  void FTrkScanQLook_EXPERT(TString file,
565        c1[e]->Range(0,0,1,1);        c1[e]->Range(0,0,1,1);
566        fromfile.str("");        fromfile.str("");
567        fromfile<<"FTrkScanQLook_EXPERT      File: "<<ffile<<"            ---->  Entry  "<<event;        fromfile<<"FTrkScanQLook_EXPERT      File: "<<ffile<<"            ---->  Entry  "<<event;
568          t->SetTextSize(0.02);
569        t->DrawLatex(0.02,0.98,fromfile.str().c_str());        t->DrawLatex(0.02,0.98,fromfile.str().c_str());
570        t->DrawLatex(0.60,0.98,cal.Data());        t->DrawLatex(0.60,0.98,cal.Data());
571      
572          isfile<<"Chips with white line at least once showed anomalous behaviour";
573          t->SetTextColor(1);
574          t->SetTextSize(0.018);
575          t->DrawLatex(.05,.96,isfile.str().c_str());
576          isfile.str("");
577          
578          isfile<<"Boxes so colored point out anomalous chips (not necessarily broken)";
579          t->SetTextColor(107);
580          //      t->DrawLatex(.5,.96,isfile.str().c_str());
581          isfile.str("");
582          t->SetTextColor(1);
583    
584        if(va1!=0){        if(va1!=0){
585          figsava=out+ffile+"_FTrkScanQLook_EXPERT_ev";          figsava=out+ffile+"_FTrkScanQLook_EXPERT_ev";
# Line 330  void FTrkScanQLook_EXPERT(TString file, Line 625  void FTrkScanQLook_EXPERT(TString file,
625          /* -----------> pad for header dump */          /* -----------> pad for header dump */
626          trkpadtext[n] = new TPaveText((posx0+marg),(posy-hpad),posx2,posy);          trkpadtext[n] = new TPaveText((posx0+marg),(posy-hpad),posx2,posy);
627          /* -----------> HISTOGRAMS          */          /* -----------> HISTOGRAMS          */
628            
629            title.str("");
630          title<<"DSP "<<n+1;          title<<"DSP "<<n+1;
631          hid<<"h"<<n+e*100;          hid<<"h"<<n+e*100;
632          histomax[n][e] = new TH1F(hid.str().c_str(),title.str().c_str(),3073,-0.5,3072.5);          histomax[n][e] = new TH1F(hid.str().c_str(),title.str().c_str(),3073,-0.5,3072.5);
# Line 352  void FTrkScanQLook_EXPERT(TString file, Line 648  void FTrkScanQLook_EXPERT(TString file,
648        pad = new TPad("padva"," ",0,0,1,0.97,18,0,0);        pad = new TPad("padva"," ",0,0,1,0.97,18,0,0);
649        pad->SetFillColor(19);        pad->SetFillColor(19);
650        pad->SetFrameFillColor(10);        pad->SetFrameFillColor(10);
651      }        }
652      // = = = = = = = = = = = = = = = = = = = = = = = = =      // = = = = = = = = = = = = = = = = = = = = = = = = =
653      //  create header dump retrieving event info      //  create header dump retrieving event info
654      // = = = = = = = = = = = = = = = = = = = = = = = = =      // = = = = = = = = = = = = = = = = = = = = = = = = =
655      Int_t ndsp=0;      
656    
657      Double_t whistomax[3072];      Double_t whistomax[3072];
658      Double_t whisto[3072];      Double_t whisto[3072];
# Line 522  void FTrkScanQLook_EXPERT(TString file, Line 818  void FTrkScanQLook_EXPERT(TString file,
818            if(whistomax[i]>-200) imax[nn]=1;            if(whistomax[i]>-200) imax[nn]=1;
819            if(whistocomp[i]>-200) icomp[nn]=1;            if(whistocomp[i]>-200) icomp[nn]=1;
820            if(whistofull[i]>-200) ifull[nn]=1;            if(whistofull[i]>-200) ifull[nn]=1;
821            if(totvalues==TOT || (totvalues<TOT && e<totvalues)){            if(value%10!=0){
822              if(whistofull[i]>0){              if((totvalues<TOT && e<totvalues) || totvalues==TOT){
823                if(i==0) values << ndsp << " ";                if(whistofull[i]>0){
824                values <<(short int) whistofull[i] <<" ";                  if(i==0) values << (short int)ndsp << " ";
825                if(i==3071) values << endl;                  values <<(short int) whistofull[i] <<" ";
826                    if(i==3071) values << endl;
827                  }
828              }              }
829            }            }
830            if((tot<TOT && e<tot) || tot==TOT){            if((tot<TOT && e<tot) || tot==TOT){
# Line 550  void FTrkScanQLook_EXPERT(TString file, Line 848  void FTrkScanQLook_EXPERT(TString file,
848            liva1.SetLineStyle(3);            liva1.SetLineStyle(3);
849            liva1.SetLineWidth(1);            liva1.SetLineWidth(1);
850    
851            Float_t va1x=0;            Float_t va1x=0,maxhist=4500.,minhist=-500.;
852    
853            if(va1!=0){            if(va1!=0){
854              cva[e]->cd();              cva[e]->cd();
# Line 595  void FTrkScanQLook_EXPERT(TString file, Line 893  void FTrkScanQLook_EXPERT(TString file,
893            if(icomp[nn]==1) histocomp[nn][e]->Draw("9bsame][");            if(icomp[nn]==1) histocomp[nn][e]->Draw("9bsame][");
894            if(imax[nn]==1) histomax[nn][e]->Draw("same][");            if(imax[nn]==1) histomax[nn][e]->Draw("same][");
895            histocomp[nn][e]->Draw("axis same");            histocomp[nn][e]->Draw("axis same");
896              
897              b.SetFillColor(19);
898              b.SetFillStyle(3945);
899            if(nn==0){            if(nn==0){
900              b.SetFillColor(107);              b.DrawBox(0.,minhist,2047.,maxhist);
             b.SetFillStyle(3945);  
             b.DrawBox(768.,-500.,2047.,4500.);  
901            }            }
902            else if(nn==1){            else if(nn==1){
903              b.SetFillColor(6);              b.DrawBox(128.,minhist,256.,maxhist);
904              b.SetFillStyle(3945);              b.DrawBox(384.,minhist,512.,maxhist);
905              b.DrawBox(2944.,-500.,3060.,4500.);              b.DrawBox(896.,minhist,1024.,maxhist);
906                        b.DrawBox(2048.,minhist,2432.,maxhist);
907              b.SetFillColor(107);              b.DrawBox(2816.,minhist,2944.,maxhist);
908              b.SetFillStyle(3954);              b.DrawBox(2944.,minhist,3070.,maxhist);
909              //b.DrawBox(384.,-500.,512.,4500.);            }
910              b.DrawBox(2816.,-500.,2944.,4500.);            else if(nn==3){
911              b.DrawBox(2048.,-500.,2176.,4500.);              b.DrawBox(0.,minhist,256.,maxhist);
912                b.DrawBox(2816.,minhist,3070.,maxhist);
913            }            }
914            else if(nn==4){            else if(nn==4){
915              b.SetFillColor(107);              b.DrawBox(256.,minhist,512.,maxhist);
916              b.SetFillStyle(3954);              b.DrawBox(1792.,minhist,1920.,maxhist);
917              b.DrawBox(384.,-500.,512.,4500.);              b.DrawBox(2816.,minhist,3070.,maxhist);
918              }
919              else if(nn==5){
920                b.DrawBox(0.,minhist,256.,maxhist);
921                b.DrawBox(896.,minhist,1024.,maxhist);
922                b.DrawBox(1664.,minhist,1792.,maxhist);      
923            }            }
924            else if(nn==6){            else if(nn==6){
925              b.SetFillColor(6);              b.DrawBox(512.,minhist,768.,maxhist);
926              b.SetFillStyle(3945);              b.DrawBox(1024.,minhist,1280.,maxhist);
927              b.DrawBox(2560.,-500.,2816.,4500.);              b.DrawBox(1280.,minhist,1792.,maxhist);
928              b.DrawBox(1024.,-500.,1535.,4500.);              b.DrawBox(2560.,minhist,2816.,maxhist);
           
             b.SetFillColor(107);  
             b.SetFillStyle(3954);  
             b.DrawBox(512.,-500.,768.,4500.);  
             b.DrawBox(1536.,-500.,1792.,4500.);  
929            }            }
930            else if(nn==7){            else if(nn==7){
931              b.SetFillColor(107);              b.DrawBox(0.,minhist,1535.,maxhist);
932              b.SetFillStyle(3954);              b.DrawBox(2024.,minhist,2280.,maxhist);
             b.DrawBox(512.,-500.,768.,4500.);  
933            }            }
934            else if(nn==8){            else if(nn==8){
935              b.SetFillColor(107);              b.DrawBox(512.,minhist,768.,maxhist);
             b.SetFillStyle(3954);  
             b.DrawBox(512.,-500.,768.,4500.);  
936            }            }
937            else if(nn==9){            else if(nn==9){
938              b.SetFillColor(107);              b.DrawBox(0.,minhist,128.,maxhist);
939              b.SetFillStyle(3954);              b.DrawBox(256.,minhist,384.,maxhist);
940              b.DrawBox(256.,-500.,384.,4500.);              b.DrawBox(512.,minhist,640.,maxhist);
941              //b.DrawBox(1280.,-500.,1408.,4500.);              b.DrawBox(896.,minhist,1152.,maxhist);
942              //b.DrawBox(1792.,-500.,1920.,4500.);              b.DrawBox(1280.,minhist,1535.,maxhist);
943                b.DrawBox(1664.,minhist,1920.,maxhist);
944                b.DrawBox(2048.,minhist,2304.,maxhist);
945            }            }
946            else if(nn==10){            else if(nn==10){
947              b.SetFillColor(107);              b.DrawBox(0.,minhist,512.,maxhist);
948              b.SetFillStyle(3954);              b.DrawBox(1024.,minhist,3070.,maxhist);
             b.DrawBox(2048.,-500.,3070.,4500.);  
949            }            }
950            else if(nn==11){            else if(nn==11){
951              b.SetFillColor(6);              b.DrawBox(0.,minhist,512.,maxhist);
952              b.SetFillStyle(3945);              b.DrawBox(768.,minhist,1024.,maxhist);
953              b.DrawBox(768.,-500.,1024.,4500.);              b.DrawBox(1536.,minhist,1664.,maxhist);
954                        b.DrawBox(1920.,minhist,2560.,maxhist);
955              b.SetFillColor(107);              b.DrawBox(2816.,minhist,3070.,maxhist);
956              b.SetFillStyle(3954);            }                    
             b.DrawBox(0.,-500.,512.,4500.);  
             b.DrawBox(1920.,-500.,2560.,4500.);  
           }  
957            for(int va=1; va<24; va++){            for(int va=1; va<24; va++){
958              va1x=128*va;              va1x=128*va;
959              liva1.DrawLine(va1x,-500.,va1x,4500.);              liva1.DrawLine(va1x,minhist,va1x,maxhist);
960            }            }
961            li.DrawLine(1024.5,-500.,1024.5,4500.);            li.DrawLine(1024.5,minhist,1024.5,maxhist);
962            li.DrawLine(2048.5,-500.,2048.5,4500.);            li.DrawLine(2048.5,minhist,2048.5,maxhist);
963            c1[e]->Update();            c1[e]->Update();
964          }          }
965                    
# Line 679  void FTrkScanQLook_EXPERT(TString file, Line 974  void FTrkScanQLook_EXPERT(TString file,
974                
975        if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){        if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
976          if(e==0){          if(e==0){
977            c1[e]->Print(nom1.str().c_str(),"Portrait");            c1[e]->Print(nom1.str().c_str(),"Landscape");
978            if(va1!=0) cva[e]->Print(nom2.str().c_str(),"Portrait");            if(va1!=0) cva[e]->Print(nom2.str().c_str(),"Landscape");
979          }          }
980          if(e>0 && tot>2){          if(e>0 && tot>2){
981            c1[e]->Print(nom2.str().c_str(),"Portrait");            c1[e]->Print(nom2.str().c_str(),"Landscape");
982            if(va1!=0) cva[e]->Print(nom2.str().c_str(),"Portrait");            if(va1!=0) cva[e]->Print(nom2.str().c_str(),"Landscape");
983          }          }
984          if(e==tot-1){          if(e==tot-1){
985            c1[e]->Print(nom2.str().c_str(),"Portrait");            c1[e]->Print(nom2.str().c_str(),"Landscape");
986            if(va1!=0) cva[e]->Print(nom3.str().c_str(),"Portrait");            if(va1!=0) cva[e]->Print(nom3.str().c_str(),"Landscape");
987          }          }
988        }        }
989        else{        else{
# Line 700  void FTrkScanQLook_EXPERT(TString file, Line 995  void FTrkScanQLook_EXPERT(TString file,
995          }          }
996        }        }
997      }      }
998            if(value%10!=0){
999      if(totvalues==TOT || (totvalues<TOT && e<totvalues))        if(totvalues==TOT || (totvalues<TOT && e<totvalues))
1000        values << 0 << endl << endl;          values << (short int)0 << endl << endl;
1001        }
1002    }    }
1003    stringstream com;    stringstream com;
1004        

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.30

  ViewVC Help
Powered by ViewVC 1.1.23