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

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

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

revision 1.7 by pam-fi, Thu Jun 8 17:03:57 2006 UTC revision 1.22 by pam-fi, Mon Nov 20 11:33:24 2006 UTC
# Line 1  Line 1 
1  /**  /**
2   * FTrkQLook_EXPERT   * FTrkQLook_EXPERT.cxx
3   *   *
4   * autor: D.Fedele   * autor: D.Fedele
5   * version 3.0   * version v1r16
6   * Parameters:   * Parameters:
7   *      file - the data file to analyze   *      file - the data file to analyze
8   *      fromevent - first event to analyze   *      fromevent - first event to analyze
# Line 19  Line 19 
19  #include <TLatex.h>  #include <TLatex.h>
20  #include <TCanvas.h>  #include <TCanvas.h>
21  #include <TGraph.h>  #include <TGraph.h>
22    #include <TFile.h>
23  #include <TTree.h>  #include <TTree.h>
24  #include <TStyle.h>  #include <TStyle.h>
25  //  //
# Line 29  Line 30 
30  #include <TrkAlarmEvent.h>  #include <TrkAlarmEvent.h>
31  #include <tsbt/TsbTRecord.h>  #include <tsbt/TsbTRecord.h>
32  #include <tsbt/TsbTEvent.h>  #include <tsbt/TsbTEvent.h>
33    #include <tsbb/TsbBRecord.h>
34    #include <tsbb/TsbBEvent.h>
35  #include <EventCounter.h>  #include <EventCounter.h>
36  #include <PacketType.h>  #include <PacketType.h>
37  //  //
38  #define MAXSTORAGE 50000  #define MAXSTORAGE 50000
39    
 void stringcopy(TString& s1, const TString& s2, Int_t from=0, Int_t to=0){      
   if ( to == 0 ){  
     Int_t t2length = s2.Length();  
     s1 = "";  
     to = t2length;  
   };  
   for (Int_t i = from; i<to; i++){  
     s1.Append(s2[i],1);  
   };  
 };  
   
   
40  void FTrkQLook_EXPERT(TString file,Int_t fromevent,Int_t toevent, TString outdir, TString outfile)  void FTrkQLook_EXPERT(TString file,Int_t fromevent,Int_t toevent, TString outdir, TString outfile)
41  {  {
42    //    //
43    //   obtain information about the data file and select the output dir    //   obtain information about the data file and select the output dir
44    const string filepath=file.Data();    Int_t dwpos = file.Last('/');
45    Int_t dwpos = filepath.rfind("/");    Int_t dwpos1 = file.Last('.');
   Int_t dwpos1 = filepath.find(".root");  
   TString fpath=(filepath.c_str());  
46    TString base,ffile ;    TString base,ffile ;
47    stringcopy(ffile,fpath,dwpos+1,dwpos1);    ffile=file(dwpos+1,dwpos1-(dwpos+1));
48    stringcopy(base,fpath,0,dwpos);    if(dwpos>0) base=file(0,dwpos);
   if(dwpos>0) base+="/";  
49    
50    TString out;    TString out;
51    if(outdir.Length()==0){    if(outdir.Length()==0){
# Line 65  void FTrkQLook_EXPERT(TString file,Int_t Line 53  void FTrkQLook_EXPERT(TString file,Int_t
53    }else{    }else{
54      out = outdir;      out = outdir;
55    }    }
56      if(out.Last('/')+1<out.Length()) out+="/";
57    
58    //    //
59    // inizialise the variables and open the file    // inizialise the variables and open the file
60    pamela::TsbTEvent  *event = 0;    pamela::TsbTEvent  *event = 0;
61    pamela::TsbTRecord *record = 0;    pamela::TsbTRecord *record = 0;
62      pamela::TsbBEvent  *Bevent = 0;
63      pamela::TsbBRecord *Brecord = 0;
64    pamela::tracker::TrackerEvent *te=0;    pamela::tracker::TrackerEvent *te=0;
65    pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0;    pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0,*eB=0;
66    pamela::PscuHeader *ph=0,*pH=0;    pamela::PscuHeader *ph=0,*pH=0;
67    pamela::TrkAlarmEvent *al=0;    pamela::TrkAlarmEvent *al=0;
68    pamela::RunHeaderEvent *reh=0;    pamela::RunHeaderEvent *reh=0;
# Line 89  void FTrkQLook_EXPERT(TString file,Int_t Line 80  void FTrkQLook_EXPERT(TString file,Int_t
80    tree->SetBranchAddress("TsbT",&event);    tree->SetBranchAddress("TsbT",&event);
81    tree->SetBranchAddress("Header",&eT);    tree->SetBranchAddress("Header",&eT);
82    
83      TTree *Btree = (TTree*)datafile->Get("TsbB");
84      Btree->SetBranchAddress("TsbB",&Bevent);
85      Btree->SetBranchAddress("Header",&eB);
86    
87    TTree *altr = (TTree*)datafile->Get("TrkAlarm");    TTree *altr = (TTree*)datafile->Get("TrkAlarm");
88    altr->SetBranchAddress("TrkAlarm",&al);    altr->SetBranchAddress("TrkAlarm",&al);
89    altr->SetBranchAddress("Header",&aleh);    altr->SetBranchAddress("Header",&aleh);
# Line 104  void FTrkQLook_EXPERT(TString file,Int_t Line 99  void FTrkQLook_EXPERT(TString file,Int_t
99    Long64_t nevent = tr->GetEntries();    Long64_t nevent = tr->GetEntries();
100    Long64_t neventH = otr->GetEntries();    Long64_t neventH = otr->GetEntries();
101    Long64_t tnevent = tree->GetEntries();    Long64_t tnevent = tree->GetEntries();
102      Long64_t bnevent = Btree->GetEntries();
103    Long64_t alnevent = altr->GetEntries();    Long64_t alnevent = altr->GetEntries();
104    Int_t minevent=0;    Int_t minevent=0;
105    Int_t maxevent=0;    Int_t maxevent=0;
# Line 111  void FTrkQLook_EXPERT(TString file,Int_t Line 107  void FTrkQLook_EXPERT(TString file,Int_t
107    printf("Number of total events: %lld\n",nevent);    printf("Number of total events: %lld\n",nevent);
108    printf("Number of header events: %lld\n",neventH);    printf("Number of header events: %lld\n",neventH);
109    printf("Number of TsbT events: %lld\n",tnevent);    printf("Number of TsbT events: %lld\n",tnevent);
110      printf("Number of TsbB events: %lld\n",bnevent);
111    printf("Number of TrkAlarm packet events: %lld\n",alnevent);    printf("Number of TrkAlarm packet events: %lld\n",alnevent);
112    
113    if (nevent<=0){    if (nevent<=0){
# Line 139  void FTrkQLook_EXPERT(TString file,Int_t Line 136  void FTrkQLook_EXPERT(TString file,Int_t
136      } else if (toevent > nevent) {              } else if (toevent > nevent) {        
137        maxevent = nevent;        maxevent = nevent;
138      } else {            } else {      
139        maxevent = toevent+1;          maxevent = nevent;  
140      }      }
141      nevent=maxevent-minevent ;      nevent=maxevent-minevent ;
142    }    }
# Line 148  void FTrkQLook_EXPERT(TString file,Int_t Line 145  void FTrkQLook_EXPERT(TString file,Int_t
145    // information about the RunHeader    // information about the RunHeader
146    ULong64_t HOBT[neventH];    ULong64_t HOBT[neventH];
147    Int_t trk_cal_us[neventH];    Int_t trk_cal_us[neventH];
148      ULong_t acq_info[neventH];  
149      Int_t countnboot=1;
150    for (Int_t vi=0; vi<neventH;vi++){    for (Int_t vi=0; vi<neventH;vi++){
151      HOBT[vi]=0;      HOBT[vi]=0;
152      trk_cal_us[vi]=0;      trk_cal_us[vi]=0;
153        acq_info[vi]=0;
154    }    }
155    for (Int_t ev=0; ev<neventH; ev++){    for (Int_t ev=0; ev<neventH; ev++){
156      otr->GetEntry(ev);      otr->GetEntry(ev);
157      pH = eH->GetPscuHeader();      pH = eH->GetPscuHeader();
158      HOBT[ev]= pH->GetOrbitalTime();      HOBT[ev]= pH->GetOrbitalTime();
159      trk_cal_us[ev]=reh->TRK_CALIB_USED;      trk_cal_us[ev]=reh->TRK_CALIB_USED;
160        acq_info[ev]=reh->ACQ_BUILD_INFO;
161        if((HOBT[ev]<HOBT[ev-1]) && ev>0)
162          countnboot+=1;
163    }    }
164      countnboot+=(Int_t)(2*nevent/MAXSTORAGE);
165      //   printf("\ncountnboot=%d\n",countnboot);
166      
167    //    //
168    // other variables definitions    // other variables definitions
169    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;
# Line 174  void FTrkQLook_EXPERT(TString file,Int_t Line 179  void FTrkQLook_EXPERT(TString file,Int_t
179      maxsize+=tmpSize;      maxsize+=tmpSize;
180    }    }
181    const Int_t tsize=maxsize;    const Int_t tsize=maxsize;
182    Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize];    Int_t tempt[tsize][5];
183    Int_t countnboot=1;    ULong64_t xt[tsize];
184    
185      Int_t cntpgtemp=1,cntpgdat=0,cntpgmag=0;
186    //    //
187    // information about the temperatures    // information about the temperatures
188    for (Int_t ev=0; ev<tnevent; ev++){    for (Int_t ev=0; ev<tnevent; ev++){
# Line 185  void FTrkQLook_EXPERT(TString file,Int_t Line 192  void FTrkQLook_EXPERT(TString file,Int_t
192        record = (pamela::TsbTRecord*)event->Records->At(j);        record = (pamela::TsbTRecord*)event->Records->At(j);
193        xt[siztmp]=record->RECORD_OBT;        xt[siztmp]=record->RECORD_OBT;
194        if((xt[siztmp]<xt[siztmp-1]) && siztmp>0)        if((xt[siztmp]<xt[siztmp-1]) && siztmp>0)
195          countnboot+=1;          cntpgtemp+=1;
196                
197        for (Int_t z = 0; z < 5; z++){        for (Int_t z = 0; z < 5; z++){
198          tempt[siztmp][z] = record->TEMPERATURES[z+1];              tempt[siztmp][z] = record->TEMPERATURES[z+1];    
# Line 193  void FTrkQLook_EXPERT(TString file,Int_t Line 200  void FTrkQLook_EXPERT(TString file,Int_t
200        siztmp++;        siztmp++;
201      }      }
202    }    }
203    countnboot+=2*(Int_t)nevent/MAXSTORAGE;    
204    //   printf("\ncountnboot=%d\n",countnboot);    //
205      // information about the entries for the magnetic field
206      if(bnevent>0) cntpgmag=1;
207      maxsize=0;
208      for (Int_t ev=0; ev<bnevent; ev++){
209        Btree->GetEntry(ev);
210        tmpSize = Bevent->Records->GetEntries();
211        maxsize+=tmpSize;
212      }
213      const Int_t bsize=maxsize;
214      Int_t magt[bsize][5];
215      ULong64_t xb[bsize];
216      siztmp=0;
217      //
218      // information about the magnetic field
219      for (Int_t ev=0; ev<bnevent; ev++){
220        Btree->GetEntry(ev);
221        tmpSize = Bevent->Records->GetEntries();
222        for (Int_t j = 0; j < tmpSize; j++){
223          Brecord = (pamela::TsbBRecord*)Bevent->Records->At(j);
224          xb[siztmp]=Brecord->RECORD_OBT;
225          if((xb[siztmp]<xb[siztmp-1]) && siztmp>0)
226            cntpgmag+=1;
227          for (Int_t z = 0; z < 5; z++){
228            magt[siztmp][z] = Brecord->B_FIELD[z+1];    
229          }
230          siztmp++;
231        }
232      }
233        
234    //    //
235    // open the output text files for the alarms    // open the output text files for the alarms
# Line 230  void FTrkQLook_EXPERT(TString file,Int_t Line 265  void FTrkQLook_EXPERT(TString file,Int_t
265        alarm1 << "================================================="<< endl<<endl;        alarm1 << "================================================="<< endl<<endl;
266                    
267        alarm1 << "Alarm variables (range 0-1)"<<endl;        alarm1 << "Alarm variables (range 0-1)"<<endl;
268        alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[1]<<endl;        alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[0]<<endl;
269        alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[2]<<endl;        alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[1]<<endl;
270        alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl;        alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl;
271        alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl;        alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl;
272        alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl;        alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl;
# Line 289  void FTrkQLook_EXPERT(TString file,Int_t Line 324  void FTrkQLook_EXPERT(TString file,Int_t
324    
325    //    //
326    // Define output canvas, histos and graphs    // Define output canvas, histos and graphs
327    TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[countnboot];    TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[cntpgtemp],*BfieldCanv[cntpgmag];
328    TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3;    TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3;
329    
330    TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12];    TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12];
331    TGraph *comprtime[12][countnboot],*temp[5][countnboot],*eventnumb[countnboot];    TGraph *comprtime[12][countnboot],*temp[5][cntpgtemp],*tempw[5][cntpgtemp],*eventnumb[countnboot],*mag[5][cntpgmag];
332    TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5];    TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5],*pad7[5];
333    
334    for(Int_t n = 0; n<12; n++) {    for(Int_t n = 0; n<12; n++) {
335    
# Line 332  void FTrkQLook_EXPERT(TString file,Int_t Line 367  void FTrkQLook_EXPERT(TString file,Int_t
367    TLatex *t=new TLatex();    TLatex *t=new TLatex();
368    TLatex *t1=new TLatex();    TLatex *t1=new TLatex();
369    
370    Int_t cntpgtemp=0,cntpgdat=0;    
371    Int_t minev=minevent,maxev=maxevent,countTEMP=0;    Int_t minev=minevent,maxev=maxevent,countTEMP=0,countMAG=0;
372      ULong_t countALARMx=0,countALARMy=0,countFC[12],countFL1[12],countFL2[12],countFL3[12],countFL4[12],countFL5[12],countFL6[12];
373    
374      for(int i=0; i<12; i++){
375        countFC[i]=0;
376        countFL1[i]=0;
377        countFL2[i]=0;
378        countFL3[i]=0;
379        countFL4[i]=0;
380        countFL5[i]=0;
381        countFL6[i]=0;
382      }
383    
384    //    //
385    // Fill temperature graphs    // Fill temperature graphs
386    for(Int_t ii=0; ii<countnboot;ii++){    for(Int_t ii=0; ii<cntpgtemp;ii++){
387      //****************************************************************************************      //****************************************************************************************
388      //Temperature Output Pages      //Temperature Output Pages
389      //****************************************************************************************      //****************************************************************************************
# Line 359  void FTrkQLook_EXPERT(TString file,Int_t Line 405  void FTrkQLook_EXPERT(TString file,Int_t
405      t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
406      t1->DrawLatex(78.,98.7,isfile.str().c_str());      t1->DrawLatex(78.,98.7,isfile.str().c_str());
407      isfile.str("");      isfile.str("");
408        t1->SetTextSize(0.025);
409        t1->SetTextColor(196);
410        isfile<<"--> Values at 28.5^{o}C (if presents) correspond";
411        t1->DrawLatex(50.,22.,isfile.str().c_str());
412        isfile.str("");
413        isfile<<"    to wrong readings ( > 100^{o}C) of the Tsb";
414        t1->DrawLatex(50.,19.,isfile.str().c_str());
415        isfile.str("");
416        isfile<<"--> Values at 25.5^{o}C (if presents) correspond";
417        t1->DrawLatex(50.,12.,isfile.str().c_str());
418        isfile.str("");
419        isfile<<"    to wrong readings ( < 0^{o}C) of the Tsb";
420        t1->DrawLatex(50.,9.,isfile.str().c_str());
421        isfile.str("");
422        
423      Float_t tposy = 0.95;    // up y-coord - top pads      Float_t tposy = 0.95;    // up y-coord - top pads
424      Float_t thpad = 0;   // pad height      Float_t thpad = 0;   // pad height
# Line 384  void FTrkQLook_EXPERT(TString file,Int_t Line 444  void FTrkQLook_EXPERT(TString file,Int_t
444        /* -----------> pad for histograms  */        /* -----------> pad for histograms  */
445        pad6[i] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);        pad6[i] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
446    
447        Int_t v=0,xt_tmp[tsize];        Int_t v=0,vv=0;
448          Double_t xt_tmp[tsize], tempt_tmp[tsize];
449          Double_t xt_tmpw[tsize], tempt_tmpw[tsize];
450        for (Int_t ev=countTEMP; ev<tsize; ev++){        for (Int_t ev=countTEMP; ev<tsize; ev++){
451                
452          if(ev==tsize-1 && i==4) countTEMP=tsize-1;          if(ev==tsize-1 && i==4 && ii==cntpgtemp-1) countTEMP=tsize-1;
453          if(xt[ev]<xt[ev-1] && ev>countTEMP){          if(xt[ev]<xt[ev-1] && ev>countTEMP){
454            if(i==4) countTEMP=ev;            if(i==4) countTEMP=ev;
455            break;            break;
456          }          }
457          else{          else{
458            if(tempt[ev][i]!=65535){            tempt_tmp[v]=(Double_t)((Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231));
459              tempt_tmp[v]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231);            if(tempt_tmp[v]>100) {
460              if(tempt_tmp[v]>0) xt_tmp[v++]=xt[ev];              tempt_tmp[v]=28.5;
461                tempt_tmpw[vv]=28.5;
462                xt_tmpw[vv++]=(Double_t)xt[ev];
463              }
464              else if(tempt_tmp[v]<0){
465                tempt_tmp[v]=25.5;
466                tempt_tmpw[vv]=25.5;
467                xt_tmpw[vv++]=(Double_t)xt[ev];
468            }            }
469              xt_tmp[v++]=(Double_t)xt[ev];
470          }          }
471        }        }
472        TempCanv[ii]->cd();        TempCanv[ii]->cd();
# Line 406  void FTrkQLook_EXPERT(TString file,Int_t Line 476  void FTrkQLook_EXPERT(TString file,Int_t
476        pad6[i]->cd();        pad6[i]->cd();
477        temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp);        temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp);
478        temp[i][ii]->SetTitle(tit.str().c_str());        temp[i][ii]->SetTitle(tit.str().c_str());
479          if(v==1) temp[i][ii]->GetXaxis()->SetNdivisions(-501);
480        temp[i][ii]->GetXaxis()->SetLabelSize(0.04);        temp[i][ii]->GetXaxis()->SetLabelSize(0.04);
481        temp[i][ii]->GetXaxis()->SetTitleSize(0.04);        temp[i][ii]->GetXaxis()->SetTitleSize(0.04);
482        temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)");        temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
# Line 421  void FTrkQLook_EXPERT(TString file,Int_t Line 492  void FTrkQLook_EXPERT(TString file,Int_t
492        temp[i][ii]->SetMarkerSize(0.2);        temp[i][ii]->SetMarkerSize(0.2);
493        temp[i][ii]->Draw("ap");        temp[i][ii]->Draw("ap");
494        tit.str("");        tit.str("");
495          if(vv>0){
496            tempw[i][ii]= new TGraph(vv,xt_tmpw,tempt_tmpw);
497            tempw[i][ii]->SetMarkerStyle(21);
498            tempw[i][ii]->SetMarkerSize(0.2);
499            tempw[i][ii]->SetMarkerColor(196);
500            tempw[i][ii]->Draw("samep");
501          }
502        TempCanv[ii]->Update();        TempCanv[ii]->Update();
503            
504                
505      }      }
506      if(countTEMP==tsize-1){      if(countTEMP==tsize-1 && ii==cntpgtemp-1){
       cntpgtemp=ii+1;  
507        break;        break;
508      }      }
509    }    }
510    
511      //
512      // Fill magnetic field graphs
513      for(Int_t ii=0; ii<cntpgmag;ii++){
514        //****************************************************************************************
515        //Magnetic Field Output Pages
516        //****************************************************************************************
517        fromfile.str("");
518        fromfile<<"FTrkQLook_EXPERT      File: "<<ffile;
519        isfile<<"Magnetic Axial Field vs OBT   pag"<<ii+1;
520        BfieldCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
521        BfieldCanv[ii]->SetFillColor(10);
522        BfieldCanv[ii]->Range(0,0,100,100);
523        
524        t->SetTextFont(32);
525        t->SetTextColor(1);
526        t->SetTextAlign(12);
527        t->SetTextSize(0.02);
528        t->DrawLatex(2.,98.7,fromfile.str().c_str());
529        t1->SetTextFont(32);
530        t1->SetTextColor(1);
531        t1->SetTextAlign(12);
532        t1->SetTextSize(0.02);
533        t1->DrawLatex(70.,98.7,isfile.str().c_str());
534        isfile.str("");
535      
536        TLine li;
537        li.SetLineStyle(1);
538        li.SetLineWidth(1);
539        li.SetLineColor(190);
540        t1->SetTextColor(190);
541        t1->SetTextSize(0.04);
542        
543        Float_t tposy = 0.95;    // up y-coord - top pads
544        Float_t thpad = 0;   // pad height
545        Float_t tposx1=0;          // left  x-coord - pad column
546        Float_t tposx0=0;          //       x-coord - column division
547        Float_t twrel = 0;     // relative x size of first sub-column
548        Float_t tmarg = 0.004;   // margin among pads
549      
550        thpad = (tposy-tmarg*5)/3;
551        twrel = (1-tmarg*4)/2;
552        
553        for(Int_t i=0; i<5; i++){
554          if ( (i+1)%2==1 ) {
555            if(i>1) tposy = tposy-(tmarg*2+thpad);
556            tposx1 = tmarg;
557            tposx0 = tposx1 + twrel;
558          }
559          else {
560            tposx1 = tposx0 + 2*tmarg;
561            tposx0 = tposx1 + twrel;
562          }
563          
564          /* -----------> pad for histograms  */
565          pad7[i] = new TPad("pad7"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
566          
567          Int_t v=0;
568          Double_t xb_tmp[bsize], magt_tmp[bsize];
569          for (Int_t ev=countMAG; ev<bsize; ev++){
570            
571            if(ev==bsize-1 && i==4 && ii==cntpgmag-1) countMAG=bsize-1;
572            if(xb[ev]<xb[ev-1] && ev>countMAG){
573              if(i==4) countMAG=ev;
574              break;
575            }
576            else{
577              magt_tmp[v]=(Double_t)magt[ev][i];
578              xb_tmp[v++]=(Double_t)xb[ev];
579            }
580          }
581          BfieldCanv[ii]->cd();
582          tit<<"B"<<i+5<<" (magnetic module "<<i+1<<")";
583          pad7[i]->SetFillColor(10);
584          pad7[i]->Draw();
585          pad7[i]->cd();
586          mag[i][ii]= new TGraph(v,xb_tmp,magt_tmp);
587          mag[i][ii]->SetTitle(tit.str().c_str());
588          if(v==1) mag[i][ii]->GetXaxis()->SetNdivisions(-501);
589          mag[i][ii]->GetXaxis()->SetLabelSize(0.04);
590          mag[i][ii]->GetXaxis()->SetTitleSize(0.04);
591          mag[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
592          mag[i][ii]->GetXaxis()->CenterTitle();
593          mag[i][ii]->GetXaxis()->SetTitleOffset(0.85);
594          if(i!=4) mag[i][ii]->GetYaxis()->SetRangeUser(2047,2058);
595          else mag[i][ii]->GetYaxis()->SetRangeUser(2059,2067);
596          mag[i][ii]->GetYaxis()->SetTitleOffset(1.2);
597          mag[i][ii]->GetYaxis()->SetLabelOffset(0.001);
598          mag[i][ii]->GetYaxis()->SetLabelSize(0.03);
599          mag[i][ii]->GetYaxis()->SetTitleSize(0.04);
600          mag[i][ii]->GetYaxis()->SetTitle("Magnetic Field (au)");
601          mag[i][ii]->GetYaxis()->CenterTitle();
602          mag[i][ii]->SetMarkerStyle(21);
603          mag[i][ii]->SetMarkerSize(0.4);
604          mag[i][ii]->Draw("ap");
605          Double_t min=0.,max=0,xlat=0.;
606          min=mag[i][ii]->GetXaxis()->GetXmin();
607          max=mag[i][ii]->GetXaxis()->GetXmax();
608          xlat=min+(max-min)/2;
609          stringstream mi,ma;
610          mi<<"minimum recorded value";
611          ma<<"maximum recorded value";
612          t->SetTextSize(0.1);
613          switch(i){
614          case 0:
615            li.DrawLine(min,2054.,max,2054.);
616            li.DrawLine(min,2048.,max,2048.);
617            t1->DrawLatex(xlat,2054.3,ma.str().c_str());
618            t1->DrawLatex(xlat,2047.7,mi.str().c_str());    
619            break;
620    
621          case 1:
622            li.DrawLine(min,2055.,max,2055.);
623            li.DrawLine(min,2050.,max,2050.);
624            t1->DrawLatex(xlat,2055.3,ma.str().c_str());
625            t1->DrawLatex(xlat,2049.7,mi.str().c_str());
626            break;
627    
628          case 2:
629            li.DrawLine(min,2056.,max,2056.);
630            li.DrawLine(min,2051.,max,2051.);
631            t1->DrawLatex(xlat,2056.3,ma.str().c_str());
632            t1->DrawLatex(xlat,2050.7,mi.str().c_str());
633            break;
634          
635          case 3:
636            li.DrawLine(min,2057.,max,2057.);
637            li.DrawLine(min,2052.,max,2052.);
638            t1->DrawLatex(xlat,2057.3,ma.str().c_str());
639            t1->DrawLatex(xlat,2051.7,mi.str().c_str());
640            break;
641    
642          case 4:
643            li.DrawLine(min,2066.,max,2066.);
644            li.DrawLine(min,2060.,max,2060.);
645            t1->DrawLatex(xlat,2066.15,ma.str().c_str());
646            t1->DrawLatex(xlat,2059.85,mi.str().c_str());
647            break;
648    
649          }
650          BfieldCanv[ii]->Update();
651          tit.str("");
652        }
653        if(countMAG==bsize-1 && ii==cntpgmag-1){
654          break;
655        }
656      }
657      
658    
659    //    //
660    // Fill compressiontime and eventnumber graphs and DSP warnings    // Fill compressiontime and eventnumber graphs and DSP warnings
661    for(Int_t ii=0; ii<countnboot;ii++){    for(Int_t ii=0; ii<countnboot;ii++){
662      TPaveText *pt1;      TPad *pt;         //pad for histos
     TPad *pt,*pt0;         //pad for histos  
663        
     ofstream warning(out + "warning.txt",ios::out);  
   
664      //****************************************************************************************      //****************************************************************************************
665      //COMPRESSIONTIME vs. OBT Output Pages      //COMPRESSIONTIME vs. OBT Output Pages
666      //****************************************************************************************      //****************************************************************************************
# Line 464  void FTrkQLook_EXPERT(TString file,Int_t Line 686  void FTrkQLook_EXPERT(TString file,Int_t
686      //DSP EVENT NUMBER Output Pages      //DSP EVENT NUMBER Output Pages
687      //****************************************************************************************      //****************************************************************************************
688    
689      isfile<<"WARNINGS on DSP EVENT NUMBER   pag"<<ii+1;      isfile<<"DSP EVENT NUMBER vs. OBT   pag"<<ii+1;
690      EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);      EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
691      EventNumCanv[ii]->SetFillColor(10);      EventNumCanv[ii]->SetFillColor(10);
692      EventNumCanv[ii]->Range(0,0,100,100);      EventNumCanv[ii]->Range(0,0,100,100);
# Line 477  void FTrkQLook_EXPERT(TString file,Int_t Line 699  void FTrkQLook_EXPERT(TString file,Int_t
699      t1->SetTextColor(1);      t1->SetTextColor(1);
700      t1->SetTextAlign(12);      t1->SetTextAlign(12);
701      t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
702      t1->DrawLatex(65.,98.7,isfile.str().c_str());      t1->DrawLatex(62.,98.7,isfile.str().c_str());
703      isfile.str("");      isfile.str("");
704    
705      Float_t posy = 0.95;    // up y-coord - top pads      Float_t posy = 0.95;    // up y-coord - top pads
# Line 513  void FTrkQLook_EXPERT(TString file,Int_t Line 735  void FTrkQLook_EXPERT(TString file,Int_t
735      //      //
736      // Obtain information about the tracker data      // Obtain information about the tracker data
737      // and fill graphs and histos      // and fill graphs and histos
738      Int_t warning_dspnumber=0,al=0;  
739      Float_t x[MAXSTORAGE];      Int_t al=0;
740        Double_t x[MAXSTORAGE];
741      Float_t yc[MAXSTORAGE][12];      Float_t yc[MAXSTORAGE][12];
742      Float_t eventint[MAXSTORAGE];      Double_t eventint[MAXSTORAGE];
743        Int_t eventn[12];
744        
745      for (Int_t ev=minev; ev<maxevent; ev++){      for (Int_t ev=minev; ev<maxevent; ev++){
746        tr->GetEntry(ev);        tr->GetEntry(ev);
747        ph = eh->GetPscuHeader();        ph = eh->GetPscuHeader();
748        cod = eh->GetCounter();        cod = eh->GetCounter();
749        
750    
751        if(ev==maxevent-1) maxev=maxevent-1;        if(ev==maxevent-1) maxev=maxevent-1;
752    
753        if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==MAXSTORAGE){        if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==MAXSTORAGE){
# Line 532  void FTrkQLook_EXPERT(TString file,Int_t Line 757  void FTrkQLook_EXPERT(TString file,Int_t
757        else{        else{
758          x[(ev-minev)]= ph->GetOrbitalTime();          x[(ev-minev)]= ph->GetOrbitalTime();
759          ALARM=0;          ALARM=0;
           
760          Int_t dsp=0;          Int_t dsp=0;
761            Int_t noacq=0;
762            Int_t acq_dsp[12];
763            ULong_t acq_info_tmp=0;
764            if(cod->Get(pctp->RunHeader)>0) acq_info_tmp=acq_info[cod->Get(pctp->RunHeader)-1];
765            else acq_info_tmp=acq_info[cod->Get(pctp->RunHeader)];
766            for(Int_t io=0;io<12;io++){
767              acq_dsp[dsp]=(acq_info_tmp>>(12+io))&(~(~0<<1));
768              if(((acq_info_tmp>>(12+io))&(~(~0<<1)))==0)
769                noacq+=1;
770              WARNING[io]=0;
771            }
772    
773          for(Int_t i=0; i<12; i++){          for(Int_t i=0; i<12; i++){
774            dsp=te->DSPnumber[i]-1;  
775            yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i];            if(i<12-noacq){
776                          if(te->DSPnumber[i]<1 || te->DSPnumber[i]>12) {
777            //                ALARM=1;
778            // Fill Cluster Signal and Lighting of the view histos                break;
779            for(Int_t j=0;j<3;j++){              }
780              if(te->signcluster[i][j]!=0){  
781                if((te->addrcluster[i][j]>6 && te->addrcluster[i][j]<505) ||(te->addrcluster[i][j]>518 && te->addrcluster[i][j]<1018)){              dsp=te->DSPnumber[i]-1;
782                  illuminazione[dsp]->Fill((Float_t)((j*1024.)+te->addrcluster[i][j]));              yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i];
783    
784                //
785                // Fill Cluster Signal and Lighting of the view histos
786                for(Int_t j=0;j<3;j++){
787                  if(te->signcluster[i][j]!=0){
788                    if((te->addrcluster[i][j]>6 && te->addrcluster[i][j]<505) ||(te->addrcluster[i][j]>518 && te->addrcluster[i][j]<1018)){
789                      illuminazione[dsp]->Fill((Float_t)((j*1024.)+te->addrcluster[i][j]));
790                    }
791                }                }
792              }              }
793            }              if(trk_cal_us[cod->Get(pctp->RunHeader)]!=104){
794            if(trk_cal_us[cod->Get(pctp->RunHeader)]!=104){                if(!(dsp%2)){
795              if(!(dsp%2)){                  if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)(1024.-te->signcluster[i][0]));
796                if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)(1024.-te->signcluster[i][0]));                  if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)(1024.-te->signcluster[i][1]));
797                if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)(1024.-te->signcluster[i][1]));                  if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)(1024.-te->signcluster[i][2]));
798                if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)(1024.-te->signcluster[i][2]));                }
799              }                else{
800              else{                  if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)te->signcluster[i][0]);
801                if(te->signcluster[i][0]!=0) landau1[dsp]->Fill((Float_t)te->signcluster[i][0]);                  if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)te->signcluster[i][1]);
802                if(te->signcluster[i][1]!=0) landau2[dsp]->Fill((Float_t)te->signcluster[i][1]);                  if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)te->signcluster[i][2]);
803                if(te->signcluster[i][2]!=0) landau3[dsp]->Fill((Float_t)te->signcluster[i][2]);                }
804              }              }
           }  
805    
806            WARNING[i]=0;              WARNING[i]=0;
807            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){              if(te->fc[i]!=0){
808              ALARM = 1;      //general alarm                if(countFC[dsp]==0){
809              al=1;                  ALARM = 1;      //general alarm
810              WARNING[i] = 1; // DSP warning                  WARNING[i] = 1; // DSP warning
811            };                }
812                  countFC[dsp]+=1;
813            if(te->alarm[i]!=0){ // hardware alarm              };
             ALARM = 1;  
             al=1;  
           };  
         
           //**************************************************************************************  
           // warning for internal number  
           //**************************************************************************************  
           if(i<=10){  
             if(te->eventn[i]!=te->eventn[i+1]){  
               warning_dspnumber++;  
               warning<< "==> WARNING!!    Check entry "<< ev<<" (DSP "<<dsp<<")" <<endl<<  
                 "eventn["<<i<<"]= "<<te->eventn[i]<<"!= eventn["<<i+1<<"]= "<< te->eventn[i+1]<<endl;  
             }  
             else  
               eventint[(ev-minev)]=te->eventn[0];  
           }  
         }  
814    
815          if(ev<=maxevent-1){              if(te->fl1[i]!=0){
816                  if(countFL1[dsp]==0){
817                    ALARM = 1;      //general alarm
818                    WARNING[i] = 1; // DSP warning
819                  }
820                  countFL1[dsp]+=1;
821                };
822    
823            if((ev-minev)>=1 && eventint[(ev-minev)]!=eventint[(ev-minev)-1]+1 && eventint[(ev-minev)]!=1){              if(te->fl2[i]!=0){
824              warning_dspnumber++;                if(countFL2[dsp]==0){
825              warning<< "==> WARNING!!    Check entry "<< ev<<endl<<                  ALARM = 1;      //general alarm
826                " DSP event num.= "<< eventint[(ev-minev)]<<                  WARNING[i] = 1; // DSP warning
827                " is different from (previus+1) ="<<eventint[(ev-minev)-1]+1 <<"\n"<<endl;                }
828            }                countFL2[dsp]+=1;
829          }              };
830    
831                if(te->fl3[i]!=0){
832                  if(countFL3[dsp]==0){
833                    ALARM = 1;      //general alarm
834                    WARNING[i] = 1; // DSP warning
835                  }
836                  countFL3[dsp]+=1;
837                };
838    
839                if(te->fl4[i]!=0){
840                  if(countFL4[dsp]==0){
841                    ALARM = 1;      //general alarm
842                    WARNING[i] = 1; // DSP warning
843                  }
844                  countFL4[dsp]+=1;
845                };
846    
847                if(te->fl5[i]!=0){
848                  if(countFL5[dsp]==0){
849                    ALARM = 1;      //general alarm
850                    WARNING[i] = 1; // DSP warning
851                  }
852                  countFL5[dsp]+=1;
853                };
854    
855                if(te->fl6[i]!=0){
856                  if(countFL6[dsp]==0){
857                    ALARM = 1;      //general alarm
858                    WARNING[i] = 1; // DSP warning
859                  }
860                  countFL6[dsp]+=1;
861                };
862    
863                if(dsp%2==0 && te->alarm[i]!=0){ // hardware alarm
864                  if(countALARMy==0)
865                    ALARM = 1;
866                  countALARMy+=1;
867                };
868    
869                if(dsp%2==1 && te->alarm[i]!=0){ // hardware alarm
870                  if(countALARMx==0)
871                    ALARM = 1;
872                  countALARMx+=1;
873                };
874                
875                //**************************************************************************************
876                // warning for internal number
877                //**************************************************************************************
878                if(ev==minev && i<=10 && te->eventn[i]!=te->eventn[i+1]) ALARM=1;
879                if((ev-minev)>=1 && eventn[i]+1!=te->eventn[i] && te->eventn[i]!=1) ALARM=1;
880              }
881            }
882            eventint[(ev-minev)]=te->eventn[0];
883    
884          //********************************************************************************************          //********************************************************************************************
885          // file DSP warning          // file DSP warning
886          //********************************************************************************************          //********************************************************************************************
887    
888          if(ALARM==1) {            if(ALARM==1) {  
889              al=1;
890            alarm <<endl<< "================================================="<< endl;            alarm <<endl<< "================================================="<< endl;
891            alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;            alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;
892            alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;            alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;
893              alarm << "Total events "<<nevent<<endl;
894            alarm << "(ROOT-tree entry "<<ev<<" in page "<<ii+1<<" )"<<endl;            alarm << "(ROOT-tree entry "<<ev<<" in page "<<ii+1<<" )"<<endl;
895            alarm << "================================================="<< endl;            alarm << "================================================="<< endl;
896                        
897            alarm << " DSPn";            alarm << " DSPn";
898            alarm << " Event";            alarm << " Counter";
899              alarm << " previous";
900            alarm << " Words";            alarm << " Words";
901            alarm << " crc";            alarm << " crc";
902            alarm << "  FC";            alarm << "  FC";
# Line 621  void FTrkQLook_EXPERT(TString file,Int_t Line 909  void FTrkQLook_EXPERT(TString file,Int_t
909                        
910            for(Int_t i=0; i<12 ; i++){            for(Int_t i=0; i<12 ; i++){
911              alarm.width(5); alarm << te->DSPnumber[i];              alarm.width(5); alarm << te->DSPnumber[i];
912              alarm.width(6); alarm << te->eventn[i];              alarm.width(8); alarm << te->eventn[i];
913                alarm.width(8); alarm << eventn[i];
914              alarm.width(6); alarm << te->DATAlength[i];              alarm.width(6); alarm << te->DATAlength[i];
915              alarm.width(4); alarm << te->crc[i];              alarm.width(4); alarm << te->crc[i];
916              alarm.width(4); alarm << te->fc[i];              alarm.width(4); alarm << te->fc[i];
# Line 636  void FTrkQLook_EXPERT(TString file,Int_t Line 925  void FTrkQLook_EXPERT(TString file,Int_t
925              alarm    << endl;              alarm    << endl;
926            }            }
927          }          }
928            for(Int_t i=0; i<12 ; i++)
929              eventn[i]=te->eventn[i];
930        }        }
931      }      }
932      if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------>  NO ALARM!!! <-------"<<endl;      if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------>  NO ALARM!!! <-------"<<endl;
933      if(warning_dspnumber==0) warning<<"NONE"<<endl;      if(maxev==maxevent-1) {
934          if(countALARMy!=0){
935            if(countALARMy%6!=0) alarm << endl<<endl<< "***** "<<countALARMy/6+1 <<" events with hardware alarm in Y-view *****"<<endl;
936            else alarm << endl<<endl<< "***** "<<countALARMy/6 <<" events with hardware alarm in Y-view *****"<<endl;
937          }
938          if(countALARMx!=0){
939            if(countALARMx%6!=0) alarm << endl<<endl<< "***** "<<countALARMx/6+1 <<" events with hardware alarm in X-view *****"<<endl;
940            else alarm << endl<<endl<< "***** "<<countALARMx/6 <<" events with hardware alarm in X-view *****"<<endl;
941          }
942          for(int p=0; p<12; p++){
943            if(countFC[p]!=0) alarm << endl<<endl<< "***** "<<countFC[p] <<" events with fc!=0 in DSP "<<p+1<<" *****"<<endl;
944            if(countFL1[p]!=0) alarm << endl<<endl<< "***** "<<countFL1[p] <<" events with fl1!=0 in DSP "<<p+1<<" *****"<<endl;
945            if(countFL2[p]!=0) alarm << endl<<endl<< "***** "<<countFL2[p] <<" events with fl2!=0 in DSP "<<p+1<<" *****"<<endl;
946            if(countFL3[p]!=0) alarm << endl<<endl<< "***** "<<countFL3[p] <<" events with fl3!=0 in DSP "<<p+1<<" *****"<<endl;
947            if(countFL4[p]!=0) alarm << endl<<endl<< "***** "<<countFL4[p] <<" events with fl4!=0 in DSP "<<p+1<<" *****"<<endl;
948            if(countFL5[p]!=0) alarm << endl<<endl<< "***** "<<countFL5[p] <<" events with fl5!=0 in DSP "<<p+1<<" *****"<<endl;
949            if(countFL6[p]!=0) alarm << endl<<endl<< "***** "<<countFL6[p] <<" events with fl6!=0 in DSP "<<p+1<<" *****"<<endl;
950          }
951        }
952    
953      //      //
954      // Draw the graphs      // Draw the graphs
955      for (Int_t i=0; i<12 ; i++){      for (Int_t i=0; i<12 ; i++){
956        Float_t yyc[maxev-minev];        Double_t yyc[maxev-minev];
957        for (Int_t v=0; v<maxev-minev; v++){        for (Int_t v=0; v<maxev-minev; v++){
958          yyc[v]=yc[v][i];          yyc[v]=yc[v][i];
959        }        }
# Line 661  void FTrkQLook_EXPERT(TString file,Int_t Line 970  void FTrkQLook_EXPERT(TString file,Int_t
970        comprtime[i][ii]->GetXaxis()->CenterTitle();        comprtime[i][ii]->GetXaxis()->CenterTitle();
971        comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)");        comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)");
972        comprtime[i][ii]->GetYaxis()->CenterTitle();        comprtime[i][ii]->GetYaxis()->CenterTitle();
973        comprtime[i][ii]->GetYaxis()->SetRangeUser(0,2);        // comprtime[i][ii]->GetYaxis()->SetRangeUser(0,3);
974        comprtime[i][ii]->Draw("ap");        comprtime[i][ii]->Draw("ap");
975        oss1.str("");        oss1.str("");
976        CompTimeCanv[ii]->Update();        CompTimeCanv[ii]->Update();
977      }      }
978        
979        
980      EventNumCanv[ii]->cd();      EventNumCanv[ii]->cd();
981      pt0=new TPad("pt0"," ",0.704,0.004,0.996,0.98);      pt = new TPad("pt"," ",0.02,0.01,1.,0.98,18,0,0);
     pt1 = new TPaveText(0.004,0.004,0.986,0.996);  
     pt = new TPad("pt"," ",0.004,0.004,0.7,0.98,18,0,0);  
     pt1->SetFillColor(10);  
     pt1->ReadFile(out + "warning.txt");  
     pt1->SetTextAlign(22);  
     pt1->SetTextSize(0.035);  
     pt0->SetFillColor(10);  
     pt0->SetFrameFillColor(10);  
     pt0->Draw();  
     pt0->cd();  
     pt1->Draw();  
     EventNumCanv[ii]->cd();  
982      pt->SetFillColor(10);      pt->SetFillColor(10);
983      pt->SetFrameFillColor(10);      pt->SetFrameFillColor(10);
984      pt->Draw();      pt->Draw();
985      pt->cd();      pt->cd();
986      eventnumb[ii]=new TGraph(maxev-minev,x,eventint);      eventnumb[ii]=new TGraph(maxev-minev,x,eventint);
987      eventnumb[ii]->SetTitle("");      eventnumb[ii]->SetTitle("");
988      eventnumb[ii]->GetXaxis()->SetLabelSize(0.03);      eventnumb[ii]->GetXaxis()->SetLabelSize(0.02);
989      eventnumb[ii]->GetXaxis()->SetTitleSize(0.04);      eventnumb[ii]->GetXaxis()->SetTitleSize(0.03);
990      eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)");      eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)");
991      eventnumb[ii]->GetXaxis()->CenterTitle();      eventnumb[ii]->GetXaxis()->CenterTitle();
992      eventnumb[ii]->GetXaxis()->SetTickLength(0.01);      eventnumb[ii]->GetXaxis()->SetTickLength(0.01);
993      eventnumb[ii]->GetXaxis()->SetTitleOffset(1.2);      eventnumb[ii]->GetXaxis()->SetTitleOffset(1.1);
994      eventnumb[ii]->GetYaxis()->SetLabelSize(0.03);      eventnumb[ii]->GetYaxis()->SetLabelSize(0.02);
995      eventnumb[ii]->GetYaxis()->SetTitleSize(0.04);      eventnumb[ii]->GetYaxis()->SetTitleSize(0.03);
996      eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number");      eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number");
997      eventnumb[ii]->GetYaxis()->CenterTitle();      eventnumb[ii]->GetYaxis()->CenterTitle();
998      eventnumb[ii]->GetYaxis()->SetTitleOffset(1.5);      eventnumb[ii]->GetYaxis()->SetTitleOffset(2.);
999      eventnumb[ii]->SetMarkerStyle(21);      eventnumb[ii]->SetMarkerStyle(21);
1000      eventnumb[ii]->SetMarkerColor(kBlue);      eventnumb[ii]->SetMarkerColor(kBlue);
1001      eventnumb[ii]->SetMarkerSize(0.3);      eventnumb[ii]->SetMarkerSize(0.2);
1002        oss1.str("");
1003        oss1<<"number of events in this graph: "<<maxev-minev;
1004        t->SetTextColor(kBlue);
1005        t->SetTextSize(0.02);
1006        double xtex=0,ytex=0;
1007        xtex=x[maxev-minev-1]-(x[maxev-minev-1]-x[0])/3;
1008        ytex=1000.+eventnumb[ii]->GetYaxis()->GetXmax();
1009        t->DrawLatex(xtex,ytex,oss1.str().c_str());
1010        oss1.str("");  
1011      eventnumb[ii]->Draw("ap");      eventnumb[ii]->Draw("ap");
1012      EventNumCanv[ii]->Update();      EventNumCanv[ii]->Update();
1013            
   
     warning.close();  
1014      minev=maxev;      minev=maxev;
1015      if(maxev==maxevent-1) {      if(maxev==maxevent-1) {
1016        cntpgdat=ii+1;        cntpgdat=ii+1;
1017        break;        break;
1018      }      }
1019        
1020    }    }
1021    
1022    alarm.close();    alarm.close();
# Line 805  void FTrkQLook_EXPERT(TString file,Int_t Line 1111  void FTrkQLook_EXPERT(TString file,Int_t
1111    for (Int_t i=0; i<12 ; i++){    for (Int_t i=0; i<12 ; i++){
1112                    
1113      TBox b;      TBox b;
     b.SetFillColor(6);  
     b.SetFillStyle(3945);  
1114    
1115      Float_t maxhist=0;      Float_t maxhist=0;
1116      LandauCanv1->cd();      LandauCanv1->cd();
# Line 848  void FTrkQLook_EXPERT(TString file,Int_t Line 1152  void FTrkQLook_EXPERT(TString file,Int_t
1152      illuminazione[i]->GetXaxis()->SetTitle("strip with max signal");      illuminazione[i]->GetXaxis()->SetTitle("strip with max signal");
1153      illuminazione[i]->GetXaxis()->CenterTitle();      illuminazione[i]->GetXaxis()->CenterTitle();
1154      illuminazione[i]->Draw("");      illuminazione[i]->Draw("");
1155      if(i==1){      if(i==0){
1156        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1157        b.DrawBox(2816.,0.,3060.,maxhist);        b.SetFillColor(107);
1158          b.SetFillStyle(3954);
1159          b.DrawBox(768.,0.,2047.,maxhist);
1160        }
1161        else if(i==1){
1162          maxhist= illuminazione[i]->GetMaximum();
1163          b.SetFillColor(6);
1164          b.SetFillStyle(3945);
1165          b.DrawBox(2944.,0.,3060.,maxhist);
1166    
1167          b.SetFillColor(107);
1168          b.SetFillStyle(3954);
1169          b.DrawBox(2816.,0.,2944.,maxhist);
1170          b.DrawBox(2048.,0.,2176.,maxhist);
1171        }
1172        else if(i==4){
1173          maxhist=illuminazione[i]->GetMaximum();
1174          b.SetFillColor(107);
1175          b.SetFillStyle(3954);
1176          b.DrawBox(384.,0.,512.,maxhist);
1177      }      }
1178      else if(i==6){      else if(i==6){
1179        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1180          b.SetFillColor(6);
1181          b.SetFillStyle(3945);
1182        b.DrawBox(2560.,0.,2816.,maxhist);        b.DrawBox(2560.,0.,2816.,maxhist);
1183          b.DrawBox(1024.,0.,1535.,maxhist);
1184    
1185          b.SetFillColor(107);
1186          b.SetFillStyle(3954);
1187        b.DrawBox(512.,0.,768.,maxhist);        b.DrawBox(512.,0.,768.,maxhist);
1188        b.DrawBox(1024.,0.,1792.,maxhist);        b.DrawBox(1536.,0.,1792.,maxhist);
1189        }
1190        else if(i==7){
1191          maxhist= illuminazione[i]->GetMaximum();
1192          b.SetFillColor(107);
1193          b.SetFillStyle(3954);
1194          b.DrawBox(512.,0.,768.,maxhist);
1195        }
1196        else if(i==8){
1197          maxhist=illuminazione[i]->GetMaximum();
1198          b.SetFillColor(107);
1199          b.SetFillStyle(3954);
1200          b.DrawBox(512.,0.,768.,maxhist);
1201        }
1202        else if(i==9){
1203          maxhist=illuminazione[i]->GetMaximum();
1204          b.SetFillColor(107);
1205          b.SetFillStyle(3954);
1206          b.DrawBox(256.,0.,384.,maxhist);
1207      }      }
1208      else if(i==11){      else if(i==11){
1209        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1210          b.SetFillColor(6);
1211          b.SetFillStyle(3945);
1212        b.DrawBox(768.,0.,1024.,maxhist);        b.DrawBox(768.,0.,1024.,maxhist);
1213    
1214          b.SetFillColor(107);
1215          b.SetFillStyle(3954);
1216          b.DrawBox(0.,0.,512.,maxhist);
1217          b.DrawBox(1920.,0.,2560.,maxhist);
1218      }      }
1219      IlluminaCanv->Update();      IlluminaCanv->Update();
1220    }    }
# Line 876  void FTrkQLook_EXPERT(TString file,Int_t Line 1230  void FTrkQLook_EXPERT(TString file,Int_t
1230    else if(cntpgtemp<=cntpgdat) totpg=cntpgdat;    else if(cntpgtemp<=cntpgdat) totpg=cntpgdat;
1231    
1232    for(Int_t fl=0;fl<totpg;fl++){    for(Int_t fl=0;fl<totpg;fl++){
1233    
1234      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
1235        out1.str("");        out1.str("");
1236        out2.str("");        out2.str("");
# Line 889  void FTrkQLook_EXPERT(TString file,Int_t Line 1244  void FTrkQLook_EXPERT(TString file,Int_t
1244          CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");          CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
1245          EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1246          TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1247            BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1248          LandauCanv1->Print(out+out2.str().c_str(),"Portrait");          LandauCanv1->Print(out+out2.str().c_str(),"Portrait");
1249          LandauCanv2->Print(out+out2.str().c_str(),"Portrait");          LandauCanv2->Print(out+out2.str().c_str(),"Portrait");
1250          LandauCanv3->Print(out+out2.str().c_str(),"Portrait");          LandauCanv3->Print(out+out2.str().c_str(),"Portrait");
# Line 898  void FTrkQLook_EXPERT(TString file,Int_t Line 1254  void FTrkQLook_EXPERT(TString file,Int_t
1254          if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");          if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
1255          if(fl>0 && fl<cntpgdat) CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          if(fl>0 && fl<cntpgdat) CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1256          if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1257            if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1258          if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1259          if(fl==totpg-1){          if(fl==totpg-1){
1260            LandauCanv1->Print(out+out2.str().c_str(),"Portrait");            LandauCanv1->Print(out+out2.str().c_str(),"Portrait");
# Line 912  void FTrkQLook_EXPERT(TString file,Int_t Line 1269  void FTrkQLook_EXPERT(TString file,Int_t
1269        out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data();        out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data();
1270        if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str());        if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str());
1271        out1.str("");        out1.str("");
1272          out1<<ffile<<"_FTrkQLook_EXPERT-BField-pag"<<fl+1<<"."<<outfile.Data();
1273          if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out1.str().c_str());
1274          out1.str("");
1275        out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data();        out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data();
1276        if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str());        if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str());
1277        out1.str("");        out1.str("");
# Line 948  void FTrkQLook_EXPERT(TString file,Int_t Line 1308  void FTrkQLook_EXPERT(TString file,Int_t
1308      com.str("");      com.str("");
1309    }    }
1310    
   command.str("");  
   command<<"rm -f "<<out<<"warning.txt";  
   system(command.str().c_str());  
     
1311    gROOT->Reset();    gROOT->Reset();
1312    return;    return;
1313  }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.22

  ViewVC Help
Powered by ViewVC 1.1.23