/[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.9 by pam-fi, Sun Jul 2 17:41:15 2006 UTC revision 1.18 by pam-fi, Mon Oct 2 13:05:39 2006 UTC
# Line 2  Line 2 
2   * FTrkQLook_EXPERT.cxx   * FTrkQLook_EXPERT.cxx
3   *   *
4   * autor: D.Fedele   * autor: D.Fedele
5   * version v1r05   * version v1r14
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 30  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  //  //
# Line 57  void FTrkQLook_EXPERT(TString file,Int_t Line 59  void FTrkQLook_EXPERT(TString file,Int_t
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 76  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 91  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 98  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 126  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 135  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      Int_t countnboot=1;
149    for (Int_t vi=0; vi<neventH;vi++){    for (Int_t vi=0; vi<neventH;vi++){
150      HOBT[vi]=0;      HOBT[vi]=0;
151      trk_cal_us[vi]=0;      trk_cal_us[vi]=0;
# Line 144  void FTrkQLook_EXPERT(TString file,Int_t Line 155  void FTrkQLook_EXPERT(TString file,Int_t
155      pH = eH->GetPscuHeader();      pH = eH->GetPscuHeader();
156      HOBT[ev]= pH->GetOrbitalTime();      HOBT[ev]= pH->GetOrbitalTime();
157      trk_cal_us[ev]=reh->TRK_CALIB_USED;      trk_cal_us[ev]=reh->TRK_CALIB_USED;
158        if((HOBT[ev]<HOBT[ev-1]) && ev>0)
159          countnboot+=1;
160    }    }
161      countnboot+=(Int_t)(2*nevent/MAXSTORAGE);
162      //   printf("\ncountnboot=%d\n",countnboot);
163      
164    //    //
165    // other variables definitions    // other variables definitions
166    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;
# Line 161  void FTrkQLook_EXPERT(TString file,Int_t Line 176  void FTrkQLook_EXPERT(TString file,Int_t
176      maxsize+=tmpSize;      maxsize+=tmpSize;
177    }    }
178    const Int_t tsize=maxsize;    const Int_t tsize=maxsize;
179    Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize];    Int_t tempt[tsize][5];
180    Int_t countnboot=1;    ULong64_t xt[tsize];
181    
182      Int_t cntpgtemp=1,cntpgdat=0,cntpgmag=0;
183    //    //
184    // information about the temperatures    // information about the temperatures
185    for (Int_t ev=0; ev<tnevent; ev++){    for (Int_t ev=0; ev<tnevent; ev++){
# Line 172  void FTrkQLook_EXPERT(TString file,Int_t Line 189  void FTrkQLook_EXPERT(TString file,Int_t
189        record = (pamela::TsbTRecord*)event->Records->At(j);        record = (pamela::TsbTRecord*)event->Records->At(j);
190        xt[siztmp]=record->RECORD_OBT;        xt[siztmp]=record->RECORD_OBT;
191        if((xt[siztmp]<xt[siztmp-1]) && siztmp>0)        if((xt[siztmp]<xt[siztmp-1]) && siztmp>0)
192          countnboot+=1;          cntpgtemp+=1;
193                
194        for (Int_t z = 0; z < 5; z++){        for (Int_t z = 0; z < 5; z++){
195          tempt[siztmp][z] = record->TEMPERATURES[z+1];              tempt[siztmp][z] = record->TEMPERATURES[z+1];    
# Line 180  void FTrkQLook_EXPERT(TString file,Int_t Line 197  void FTrkQLook_EXPERT(TString file,Int_t
197        siztmp++;        siztmp++;
198      }      }
199    }    }
200    countnboot+=2*(Int_t)nevent/MAXSTORAGE;    
201    //   printf("\ncountnboot=%d\n",countnboot);    //
202      // information about the entries for the magnetic field
203      if(bnevent>0) cntpgmag=1;
204      maxsize=0;
205      for (Int_t ev=0; ev<bnevent; ev++){
206        Btree->GetEntry(ev);
207        tmpSize = Bevent->Records->GetEntries();
208        maxsize+=tmpSize;
209      }
210      const Int_t bsize=maxsize;
211      Int_t magt[bsize][5];
212      ULong64_t xb[bsize];
213      siztmp=0;
214      //
215      // information about the magnetic field
216      for (Int_t ev=0; ev<bnevent; ev++){
217        Btree->GetEntry(ev);
218        tmpSize = Bevent->Records->GetEntries();
219        for (Int_t j = 0; j < tmpSize; j++){
220          Brecord = (pamela::TsbBRecord*)Bevent->Records->At(j);
221          xb[siztmp]=Brecord->RECORD_OBT;
222          if((xb[siztmp]<xb[siztmp-1]) && siztmp>0)
223            cntpgmag+=1;
224          for (Int_t z = 0; z < 5; z++){
225            magt[siztmp][z] = Brecord->B_FIELD[z+1];    
226          }
227          siztmp++;
228        }
229      }
230        
231    //    //
232    // open the output text files for the alarms    // open the output text files for the alarms
# Line 217  void FTrkQLook_EXPERT(TString file,Int_t Line 262  void FTrkQLook_EXPERT(TString file,Int_t
262        alarm1 << "================================================="<< endl<<endl;        alarm1 << "================================================="<< endl<<endl;
263                    
264        alarm1 << "Alarm variables (range 0-1)"<<endl;        alarm1 << "Alarm variables (range 0-1)"<<endl;
265        alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[1]<<endl;        alarm1 << " ALARM[1]= 0x"<< hex << (Int_t)al->ALARM[0]<<endl;
266        alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[2]<<endl;        alarm1 << " ALARM[2]= 0x"<< (Int_t)al->ALARM[1]<<endl;
267        alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl;        alarm1 << " CmdDuringTrig= 0x"<< (Int_t)al->CmdDuringTrig<<endl;
268        alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl;        alarm1 << " FinalCheck= 0x"<< (Int_t)al->FinalCheck<<endl;
269        alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl;        alarm1 << " FlashData= 0x"<< (Int_t)al->FlashData<<endl;
# Line 276  void FTrkQLook_EXPERT(TString file,Int_t Line 321  void FTrkQLook_EXPERT(TString file,Int_t
321    
322    //    //
323    // Define output canvas, histos and graphs    // Define output canvas, histos and graphs
324    TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[countnboot];    TCanvas *CompTimeCanv[countnboot],*EventNumCanv[countnboot],*TempCanv[cntpgtemp],*BfieldCanv[cntpgmag];
325    TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3;    TCanvas *IlluminaCanv,*LandauCanv1,*LandauCanv2,*LandauCanv3;
326    
327    TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12];    TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12];
328    TGraph *comprtime[12][countnboot],*temp[5][countnboot],*eventnumb[countnboot];    TGraph *comprtime[12][countnboot],*temp[5][cntpgtemp],*tempw[5][cntpgtemp],*eventnumb[countnboot],*mag[5][cntpgmag];
329    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];
330    
331    for(Int_t n = 0; n<12; n++) {    for(Int_t n = 0; n<12; n++) {
332    
# Line 319  void FTrkQLook_EXPERT(TString file,Int_t Line 364  void FTrkQLook_EXPERT(TString file,Int_t
364    TLatex *t=new TLatex();    TLatex *t=new TLatex();
365    TLatex *t1=new TLatex();    TLatex *t1=new TLatex();
366    
367    Int_t cntpgtemp=0,cntpgdat=0;    
368    Int_t minev=minevent,maxev=maxevent,countTEMP=0;    Int_t minev=minevent,maxev=maxevent,countTEMP=0,countMAG=0;
369      ULong_t countALARMx=0,countALARMy=0;
370    
371    //    //
372    // Fill temperature graphs    // Fill temperature graphs
373    for(Int_t ii=0; ii<countnboot;ii++){    for(Int_t ii=0; ii<cntpgtemp;ii++){
374      //****************************************************************************************      //****************************************************************************************
375      //Temperature Output Pages      //Temperature Output Pages
376      //****************************************************************************************      //****************************************************************************************
# Line 346  void FTrkQLook_EXPERT(TString file,Int_t Line 392  void FTrkQLook_EXPERT(TString file,Int_t
392      t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
393      t1->DrawLatex(78.,98.7,isfile.str().c_str());      t1->DrawLatex(78.,98.7,isfile.str().c_str());
394      isfile.str("");      isfile.str("");
395        t1->SetTextSize(0.025);
396        t1->SetTextColor(196);
397        isfile<<"--> Values at 28.5^{o}C (if presents) correspond";
398        t1->DrawLatex(50.,22.,isfile.str().c_str());
399        isfile.str("");
400        isfile<<"    to wrong readings ( > 100^{o}C) of the Tsb";
401        t1->DrawLatex(50.,19.,isfile.str().c_str());
402        isfile.str("");
403        isfile<<"--> Values at 25.5^{o}C (if presents) correspond";
404        t1->DrawLatex(50.,12.,isfile.str().c_str());
405        isfile.str("");
406        isfile<<"    to wrong readings ( < 0^{o}C) of the Tsb";
407        t1->DrawLatex(50.,9.,isfile.str().c_str());
408        isfile.str("");
409        
410      Float_t tposy = 0.95;    // up y-coord - top pads      Float_t tposy = 0.95;    // up y-coord - top pads
411      Float_t thpad = 0;   // pad height      Float_t thpad = 0;   // pad height
# Line 371  void FTrkQLook_EXPERT(TString file,Int_t Line 431  void FTrkQLook_EXPERT(TString file,Int_t
431        /* -----------> pad for histograms  */        /* -----------> pad for histograms  */
432        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);
433    
434        Int_t v=0,xt_tmp[tsize];        Int_t v=0,vv=0;
435          Double_t xt_tmp[tsize], tempt_tmp[tsize];
436          Double_t xt_tmpw[tsize], tempt_tmpw[tsize];
437        for (Int_t ev=countTEMP; ev<tsize; ev++){        for (Int_t ev=countTEMP; ev<tsize; ev++){
438                
439          if(ev==tsize-1 && i==4) countTEMP=tsize-1;          if(ev==tsize-1 && i==4 && ii==cntpgtemp-1) countTEMP=tsize-1;
440          if(xt[ev]<xt[ev-1] && ev>countTEMP){          if(xt[ev]<xt[ev-1] && ev>countTEMP){
441            if(i==4) countTEMP=ev;            if(i==4) countTEMP=ev;
442            break;            break;
443          }          }
444          else{          else{
445            if(tempt[ev][i]!=65535){              tempt_tmp[v]=(Double_t)((Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231));
446              tempt_tmp[v]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231);              if(tempt_tmp[v]>100) {
447              if(tempt_tmp[v]>0) xt_tmp[v++]=xt[ev];                tempt_tmp[v]=28.5;
448            }                tempt_tmpw[vv]=28.5;
449                  xt_tmpw[vv++]=(Double_t)xt[ev];
450                }
451                else if(tempt_tmp[v]<0){
452                  tempt_tmp[v]=25.5;
453                  tempt_tmpw[vv]=25.5;
454                  xt_tmpw[vv++]=(Double_t)xt[ev];
455                }
456                xt_tmp[v++]=(Double_t)xt[ev];
457          }          }
458        }        }
459        TempCanv[ii]->cd();        TempCanv[ii]->cd();
# Line 393  void FTrkQLook_EXPERT(TString file,Int_t Line 463  void FTrkQLook_EXPERT(TString file,Int_t
463        pad6[i]->cd();        pad6[i]->cd();
464        temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp);        temp[i][ii]= new TGraph(v,xt_tmp,tempt_tmp);
465        temp[i][ii]->SetTitle(tit.str().c_str());        temp[i][ii]->SetTitle(tit.str().c_str());
466          if(v==1) temp[i][ii]->GetXaxis()->SetNdivisions(502,kTRUE);
467        temp[i][ii]->GetXaxis()->SetLabelSize(0.04);        temp[i][ii]->GetXaxis()->SetLabelSize(0.04);
468        temp[i][ii]->GetXaxis()->SetTitleSize(0.04);        temp[i][ii]->GetXaxis()->SetTitleSize(0.04);
469        temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)");        temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
# Line 408  void FTrkQLook_EXPERT(TString file,Int_t Line 479  void FTrkQLook_EXPERT(TString file,Int_t
479        temp[i][ii]->SetMarkerSize(0.2);        temp[i][ii]->SetMarkerSize(0.2);
480        temp[i][ii]->Draw("ap");        temp[i][ii]->Draw("ap");
481        tit.str("");        tit.str("");
482          if(vv>0){
483            tempw[i][ii]= new TGraph(vv,xt_tmpw,tempt_tmpw);
484            tempw[i][ii]->SetMarkerStyle(21);
485            tempw[i][ii]->SetMarkerSize(0.2);
486            tempw[i][ii]->SetMarkerColor(196);
487            tempw[i][ii]->Draw("samep");
488          }
489        TempCanv[ii]->Update();        TempCanv[ii]->Update();
490            
491                
492      }      }
493      if(countTEMP==tsize-1){      if(countTEMP==tsize-1 && ii==cntpgtemp-1){
       cntpgtemp=ii+1;  
494        break;        break;
495      }      }
496    }    }
497    
498      //
499      // Fill magnetic field graphs
500      for(Int_t ii=0; ii<cntpgmag;ii++){
501        //****************************************************************************************
502        //Magnetic Field Output Pages
503        //****************************************************************************************
504        fromfile.str("");
505        fromfile<<"FTrkQLook_EXPERT      File: "<<ffile;
506        isfile<<"Magnetic Axial Field vs OBT   pag"<<ii+1;
507        BfieldCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
508        BfieldCanv[ii]->SetFillColor(10);
509        BfieldCanv[ii]->Range(0,0,100,100);
510        
511        t->SetTextFont(32);
512        t->SetTextColor(1);
513        t->SetTextAlign(12);
514        t->SetTextSize(0.02);
515        t->DrawLatex(2.,98.7,fromfile.str().c_str());
516        t1->SetTextFont(32);
517        t1->SetTextColor(1);
518        t1->SetTextAlign(12);
519        t1->SetTextSize(0.02);
520        t1->DrawLatex(70.,98.7,isfile.str().c_str());
521        isfile.str("");
522      
523        TLine li;
524        li.SetLineStyle(1);
525        li.SetLineWidth(1);
526        li.SetLineColor(190);
527        t1->SetTextColor(190);
528        t1->SetTextSize(0.04);
529        
530        Float_t tposy = 0.95;    // up y-coord - top pads
531        Float_t thpad = 0;   // pad height
532        Float_t tposx1=0;          // left  x-coord - pad column
533        Float_t tposx0=0;          //       x-coord - column division
534        Float_t twrel = 0;     // relative x size of first sub-column
535        Float_t tmarg = 0.004;   // margin among pads
536      
537        thpad = (tposy-tmarg*5)/3;
538        twrel = (1-tmarg*4)/2;
539        
540        for(Int_t i=0; i<5; i++){
541          if ( (i+1)%2==1 ) {
542            if(i>1) tposy = tposy-(tmarg*2+thpad);
543            tposx1 = tmarg;
544            tposx0 = tposx1 + twrel;
545          }
546          else {
547            tposx1 = tposx0 + 2*tmarg;
548            tposx0 = tposx1 + twrel;
549          }
550          
551          /* -----------> pad for histograms  */
552          pad7[i] = new TPad("pad7"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
553          
554          Int_t v=0;
555          Double_t xb_tmp[bsize], magt_tmp[bsize];
556          for (Int_t ev=countMAG; ev<bsize; ev++){
557            
558            if(ev==bsize-1 && i==4 && ii==cntpgmag-1) countMAG=bsize-1;
559            if(xb[ev]<xb[ev-1] && ev>countMAG){
560              if(i==4) countMAG=ev;
561              break;
562            }
563            else{
564              magt_tmp[v]=(Double_t)magt[ev][i];
565              xb_tmp[v++]=(Double_t)xb[ev];
566            }
567          }
568          BfieldCanv[ii]->cd();
569          tit<<"B"<<i+5<<" (magnetic module "<<i+1<<")";
570          pad7[i]->SetFillColor(10);
571          pad7[i]->Draw();
572          pad7[i]->cd();
573          mag[i][ii]= new TGraph(v,xb_tmp,magt_tmp);
574          mag[i][ii]->SetTitle(tit.str().c_str());
575          mag[i][ii]->GetXaxis()->SetNdivisions(502,kTRUE);
576          mag[i][ii]->GetXaxis()->SetLabelSize(0.04);
577          mag[i][ii]->GetXaxis()->SetTitleSize(0.04);
578          mag[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
579          mag[i][ii]->GetXaxis()->CenterTitle();
580          mag[i][ii]->GetXaxis()->SetTitleOffset(0.85);
581          if(i!=4) mag[i][ii]->GetYaxis()->SetRangeUser(2047,2058);
582          else mag[i][ii]->GetYaxis()->SetRangeUser(2060,2067);
583          mag[i][ii]->GetYaxis()->SetTitleOffset(1.2);
584          mag[i][ii]->GetYaxis()->SetLabelOffset(0.001);
585          mag[i][ii]->GetYaxis()->SetLabelSize(0.03);
586          mag[i][ii]->GetYaxis()->SetTitleSize(0.04);
587          mag[i][ii]->GetYaxis()->SetTitle("Magnetic Field (au)");
588          mag[i][ii]->GetYaxis()->CenterTitle();
589          mag[i][ii]->SetMarkerStyle(21);
590          mag[i][ii]->SetMarkerSize(0.4);
591          mag[i][ii]->Draw("ap");
592          Double_t min=0.,max=0,xlat=0.;
593          min=mag[i][ii]->GetXaxis()->GetXmin();
594          max=mag[i][ii]->GetXaxis()->GetXmax();
595          xlat=min+(max-min)/2;
596          stringstream mi,ma;
597          mi<<"minimum recorded value";
598          ma<<"maximum recorded value";
599          t->SetTextSize(0.1);
600          switch(i){
601            case 0:
602              li.DrawLine(min,2054.,max,2054.);
603              li.DrawLine(min,2048.,max,2048.);
604              t1->DrawLatex(xlat,2054.3,ma.str().c_str());
605              t1->DrawLatex(xlat,2047.7,mi.str().c_str());  
606              break;
607    
608            case 1:
609              li.DrawLine(min,2055.,max,2055.);
610              li.DrawLine(min,2050.,max,2050.);
611              t1->DrawLatex(xlat,2055.3,ma.str().c_str());
612              t1->DrawLatex(xlat,2049.7,mi.str().c_str());
613              break;
614    
615            case 2:
616              li.DrawLine(min,2056.,max,2056.);
617              li.DrawLine(min,2051.,max,2051.);
618              t1->DrawLatex(xlat,2056.3,ma.str().c_str());
619              t1->DrawLatex(xlat,2050.7,mi.str().c_str());
620              break;
621          
622            case 3:
623              li.DrawLine(min,2057.,max,2057.);
624              li.DrawLine(min,2052.,max,2052.);
625              t1->DrawLatex(xlat,2057.3,ma.str().c_str());
626              t1->DrawLatex(xlat,2051.7,mi.str().c_str());
627              break;
628    
629            case 4:
630              li.DrawLine(min,2066.,max,2066.);
631              li.DrawLine(min,2061.,max,2061.);
632              t1->DrawLatex(xlat,2066.15,ma.str().c_str());
633              t1->DrawLatex(xlat,2060.85,mi.str().c_str());
634              break;
635    
636          }
637          BfieldCanv[ii]->Update();
638          tit.str("");
639        }
640        if(countMAG==bsize-1 && ii==cntpgmag-1){
641          break;
642        }
643      }
644      
645    
646    //    //
647    // Fill compressiontime and eventnumber graphs and DSP warnings    // Fill compressiontime and eventnumber graphs and DSP warnings
# Line 499  void FTrkQLook_EXPERT(TString file,Int_t Line 724  void FTrkQLook_EXPERT(TString file,Int_t
724      // and fill graphs and histos      // and fill graphs and histos
725    
726      Int_t al=0;      Int_t al=0;
727      Float_t x[MAXSTORAGE];      Double_t x[MAXSTORAGE];
728      Float_t yc[MAXSTORAGE][12];      Float_t yc[MAXSTORAGE][12];
729      Float_t eventint[MAXSTORAGE];      Double_t eventint[MAXSTORAGE];
730        Int_t eventn[12];
731        
732      for (Int_t ev=minev; ev<maxevent; ev++){      for (Int_t ev=minev; ev<maxevent; ev++){
733        tr->GetEntry(ev);        tr->GetEntry(ev);
# Line 554  void FTrkQLook_EXPERT(TString file,Int_t Line 780  void FTrkQLook_EXPERT(TString file,Int_t
780            WARNING[i]=0;            WARNING[i]=0;
781            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 || te->fl1[i]!=0 || te->fl2[i]!=0 || te->fl3[i]!=0 || te->fl4[i]!=0 || te->fl5[i]!=0 || te->fl6[i]!=0){
782              ALARM = 1;      //general alarm              ALARM = 1;      //general alarm
             al=1;  
783              WARNING[i] = 1; // DSP warning              WARNING[i] = 1; // DSP warning
784            };            };
785    
786            if(te->alarm[i]!=0){ // hardware alarm            if(dsp%2==0 && te->alarm[i]!=0){ // hardware alarm
787              ALARM = 1;              if(countALARMy==0)
788              al=1;                ALARM = 1;
789                countALARMy+=1;
790              };
791    
792              if(dsp%2==1 && te->alarm[i]!=0){ // hardware alarm
793                if(countALARMx==0)
794                  ALARM = 1;
795                countALARMx+=1;
796            };            };
797                
798            //**************************************************************************************            //**************************************************************************************
799            // warning for internal number            // warning for internal number
800            //**************************************************************************************            //**************************************************************************************
801            if(i<=10 && te->eventn[i]!=te->eventn[i+1]) ALARM=1;            if(ev==minev && i<=10 && te->eventn[i]!=te->eventn[i+1]) ALARM=1;
802              if((ev-minev)>=1 && eventn[i]+1!=te->eventn[i] && te->eventn[i]!=1) ALARM=1;
803          }          }
804          eventint[(ev-minev)]=te->eventn[0];          eventint[(ev-minev)]=te->eventn[0];
         if((ev-minev)>=1 && eventint[(ev-minev)]!=eventint[(ev-minev)-1]+1 && eventint[(ev-minev)]!=1)  
            ALARM=1;  
805    
806          //********************************************************************************************          //********************************************************************************************
807          // file DSP warning          // file DSP warning
808          //********************************************************************************************          //********************************************************************************************
809    
810          if(ALARM==1) {            if(ALARM==1) {  
811              al=1;
812            alarm <<endl<< "================================================="<< endl;            alarm <<endl<< "================================================="<< endl;
813            alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;            alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;
814            alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;            alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;
# Line 600  void FTrkQLook_EXPERT(TString file,Int_t Line 832  void FTrkQLook_EXPERT(TString file,Int_t
832            for(Int_t i=0; i<12 ; i++){            for(Int_t i=0; i<12 ; i++){
833              alarm.width(5); alarm << te->DSPnumber[i];              alarm.width(5); alarm << te->DSPnumber[i];
834              alarm.width(8); alarm << te->eventn[i];              alarm.width(8); alarm << te->eventn[i];
835              alarm.width(8); alarm << eventint[(ev-minev)-1];              alarm.width(8); alarm << eventn[i];
836              alarm.width(6); alarm << te->DATAlength[i];              alarm.width(6); alarm << te->DATAlength[i];
837              alarm.width(4); alarm << te->crc[i];              alarm.width(4); alarm << te->crc[i];
838              alarm.width(4); alarm << te->fc[i];              alarm.width(4); alarm << te->fc[i];
# Line 615  void FTrkQLook_EXPERT(TString file,Int_t Line 847  void FTrkQLook_EXPERT(TString file,Int_t
847              alarm    << endl;              alarm    << endl;
848            }            }
849          }          }
850            for(Int_t i=0; i<12 ; i++)
851              eventn[i]=te->eventn[i];
852        }        }
853      }      }
854      if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------>  NO ALARM!!! <-------"<<endl;      if(al==0) alarm << endl<< "Page "<<ii+1<< ": ------>  NO ALARM!!! <-------"<<endl;
855        if(maxev==maxevent-1) {
856          if(countALARMy!=0){
857            if(countALARMy%6!=0) alarm << endl<<endl<< "***** "<<countALARMy/6+1 <<" events with hardware alarm in Y-view *****"<<endl;
858            else alarm << endl<<endl<< "***** "<<countALARMy/6 <<" events with hardware alarm in Y-view *****"<<endl;
859          }
860          if(countALARMx!=0){
861            if(countALARMx%6!=0) alarm << endl<<endl<< "***** "<<countALARMx/6+1 <<" events with hardware alarm in X-view *****"<<endl;
862            else alarm << endl<<endl<< "***** "<<countALARMx/6 <<" events with hardware alarm in X-view *****"<<endl;
863          }
864        }
865    
866      //      //
867      // Draw the graphs      // Draw the graphs
868      for (Int_t i=0; i<12 ; i++){      for (Int_t i=0; i<12 ; i++){
869        Float_t yyc[maxev-minev];        Double_t yyc[maxev-minev];
870        for (Int_t v=0; v<maxev-minev; v++){        for (Int_t v=0; v<maxev-minev; v++){
871          yyc[v]=yc[v][i];          yyc[v]=yc[v][i];
872        }        }
# Line 639  void FTrkQLook_EXPERT(TString file,Int_t Line 883  void FTrkQLook_EXPERT(TString file,Int_t
883        comprtime[i][ii]->GetXaxis()->CenterTitle();        comprtime[i][ii]->GetXaxis()->CenterTitle();
884        comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)");        comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)");
885        comprtime[i][ii]->GetYaxis()->CenterTitle();        comprtime[i][ii]->GetYaxis()->CenterTitle();
886        comprtime[i][ii]->GetYaxis()->SetRangeUser(0,3);        // comprtime[i][ii]->GetYaxis()->SetRangeUser(0,3);
887        comprtime[i][ii]->Draw("ap");        comprtime[i][ii]->Draw("ap");
888        oss1.str("");        oss1.str("");
889        CompTimeCanv[ii]->Update();        CompTimeCanv[ii]->Update();
890      }      }
891        
892        
893      EventNumCanv[ii]->cd();      EventNumCanv[ii]->cd();
894      pt = new TPad("pt"," ",0.02,0.01,1.,0.98,18,0,0);      pt = new TPad("pt"," ",0.02,0.01,1.,0.98,18,0,0);
895      pt->SetFillColor(10);      pt->SetFillColor(10);
# Line 667  void FTrkQLook_EXPERT(TString file,Int_t Line 912  void FTrkQLook_EXPERT(TString file,Int_t
912      eventnumb[ii]->SetMarkerStyle(21);      eventnumb[ii]->SetMarkerStyle(21);
913      eventnumb[ii]->SetMarkerColor(kBlue);      eventnumb[ii]->SetMarkerColor(kBlue);
914      eventnumb[ii]->SetMarkerSize(0.2);      eventnumb[ii]->SetMarkerSize(0.2);
915        oss1.str("");
916        oss1<<"number of events in this graph: "<<maxev-minev;
917        t->SetTextColor(kBlue);
918        t->SetTextSize(0.02);
919        double xtex=0,ytex=0;
920        xtex=x[maxev-minev-1]-(x[maxev-minev-1]-x[0])/3;
921        ytex=1000.+eventnumb[ii]->GetYaxis()->GetXmax();
922        t->DrawLatex(xtex,ytex,oss1.str().c_str());
923        oss1.str("");  
924      eventnumb[ii]->Draw("ap");      eventnumb[ii]->Draw("ap");
925      EventNumCanv[ii]->Update();      EventNumCanv[ii]->Update();
926            
# Line 678  void FTrkQLook_EXPERT(TString file,Int_t Line 932  void FTrkQLook_EXPERT(TString file,Int_t
932            
933    }    }
934    
   
935    alarm.close();    alarm.close();
936    
937    //****************************************************************************************    //****************************************************************************************
# Line 771  void FTrkQLook_EXPERT(TString file,Int_t Line 1024  void FTrkQLook_EXPERT(TString file,Int_t
1024    for (Int_t i=0; i<12 ; i++){    for (Int_t i=0; i<12 ; i++){
1025                    
1026      TBox b;      TBox b;
     b.SetFillColor(6);  
     b.SetFillStyle(3945);  
1027    
1028      Float_t maxhist=0;      Float_t maxhist=0;
1029      LandauCanv1->cd();      LandauCanv1->cd();
# Line 816  void FTrkQLook_EXPERT(TString file,Int_t Line 1067  void FTrkQLook_EXPERT(TString file,Int_t
1067      illuminazione[i]->Draw("");      illuminazione[i]->Draw("");
1068      if(i==1){      if(i==1){
1069        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1070        b.DrawBox(2816.,0.,3060.,maxhist);        b.SetFillColor(6);
1071          b.SetFillStyle(3945);
1072          b.DrawBox(2944.,0.,3060.,maxhist);
1073    
1074          b.SetFillColor(107);
1075          b.SetFillStyle(3954);
1076          b.DrawBox(2816.,0.,2944.,maxhist);
1077          b.DrawBox(2048.,0.,2176.,maxhist);
1078        }
1079        else if(i==4){
1080          maxhist=illuminazione[i]->GetMaximum();
1081          b.SetFillColor(107);
1082          b.SetFillStyle(3954);
1083          b.DrawBox(384.,0.,512.,maxhist);
1084      }      }
1085      else if(i==6){      else if(i==6){
1086        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1087          b.SetFillColor(6);
1088          b.SetFillStyle(3945);
1089        b.DrawBox(2560.,0.,2816.,maxhist);        b.DrawBox(2560.,0.,2816.,maxhist);
1090          b.DrawBox(1024.,0.,1535.,maxhist);
1091    
1092          b.SetFillColor(107);
1093          b.SetFillStyle(3954);
1094        b.DrawBox(512.,0.,768.,maxhist);        b.DrawBox(512.,0.,768.,maxhist);
1095        b.DrawBox(1024.,0.,1792.,maxhist);        b.DrawBox(1536.,0.,1792.,maxhist);
1096        }
1097        else if(i==7){
1098          maxhist= illuminazione[i]->GetMaximum();
1099          b.SetFillColor(107);
1100          b.SetFillStyle(3954);
1101          b.DrawBox(512.,0.,768.,maxhist);
1102        }
1103        else if(i==9){
1104          maxhist=illuminazione[i]->GetMaximum();
1105          b.SetFillColor(107);
1106          b.SetFillStyle(3954);
1107          b.DrawBox(256.,0.,384.,maxhist);
1108      }      }
1109      else if(i==11){      else if(i==11){
1110        maxhist= illuminazione[i]->GetMaximum();        maxhist= illuminazione[i]->GetMaximum();
1111          b.SetFillColor(6);
1112          b.SetFillStyle(3945);
1113        b.DrawBox(768.,0.,1024.,maxhist);        b.DrawBox(768.,0.,1024.,maxhist);
1114    
1115          b.SetFillColor(107);
1116          b.SetFillStyle(3954);
1117          b.DrawBox(0.,0.,512.,maxhist);
1118          b.DrawBox(1920.,0.,2048.,maxhist);
1119          b.DrawBox(2176.,0.,2304.,maxhist);
1120      }      }
1121      IlluminaCanv->Update();      IlluminaCanv->Update();
1122    }    }
# Line 842  void FTrkQLook_EXPERT(TString file,Int_t Line 1132  void FTrkQLook_EXPERT(TString file,Int_t
1132    else if(cntpgtemp<=cntpgdat) totpg=cntpgdat;    else if(cntpgtemp<=cntpgdat) totpg=cntpgdat;
1133    
1134    for(Int_t fl=0;fl<totpg;fl++){    for(Int_t fl=0;fl<totpg;fl++){
1135    
1136      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
1137        out1.str("");        out1.str("");
1138        out2.str("");        out2.str("");
# Line 855  void FTrkQLook_EXPERT(TString file,Int_t Line 1146  void FTrkQLook_EXPERT(TString file,Int_t
1146          CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");          CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
1147          EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1148          TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1149            BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1150          LandauCanv1->Print(out+out2.str().c_str(),"Portrait");          LandauCanv1->Print(out+out2.str().c_str(),"Portrait");
1151          LandauCanv2->Print(out+out2.str().c_str(),"Portrait");          LandauCanv2->Print(out+out2.str().c_str(),"Portrait");
1152          LandauCanv3->Print(out+out2.str().c_str(),"Portrait");          LandauCanv3->Print(out+out2.str().c_str(),"Portrait");
# Line 864  void FTrkQLook_EXPERT(TString file,Int_t Line 1156  void FTrkQLook_EXPERT(TString file,Int_t
1156          if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");          if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
1157          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");
1158          if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          if(fl<cntpgdat) EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1159            if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1160          if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");          if(fl<cntpgtemp) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
1161          if(fl==totpg-1){          if(fl==totpg-1){
1162            LandauCanv1->Print(out+out2.str().c_str(),"Portrait");            LandauCanv1->Print(out+out2.str().c_str(),"Portrait");
# Line 878  void FTrkQLook_EXPERT(TString file,Int_t Line 1171  void FTrkQLook_EXPERT(TString file,Int_t
1171        out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data();        out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data();
1172        if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str());        if(fl<cntpgdat) CompTimeCanv[fl]->Print(out+out1.str().c_str());
1173        out1.str("");        out1.str("");
1174          out1<<ffile<<"_FTrkQLook_EXPERT-BField-pag"<<fl+1<<"."<<outfile.Data();
1175          if(fl<cntpgmag) BfieldCanv[fl]->Print(out+out1.str().c_str());
1176          out1.str("");
1177        out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data();        out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data();
1178        if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str());        if(fl<cntpgtemp) TempCanv[fl]->Print(out+out1.str().c_str());
1179        out1.str("");        out1.str("");

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.18

  ViewVC Help
Powered by ViewVC 1.1.23