/[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.2 by pam-fi, Thu May 18 13:06:08 2006 UTC revision 1.4 by pam-fi, Mon Jun 5 08:37:53 2006 UTC
# Line 25  Line 25 
25  #include <physics/tracker/TrackerEvent.h>  #include <physics/tracker/TrackerEvent.h>
26  #include <PscuHeader.h>  #include <PscuHeader.h>
27  #include <EventHeader.h>  #include <EventHeader.h>
28    #include <RunHeaderEvent.h>
29  #include <TrkAlarmEvent.h>  #include <TrkAlarmEvent.h>
30  #include <tsbt/TsbTRecord.h>  #include <tsbt/TsbTRecord.h>
31  #include <tsbt/TsbTEvent.h>  #include <tsbt/TsbTEvent.h>
32  //  //
33    #define MAXSTORAGE 50000
34    
35  void stringcopy(TString& s1, const TString& s2, Int_t from=0, Int_t to=0){      void stringcopy(TString& s1, const TString& s2, Int_t from=0, Int_t to=0){    
36      if ( to == 0 ){    if ( to == 0 ){
37          Int_t t2length = s2.Length();      Int_t t2length = s2.Length();
38          s1 = "";      s1 = "";
39          to = t2length;      to = t2length;
40      };    };
41      for (Int_t i = from; i<to; i++){    for (Int_t i = from; i<to; i++){
42          s1.Append(s2[i],1);      s1.Append(s2[i],1);
43      };    };
44  };  };
45    
46    
# Line 47  void FTrkQLook_EXPERT(TString file,Int_t Line 49  void FTrkQLook_EXPERT(TString file,Int_t
49    //    //
50    //   obtain information about the data file and select the output dir    //   obtain information about the data file and select the output dir
51    const string filepath=file.Data();    const string filepath=file.Data();
52    Int_t dwpos = filepath.rfind("DW_");    Int_t dwpos = filepath.rfind("/");
53    Int_t dwpos1 = filepath.find(".root");    Int_t dwpos1 = filepath.find(".root");
54    TString fpath=(filepath.c_str());    TString fpath=(filepath.c_str());
55    TString base,ffile ;    TString base,ffile ;
56    stringcopy(ffile,fpath,dwpos,dwpos1);    stringcopy(ffile,fpath,dwpos+1,dwpos1);
57    stringcopy(base,fpath,0,dwpos);    stringcopy(base,fpath,0,dwpos);
58      if(dwpos>0) base+="/";
59    
60    TString out;    TString out;
61    if(outdir.Length()==0){    if(outdir.Length()==0){
# Line 66  void FTrkQLook_EXPERT(TString file,Int_t Line 69  void FTrkQLook_EXPERT(TString file,Int_t
69    pamela::TsbTEvent  *event = 0;    pamela::TsbTEvent  *event = 0;
70    pamela::TsbTRecord *record = 0;    pamela::TsbTRecord *record = 0;
71    pamela::tracker::TrackerEvent *te=0;    pamela::tracker::TrackerEvent *te=0;
72    pamela::EventHeader *eh=0,*aleh=0;    pamela::EventHeader *eh=0,*aleh=0,*eH=0,*eT=0;
73    pamela::PscuHeader *ph=0;    pamela::PscuHeader *ph=0,*pH=0;
74    pamela::TrkAlarmEvent *al=0;    pamela::TrkAlarmEvent *al=0;
75      pamela::RunHeaderEvent *reh=0;
76    
77    TFile *datafile = new TFile(file);    TFile *datafile = new TFile(file);
78    
79    TTree *tree = (TTree*)datafile->Get("TsbT");    TTree *tree = (TTree*)datafile->Get("TsbT");
80    tree->SetBranchAddress("TsbT",&event);    tree->SetBranchAddress("TsbT",&event);
81      tree->SetBranchAddress("Header",&eT);
82    
83    TTree *altr = (TTree*)datafile->Get("TrkAlarm");    TTree *altr = (TTree*)datafile->Get("TrkAlarm");
84    altr->SetBranchAddress("TrkAlarm",&al);    altr->SetBranchAddress("TrkAlarm",&al);
# Line 83  void FTrkQLook_EXPERT(TString file,Int_t Line 88  void FTrkQLook_EXPERT(TString file,Int_t
88    tr->SetBranchAddress("Tracker",&te);    tr->SetBranchAddress("Tracker",&te);
89    tr->SetBranchAddress("Header",&eh);    tr->SetBranchAddress("Header",&eh);
90        
91      TTree *otr  = (TTree*)datafile->Get("RunHeader");
92      otr->SetBranchAddress("Header",&eH);
93      otr->SetBranchAddress("RunHeader",&reh);
94    
95    Long64_t nevent = tr->GetEntries();    Long64_t nevent = tr->GetEntries();
96      Long64_t neventH = otr->GetEntries();
97    Long64_t tnevent = tree->GetEntries();    Long64_t tnevent = tree->GetEntries();
98    Long64_t alnevent = altr->GetEntries();    Long64_t alnevent = altr->GetEntries();
99    Int_t minevent=0;    Int_t minevent=0;
100    Int_t maxevent=0;    Int_t maxevent=0;
101    
102    printf("Number of total events: %lld\n",nevent);    printf("Number of total events: %lld\n",nevent);
103      printf("Number of header events: %lld\n",neventH);
104      printf("Number of TsbT events: %lld\n",tnevent);
105      printf("Number of TrkAlarm packet events: %lld\n",alnevent);
106    
107    if (nevent<=0){    if (nevent<=0){
108      datafile->Close();      datafile->Close();
# Line 122  void FTrkQLook_EXPERT(TString file,Int_t Line 135  void FTrkQLook_EXPERT(TString file,Int_t
135      nevent=maxevent-minevent ;      nevent=maxevent-minevent ;
136    }    }
137    
138      Long64_t obt=0;
139    if (fromevent!=0)    const Int_t sizeH=neventH;
140      printf("\n Scan of events from %i to %i ... \n",minevent,maxevent-1);    ULong64_t HOBT[sizeH];
141    else    Int_t trk_cal_us[sizeH],countrun=1;
142      printf("\n Scan of events from %i to %i ... \n",minevent+1,maxevent);    for (Int_t vi=0; vi<sizeH;vi++){
143        HOBT[vi]=0;
144        trk_cal_us[vi]=0;
145      }
146      for (Int_t ev=0; ev<neventH; ev++){
147        otr->GetEntry(ev);
148        pH = eH->GetPscuHeader();
149        HOBT[ev]= pH->GetOrbitalTime();
150        trk_cal_us[ev]=reh->TRK_CALIB_USED;
151        if((HOBT[ev]<HOBT[ev-1]) && ev>0)
152          countrun+=1;
153        //   printf("\n%lld\t\tcountrun=%d\n",HOBT[ev],countrun);
154      }
155      countrun+=(Int_t)nevent/30000;
156      //  printf("\ncountrun=%d\n",countrun);
157    
158    //    //
159    // other variables definitions    // other variables definitions
160    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;    stringstream oss1,oss2,oss3,oss4,fromfile,isfile,tit;
   Int_t warning_dspnumber=0;  
161    Int_t ALARM=0;    Int_t ALARM=0;
162    Int_t WARNING[12];    Int_t WARNING[12];
163    const Int_t size=nevent;  
   Int_t dsp=0;  
   Double_t yd[size*12], yc[size*12], x[size], eventint[size];  
   Double_t yyc[size], hi=0, land[size*12][3], illum[size*12][3];  
   
   TGraph *comprtime,*temp[5];  
   TGraph *eventnumb;  
   TH1F *landau1[12],*landau2[12],*landau3[12],*illuminazione[12];  
   TPaveText *pt1;  
   TPad *pt;  
     
164    //    //
165    // information about the entries for the temperatures    // information about the entries for the temperatures
166    Int_t tmpSize=0,siztmp=0,maxsize=0;    Int_t tmpSize=0,siztmp=0,maxsize=0;
# Line 155  void FTrkQLook_EXPERT(TString file,Int_t Line 171  void FTrkQLook_EXPERT(TString file,Int_t
171    }    }
172    const Int_t tsize=maxsize;    const Int_t tsize=maxsize;
173    Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize];    Int_t tempt[tsize][5],xt[tsize], tempt_tmp[tsize];
174      //
175      // information about the temperatures
176      for (Int_t ev=0; ev<tnevent; ev++){
177        tree->GetEntry(ev);
178        tmpSize = event->Records->GetEntries();
179        for (Int_t j = 0; j < tmpSize; j++){
180          record = (pamela::TsbTRecord*)event->Records->At(j);
181          xt[siztmp]=record->RECORD_OBT;  //0.051*record->RECORD_OBT;  
182          for (Int_t z = 0; z < 5; z++){
183            tempt[siztmp][z] = record->TEMPERATURES[z+1];    
184          }
185          siztmp++;
186        }
187      }
188        
189    //    //
190    // open the output text files for the alarms    // open the output text files for the alarms
191    ofstream warning(out + "warning.txt",ios::out);    TString fname1 = out+ffile;
192    TString fname = out+ffile;    TString fname = out+ffile;
   TString fname1 = out+ffile;  
193    int slen=fname.Length();    int slen=fname.Length();
194    int last=fname.Last('_');    int last=fname.Last('_');
195    if(last<(slen-1))fname.Append('_');      if(last<(slen-1))fname.Append('_');  
196    fname.Append("Trk-ALARM-report.txt");    fname.Append("FTrk-DSP-report.txt");
197    ofstream alarm(fname,ios::out);    ofstream alarm(fname,ios::out);
198    alarm << "TRACKER ALARM REPORT - Downlink " << ffile<< endl;    alarm << "TRACKER DSP REPORT - Downlink " << ffile<< endl;
199    fname1.Append("_TrkAlarm-pkt-report.txt");    fname1.Append("_FTrkAlarm-pkt-report.txt");
200    ofstream alarm1(fname1,ios::out);    ofstream alarm1(fname1,ios::out);
201    alarm1 << "TrkAlarm pkt REPORT - Downlink " << ffile<< endl;    alarm1 << "TrkAlarm pkt REPORT - Downlink " << ffile<< endl;
202    
# Line 180  void FTrkQLook_EXPERT(TString file,Int_t Line 208  void FTrkQLook_EXPERT(TString file,Int_t
208        altr->GetEntry(ev);        altr->GetEntry(ev);
209        ph = aleh->GetPscuHeader();        ph = aleh->GetPscuHeader();
210    
211          if(ph->GetOrbitalTime()<obt && ev>0)
212            alarm1<<endl<<"NEW CPU BOOT"<<endl;
213          obt=ph->GetOrbitalTime();
214            
215        alarm1 << "================================================="<< endl;        alarm1 << "================================================="<< endl;
216        alarm1 << "PSCU-Pkt N. "<< ph->GetCounter() ;        alarm1 << "PSCU-Pkt N. "<< ph->GetCounter() ;
217        alarm1 << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;        alarm1 << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;
218        alarm1 << "(ROOT-tree entry "<<ev<<")"<<endl;        alarm1 << "(ROOT-tree entry "<<ev<<")"<<endl;
219        alarm1 << "================================================="<< endl;        alarm1 << "================================================="<< endl<<endl;
220                
221        alarm1 << " ALARM[1]= "<<(Int_t)al->ALARM[1]<<endl;        alarm1 << "Alarm variables (range 0-1)"<<endl;
222        alarm1 << " ALARM[2]= "<<(Int_t)al->ALARM[2]<<endl;        alarm1 << " ALARM[1]= "<< hex<< (Int_t)al->ALARM[1]<<dec<<endl;
223        alarm1 << " Aswr= "<<(Int_t)al->Aswr<<endl;        alarm1 << " ALARM[2]= "<< hex<< (Int_t)al->ALARM[2]<<dec<<endl;
224        alarm1 << " BID[1]= "<<(Int_t)al->BID[0]<<endl;        alarm1 << " CmdDuringTrig= "<< hex<<(Int_t)al->CmdDuringTrig<<endl;
225        alarm1 << " BID[2]= "<<(Int_t)al->BID[1]<<endl;        alarm1 << " FinalCheck= "<< hex<<(Int_t)al->FinalCheck<<endl;
226        alarm1 << " BID[3]= "<<(Int_t)al->BID[2]<<endl;        alarm1 << " FlashData= "<< hex<<(Int_t)al->FlashData<<endl;
227        alarm1 << " BID[4]= "<<(Int_t)al->BID[3]<<endl;        alarm1 << " FlashShutdown= "<< hex<<(Int_t)al->FlashShutdown<<endl;
228        alarm1 << " BID[5]= "<<(Int_t)al->BID[4]<<endl;        alarm1 << " FlashUpset= "<< hex<<(Int_t)al->FlashUpset<<endl;
229        alarm1 << " BID[6]= "<<(Int_t)al->BID[5]<<endl;        alarm1 << " InterCheck= "<< hex<<(Int_t)al->InterCheck<<endl;
230        alarm1 << " BID[7]= "<<(Int_t)al->BID[6]<<endl;        alarm1 << " UnknownCmd= "<< hex<<(Int_t)al->UnknownCmd<<endl<<endl;
231        alarm1 << " CmdDuringTrig= "<<(Int_t)al->CmdDuringTrig<<endl;          
232        alarm1 << " CmdIDMA= "<<(Int_t)al->CmdIDMA<<endl;        alarm1 << "Alarm variables (range 0-3F)"<<endl;
233        alarm1 << " CmdNum= "<<(Int_t)al->CmdNum<<endl;        alarm1 << " CmdIDMA= "<< hex<<(Int_t)al->CmdIDMA<<endl;
234        alarm1 << " DSPBusy= "<<(Int_t)al->DSPBusy<<endl;        alarm1 << " DSPSoft= "<< hex<<(Int_t)al->DSPSoft<<endl;
235        alarm1 << " DSPMask= "<<(Int_t)al->DSPMask<<endl;        alarm1 << " TrigIDMA= "<< hex<<(Int_t)al->TrigIDMA<<endl<<endl;
236        alarm1 << " DSPSoft= "<<(Int_t)al->DSPSoft<<endl;          
237        alarm1 << " FinalCheck= "<<(Int_t)al->FinalCheck<<endl;        alarm1 << "Alarm bits (range 0-1)"<<endl;
238        alarm1 << " FlashData= "<<(Int_t)al->FlashData<<endl;        alarm1 << " Aswr= "<< hex<<(Int_t)al->Aswr<<endl;
239        alarm1 << " FlashOn= "<<(Int_t)al->FlashOn<<endl;        alarm1 << " BID[1]= "<< hex<<(Int_t)al->BID[0]<<endl;
240        alarm1 << " FlashShutdown= "<<(Int_t)al->FlashShutdown<<endl;        alarm1 << " BID[2]= "<< hex<<(Int_t)al->BID[1]<<endl;
241        alarm1 << " FlashUpset= "<<(Int_t)al->FlashUpset<<endl;        alarm1 << " BID[3]= "<< hex<<(Int_t)al->BID[2]<<endl;
242        alarm1 << " InterCheck= "<<(Int_t)al->InterCheck<<endl;        alarm1 << " BID[4]= "<< hex<<(Int_t)al->BID[3]<<endl;
243        alarm1 << " PNum= "<<(Int_t)al->PNum<<endl;        alarm1 << " BID[5]= "<< hex<<(Int_t)al->BID[4]<<endl;
244        alarm1 << " TrigIDMA= "<<(Int_t)al->TrigIDMA<<endl;        alarm1 << " BID[6]= "<< hex<<(Int_t)al->BID[5]<<endl;
245        alarm1 << " TrigMask= "<<(Int_t)al->TrigMask<<endl;        alarm1 << " BID[7]= "<< hex<<(Int_t)al->BID[6]<<endl;
246        alarm1 << " UnknownCmd= "<<(Int_t)al->UnknownCmd<<endl;        alarm1 << " CmdNum= "<< hex<<(Int_t)al->CmdNum<<endl;
247      }        alarm1 << " DSPBusy= "<< hex<<(Int_t)al->DSPBusy<<endl;
248    }        alarm1 << " DSPMask= "<< hex<<(Int_t)al->DSPMask<<endl;
249          alarm1 << " FlashOn= "<< hex<<(Int_t)al->FlashOn<<endl;
250    //***************************************************************************************        alarm1 << " PNum= "<< hex<<(Int_t)al->PNum<<endl;
251    // LOOP on each event        alarm1 << " TrigMask= "<< hex<<(Int_t)al->TrigMask<<dec<<endl;
252    //***************************************************************************************        alarm1 << "================================================="<< endl<<endl;
   
   //  
   // information about the temperatures  
   for (Int_t ev=0; ev<tnevent; ev++){  
     tree->GetEntry(ev);  
     tmpSize = event->Records->GetEntries();  
     for (Int_t j = 0; j < tmpSize; j++){  
       record = (pamela::TsbTRecord*)event->Records->At(j);  
       xt[siztmp]=record->RECORD_OBT;  //0.051*record->RECORD_OBT;    
       for (Int_t z = 0; z < 5; z++){  
         tempt[siztmp][z] = record->TEMPERATURES[z+1];      
       }  
       siztmp++;  
     }  
   }  
   
   //  
   // information about the tracker data  
   for (Int_t ev=minevent; ev<maxevent; ev++){  
     tr->GetEntry(ev);  
     ph = eh->GetPscuHeader();  
     dsp=0;  
     ALARM=0;  
     for(Int_t i=0; i<12; i++){  
       dsp=te->DSPnumber[i]-1;  
       yd[(ev-minevent)*12+dsp]= te->DATAlength[i];  
       yc[(ev-minevent)*12+dsp]= 0.051*te->compressiontime[i];  
       for(Int_t j=0;j<3;j++){  
         illum[(ev-minevent)*12+dsp][j]=te->addrcluster[i][j];  
         if(!(dsp%2)&&(te->signcluster[i][j])!=0)  
           land[(ev-minevent)*12+dsp][j]=1024-(te->signcluster[i][j]);  
         else land[(ev-minevent)*12+dsp][j]=te->signcluster[i][j];  
       }  
       x[(ev-minevent)]= ph->GetOrbitalTime();  
         
       WARNING[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){  
         ALARM = 1;      //general alarm  
         WARNING[i] = 1; // DSP warning  
       };  
   
       if(te->alarm[i]!=0){ // hardware alarm  
         ALARM = 1;  
       };  
253                
       //**************************************************************************************  
       // 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-minevent)]=te->eventn[0];  
       }  
      }  
   
     if(ev<=maxevent-1){  
   
       if((ev-minevent)>=1 && eventint[(ev-minevent)]!=eventint[(ev-minevent)-1]+1 && eventint[(ev-minevent)]!=1){  
         warning_dspnumber++;  
         warning<< "==> WARNING!!    Check entry "<< ev<<endl<<  
                   " DSP event num.= "<< eventint[(ev-minevent)]<<  
                   " is different from (previus+1) ="<<eventint[(ev-minevent)-1]+1 <<"\n"<<endl;  
       }  
     };  
         
     //********************************************************************************************  
     // file ALARM  
     //********************************************************************************************  
     if(ALARM==1) {  
   
       alarm << "================================================="<< endl;  
       alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;  
       alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;  
       alarm << "(ROOT-tree entry "<<ev<<")"<<endl;  
       alarm << "================================================="<< endl;  
         
       alarm << " DSPn";  
       alarm << " Event";  
       alarm << " Words";  
       alarm << " crc";  
       alarm << "  FC";  
       alarm << " FL1";  
       alarm << " FL2";  
       alarm << " FL3";  
       alarm << " FL4";  
       alarm << " FL5";  
       alarm << " FL6" << endl;  
         
       for(Int_t i=0; i<12 ; i++){  
         alarm.width(5); alarm << te->DSPnumber[i];  
         alarm.width(6); alarm << te->eventn[i];  
         alarm.width(6); alarm << te->DATAlength[i];  
         alarm.width(4); alarm << te->crc[i];  
         alarm.width(4); alarm << te->fc[i];  
         alarm.width(4); alarm << te->fl1[i];  
         alarm.width(4); alarm << te->fl2[i];  
         alarm.width(4); alarm << te->fl3[i];  
         alarm.width(4); alarm << te->fl4[i];  
         alarm.width(4); alarm << te->fl5[i];  
         alarm.width(4); alarm << te->fl6[i];  
         if(te->alarm[i]!=0)alarm<<" >> ALARM ";  
         if(WARNING[i]!=0)alarm<<" (DSP warning) ";  
         alarm    << endl;  
       }  
254      }      }
255    }    }
   if(ALARM==0) alarm << endl<< "------>  NO ALARM!!! <-------"<<endl;  
     
   if(warning_dspnumber==0) warning<<"NONE"<<endl;  
   
   //*****************************************  
   //close all files  
   //*****************************************    
   warning.close();  
   alarm.close();  
   datafile->Close();  
256    
257    
258    gStyle->SetLabelSize(0.05,"x");    gStyle->SetLabelSize(0.05,"x");
# Line 352  void FTrkQLook_EXPERT(TString file,Int_t Line 267  void FTrkQLook_EXPERT(TString file,Int_t
267    gStyle->SetTitleSize(0.06,"y");    gStyle->SetTitleSize(0.06,"y");
268    gStyle->SetTitleSize(0.055,"x");    gStyle->SetTitleSize(0.055,"x");
269    
270    //****************************************************************************************  
271    //Output figures --- First sheet:    //***************************************************************************************
272    //****************************************************************************************    // LOOP on each event
273      //***************************************************************************************
274    
275      if (fromevent!=0)
276        printf("\n Scan of events from %i to %i ... \n",minevent,maxevent-1);
277      else
278        printf("\n Scan of events from %i to %i ... \n",minevent+1,maxevent);
279    
280    
281      Int_t minev=minevent,maxev=maxevent,countTEMP=0;
282      TCanvas *CompTimeCanv[countrun],*EventNumCanv[countrun],*LandauCanv1[countrun],*LandauCanv2[countrun],*LandauCanv3[countrun];
283      TCanvas *IlluminaCanv[countrun],*TempCanv[countrun];
284      TGraph *comprtime[12][countrun],*temp[5][countrun],*eventnumb[countrun];
285      TH1F *landau1[12][countrun],*landau2[12][countrun],*landau3[12][countrun],*illuminazione[12][countrun];
286    
287        
288      for(Int_t ii=0; ii<countrun;ii++){
289        TPaveText *pt1;
290        TPad *pt,*pt0;
291        TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5];          //pad for histos
292        
293    TCanvas *CompTimeCanv=new TCanvas("Tracker_Detector_Report_4/6","",900,1200);      ofstream warning(out + "warning.txt",ios::out);
294    CompTimeCanv->SetFillColor(10);  
295    CompTimeCanv->Range(0,0,100,100);      //****************************************************************************************
296    fromfile<<"FTrkQLook_EXPERT      File: "<<ffile;      //Output figures --- First sheet:
297    isfile<<"COMPRESSIONTIME vs. OBT";      //****************************************************************************************
298    TLatex *t=new TLatex();      fromfile.str("");
299    t->SetTextFont(32);      fromfile<<"FTrkQLook_EXPERT      File: "<<ffile;
300    t->SetTextColor(1);      isfile<<"COMPRESSIONTIME vs. OBT   pag"<<ii+1;
301    t->SetTextAlign(12);      CompTimeCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
302    t->SetTextSize(0.02);      CompTimeCanv[ii]->SetFillColor(10);
303    t->DrawLatex(2.,98.7,fromfile.str().c_str());      CompTimeCanv[ii]->Range(0,0,100,100);
304    TLatex *t1=new TLatex();      TLatex *t=new TLatex();
305    t1->SetTextFont(32);      t->SetTextFont(32);
306    t1->SetTextColor(1);      t->SetTextColor(1);
307    t1->SetTextAlign(12);      t->SetTextAlign(12);
308    t1->SetTextSize(0.02);      t->SetTextSize(0.02);
309    t1->DrawLatex(64.,98.7,isfile.str().c_str());      t->DrawLatex(2.,98.7,fromfile.str().c_str());
310    isfile.str("");      TLatex *t1=new TLatex();
311        t1->SetTextFont(32);
312    //****************************************************************************************      t1->SetTextColor(1);
313    //Output figures --- Second sheet:      t1->SetTextAlign(12);
314    //****************************************************************************************      t1->SetTextSize(0.02);
315        t1->DrawLatex(62.,98.7,isfile.str().c_str());
316    TCanvas *EventNumCanv=new TCanvas("Tracker_Detector_Report_5/6","",900,1200);      isfile.str("");
317    EventNumCanv->SetFillColor(10);  
318    EventNumCanv->Range(0,0,100,100);      //****************************************************************************************
319    isfile<<"WARNINGS on DSP EVENT NUMBER ";      //Output figures --- Second sheet:
320    t->SetTextFont(32);      //****************************************************************************************
321    t->SetTextColor(1);  
322    t->SetTextAlign(12);      isfile<<"WARNINGS on DSP EVENT NUMBER   pag"<<ii+1;
323    t->SetTextSize(0.02);      EventNumCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
324    t->DrawLatex(2.,98.7,fromfile.str().c_str());      EventNumCanv[ii]->SetFillColor(10);
325    t1->SetTextFont(32);      EventNumCanv[ii]->Range(0,0,100,100);
326    t1->SetTextColor(1);      t->SetTextFont(32);
327    t1->SetTextAlign(12);      t->SetTextColor(1);
328    t1->SetTextSize(0.02);      t->SetTextAlign(12);
329    t1->DrawLatex(68.4,98.7,isfile.str().c_str());      t->SetTextSize(0.02);
330    isfile.str("");      t->DrawLatex(2.,98.7,fromfile.str().c_str());
331        t1->SetTextFont(32);
332    //****************************************************************************************      t1->SetTextColor(1);
333    //Output figures --- Third sheet:      t1->SetTextAlign(12);
334    //****************************************************************************************      t1->SetTextSize(0.02);
335        t1->DrawLatex(65.,98.7,isfile.str().c_str());
336    TCanvas *LandauCanv1=new TCanvas("Landau ladder1","",900,1200);      isfile.str("");
337    LandauCanv1->SetFillColor(10);  
338    LandauCanv1->Range(0,0,100,100);      //****************************************************************************************
339    isfile<<"Landau ladder1";      //Output figures --- Third sheet:
340        //****************************************************************************************
341    t->SetTextFont(32);  
342    t->SetTextColor(1);      isfile<<"Cluster Signal ladder1   pag"<<ii+1;
343    t->SetTextAlign(12);      LandauCanv1[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
344    t->SetTextSize(0.02);      LandauCanv1[ii]->SetFillColor(10);
345    t->DrawLatex(2.,98.7,fromfile.str().c_str());      LandauCanv1[ii]->Range(0,0,100,100);
346    t1->SetTextFont(32);  
347    t1->SetTextColor(1);      t->SetTextFont(32);
348    t1->SetTextAlign(12);      t->SetTextColor(1);
349    t1->SetTextSize(0.02);      t->SetTextAlign(12);
350    t1->DrawLatex(70.,98.7,isfile.str().c_str());      t->SetTextSize(0.02);
351    isfile.str("");      t->DrawLatex(2.,98.7,fromfile.str().c_str());
352        t1->SetTextFont(32);
353        t1->SetTextColor(1);
354        t1->SetTextAlign(12);
355        t1->SetTextSize(0.02);
356        t1->DrawLatex(65.,98.7,isfile.str().c_str());
357        isfile.str("");
358        
359    //****************************************************************************************      //****************************************************************************************
360    //Output figures --- Third sheet:      //Output figures --- Third sheet:
361    //****************************************************************************************      //****************************************************************************************
362    
363    TCanvas *LandauCanv2=new TCanvas("Landau ladder2","",900,1200);      isfile<<"Cluster Signal ladder2   pag"<<ii+1;
364    LandauCanv2->SetFillColor(10);      LandauCanv2[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
365    LandauCanv2->Range(0,0,100,100);      LandauCanv2[ii]->SetFillColor(10);
366    isfile<<"Landau ladder2";      LandauCanv2[ii]->Range(0,0,100,100);
367    
368    t->SetTextFont(32);      t->SetTextFont(32);
369    t->SetTextColor(1);      t->SetTextColor(1);
370    t->SetTextAlign(12);      t->SetTextAlign(12);
371    t->SetTextSize(0.02);      t->SetTextSize(0.02);
372    t->DrawLatex(2.,98.7,fromfile.str().c_str());      t->DrawLatex(2.,98.7,fromfile.str().c_str());
373    t1->SetTextFont(32);      t1->SetTextFont(32);
374    t1->SetTextColor(1);      t1->SetTextColor(1);
375    t1->SetTextAlign(12);      t1->SetTextAlign(12);
376    t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
377    t1->DrawLatex(70.,98.7,isfile.str().c_str());      t1->DrawLatex(65.,98.7,isfile.str().c_str());
378    isfile.str("");      isfile.str("");
379    
380    //****************************************************************************************      //****************************************************************************************
381    //Output figures --- Third sheet:      //Output figures --- Third sheet:
382    //****************************************************************************************      //****************************************************************************************
383    
384    TCanvas *LandauCanv3=new TCanvas("Landau ladder3","",900,1200);      isfile<<"Cluster Signal ladder3   pag"<<ii+1;
385    LandauCanv3->SetFillColor(10);      LandauCanv3[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
386    LandauCanv3->Range(0,0,100,100);      LandauCanv3[ii]->SetFillColor(10);
387    isfile<<"Landau ladder3";      LandauCanv3[ii]->Range(0,0,100,100);
388    
389    t->SetTextFont(32);      t->SetTextFont(32);
390    t->SetTextColor(1);      t->SetTextColor(1);
391    t->SetTextAlign(12);      t->SetTextAlign(12);
392    t->SetTextSize(0.02);      t->SetTextSize(0.02);
393    t->DrawLatex(2.,98.7,fromfile.str().c_str());      t->DrawLatex(2.,98.7,fromfile.str().c_str());
394    t1->SetTextFont(32);      t1->SetTextFont(32);
395    t1->SetTextColor(1);      t1->SetTextColor(1);
396    t1->SetTextAlign(12);      t1->SetTextAlign(12);
397    t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
398    t1->DrawLatex(70.,98.7,isfile.str().c_str());      t1->DrawLatex(65.,98.7,isfile.str().c_str());
399    isfile.str("");      isfile.str("");
400        
401    //****************************************************************************************      //****************************************************************************************
402    //Output figures --- Fourth sheet:      //Output figures --- Fourth sheet:
403    //****************************************************************************************      //****************************************************************************************
404    
405    TCanvas *IlluminaCanv=new TCanvas("Illuminazione","",900,1200);      isfile<<"lighting of the views   pag"<<ii+1;
406    IlluminaCanv->SetFillColor(10);      IlluminaCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
407    IlluminaCanv->Range(0,0,100,100);      IlluminaCanv[ii]->SetFillColor(10);
408    isfile<<"lighting of the views";      IlluminaCanv[ii]->Range(0,0,100,100);
409    t->SetTextFont(32);      t->SetTextFont(32);
410    t->SetTextColor(1);      t->SetTextColor(1);
411    t->SetTextAlign(12);      t->SetTextAlign(12);
412    t->SetTextSize(0.02);      t->SetTextSize(0.02);
413    t->DrawLatex(2.,98.7,fromfile.str().c_str());      t->DrawLatex(2.,98.7,fromfile.str().c_str());
414    t1->SetTextFont(32);      t1->SetTextFont(32);
415    t1->SetTextColor(1);      t1->SetTextColor(1);
416    t1->SetTextAlign(12);      t1->SetTextAlign(12);
417    t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
418    t1->DrawLatex(70.,98.7,isfile.str().c_str());      t1->DrawLatex(70.,98.7,isfile.str().c_str());
419    isfile.str("");      isfile.str("");
420    
421    //****************************************************************************************      //****************************************************************************************
422    //Output figures --- Fifth sheet:      //Output figures --- Fifth sheet:
423    //****************************************************************************************      //****************************************************************************************
424    
425    TCanvas *TempCanv=new TCanvas("Tracker_Detector_Temperaturt","",900,1200);      isfile<<"Temperatures vs OBT   pag"<<ii+1;
426    TempCanv->SetFillColor(10);      TempCanv[ii]=new TCanvas(isfile.str().c_str(),isfile.str().c_str(),900,1200);
427    TempCanv->Range(0,0,100,100);      TempCanv[ii]->SetFillColor(10);
428    isfile<<"Temperatures vs OBT";      TempCanv[ii]->Range(0,0,100,100);
429    
430    t->SetTextFont(32);      t->SetTextFont(32);
431    t->SetTextColor(1);      t->SetTextColor(1);
432    t->SetTextAlign(12);      t->SetTextAlign(12);
433    t->SetTextSize(0.02);      t->SetTextSize(0.02);
434    t->DrawLatex(2.,98.7,fromfile.str().c_str());      t->DrawLatex(2.,98.7,fromfile.str().c_str());
435    t1->SetTextFont(32);      t1->SetTextFont(32);
436    t1->SetTextColor(1);      t1->SetTextColor(1);
437    t1->SetTextAlign(12);      t1->SetTextAlign(12);
438    t1->SetTextSize(0.02);      t1->SetTextSize(0.02);
439    t1->DrawLatex(80.,98.7,isfile.str().c_str());      t1->DrawLatex(78.,98.7,isfile.str().c_str());
440    isfile.str("");      isfile.str("");
441        
442    //*************************************************************************************      //*************************************************************************************
443    //book pads and histos      //book pads and histos
444    //***************************************************************************************      //***************************************************************************************
445        Float_t posy = 0.95;    // up y-coord - top pads
446    TPad *pad1[12],*pad2[12],*pad3[12],*pad4[12],*pad5[12],*pad6[5];          //pad for histos      Float_t hpad = 0;   // pad height
447    Double_t posy = 0.95;    // up y-coord - top pads      Float_t posx1=0;          // left  x-coord - pad column
448    Double_t hpad = 0;   // pad height      Float_t posx0=0;          //       x-coord - column division
449    Double_t posx1=0;          // left  x-coord - pad column      Float_t wrel = 0;     // relative x size of first sub-column
450    Double_t posx0=0;          //       x-coord - column division      Float_t marg = 0.004;   // margin among pads
451    Double_t wrel = 0;     // relative x size of first sub-column      Float_t tposy = 0.95;    // up y-coord - top pads
452    Double_t marg = 0.004;   // margin among pads      Float_t thpad = 0;   // pad height
453    Double_t tposy = 0.95;    // up y-coord - top pads      Float_t tposx1=0;          // left  x-coord - pad column
454    Double_t thpad = 0;   // pad height      Float_t tposx0=0;          //       x-coord - column division
455    Double_t tposx1=0;          // left  x-coord - pad column      Float_t twrel = 0;     // relative x size of first sub-column
456    Double_t tposx0=0;          //       x-coord - column division      Float_t tmarg = 0.004;   // margin among pads
457    Double_t twrel = 0;     // relative x size of first sub-column  
458    Double_t tmarg = 0.004;   // margin among pads      hpad = (posy-marg*11)/6;
459        wrel = (1-marg*4)/2;
460    hpad = (posy-marg*11)/6;      thpad = (tposy-tmarg*5)/3;
461    wrel = (1-marg*4)/2;      twrel = (1-tmarg*4)/2;
   thpad = (tposy-tmarg*5)/3;  
   twrel = (1-tmarg*4)/2;  
   stringstream title;  
   stringstream hid;  
462    
463    for(Int_t n = 0; n<12; n++) {      for(Int_t n = 0; n<12; n++) {
464            
465      if ( (n+1)%2==1 ) {        if ( (n+1)%2==1 ) {
466        if(n>1) posy = posy-(marg*2+hpad);          if(n>1) posy = posy-(marg*2+hpad);
467        posx1 = marg;          posx1 = marg;
468        posx0 = posx1 + wrel;          posx0 = posx1 + wrel;
469      }        }
470      else {        else {
471        posx1 = posx0 + 2*marg;          posx1 = posx0 + 2*marg;
472        posx0 = posx1 + wrel;          posx0 = posx1 + wrel;
473      }        }
474            
475      if ( (n+1)%2==1 ) {        if ( (n+1)%2==1 ) {
476        if(n>1) tposy = tposy-(tmarg*2+thpad);          if(n>1) tposy = tposy-(tmarg*2+thpad);
477        tposx1 = tmarg;          tposx1 = tmarg;
478        tposx0 = tposx1 + twrel;          tposx0 = tposx1 + twrel;
479      }        }
480      else {        else {
481        tposx1 = tposx0 + 2*tmarg;          tposx1 = tposx0 + 2*tmarg;
482        tposx0 = tposx1 + twrel;          tposx0 = tposx1 + twrel;
483      }        }
484    
485    
486      /* -----------> pad for histograms  */        /* -----------> pad for histograms  */
487      pad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0,posy,18,0,0);        pad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0,posy,18,0,0);
488      pad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0,posy,18,0,0);        pad2[n] = new TPad("pad2"," ",posx1,posy-hpad,posx0,posy,18,0,0);
489      pad3[n] = new TPad("pad3"," ",posx1,posy-hpad,posx0,posy,18,0,0);        pad3[n] = new TPad("pad3"," ",posx1,posy-hpad,posx0,posy,18,0,0);
490      pad4[n] = new TPad("pad4"," ",posx1,posy-hpad,posx0,posy,18,0,0);        pad4[n] = new TPad("pad4"," ",posx1,posy-hpad,posx0,posy,18,0,0);
491      pad5[n] = new TPad("pad5"," ",posx1,posy-hpad,posx0,posy,18,0,0);        pad5[n] = new TPad("pad5"," ",posx1,posy-hpad,posx0,posy,18,0,0);
492      if(n<5) pad6[n] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);        if(n<5) pad6[n] = new TPad("pad6"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
493    
494    
495      /* -----------> HISTOGRAMS          */        /* -----------> HISTOGRAMS          */
496    
497      oss1<<"DSP  "<<n+1;        tit<<"DSP "<<n+1;
498      oss2<<"DSPh  "<<n+1;        oss1<<"DSP  "<<n*100+ii;
499      oss3<<"DSP h "<<n+1;        oss2<<"DSPh  "<<n*100+ii;
500      oss4<<"DSP   h"<<n+1;        oss3<<"DSP h "<<n*100+ii;
501          oss4<<"DSP   h"<<n*100+ii;
502            
503      landau1[n]=new TH1F(oss1.str().c_str(),oss1.str().c_str(),1201,-0.5,1200.5);        landau1[n][ii]= new TH1F(oss1.str().c_str(),tit.str().c_str(),401,-0.5,1200.5);
504      landau1[n]->GetXaxis()->SetTitle("max signal");        landau2[n][ii]= new TH1F(oss2.str().c_str(),tit.str().c_str(),401,-0.5,1200.5);
505      landau1[n]->GetXaxis()->CenterTitle();        landau3[n][ii]= new TH1F(oss3.str().c_str(),tit.str().c_str(),401,-0.5,1200.5);
506      landau2[n]=new TH1F(oss2.str().c_str(),oss1.str().c_str(),1201,-0.5,1200.5);  
507      landau2[n]->GetXaxis()->SetTitle("max signal");        illuminazione[n][ii]= new TH1F(oss4.str().c_str(),tit.str().c_str(),3073,-0.5,3072.5);
508      landau2[n]->GetXaxis()->CenterTitle();  
509      landau3[n]=new TH1F(oss3.str().c_str(),oss1.str().c_str(),1201,-0.5,1200.5);        tit.str("");
510      landau3[n]->GetXaxis()->SetTitle("max signal");        oss1.str("");
511      landau3[n]->GetXaxis()->CenterTitle();        oss2.str("");
512          oss3.str("");
513      illuminazione[n]=new TH1F(oss4.str().c_str(),oss1.str().c_str(),3073,-0.5,3072.5);        oss4.str("");
514      illuminazione[n]->GetXaxis()->SetTitle("strip with max signal");      };            
     illuminazione[n]->GetXaxis()->CenterTitle();  
   
     oss1.str("");  
     oss2.str("");  
     oss3.str("");  
     oss4.str("");  
   };              
515        
516    
517    //**********************************************************************************      //    printf("\nprova0\n");
518    // Fill Graphs and Histos  
519    //**********************************************************************************  
520        //**********************************************************************************
521        // Fill Graphs and Histos
522        //**********************************************************************************
523        
524    Double_t maxhist=0;      //
525    TBox b;      // information about the tracker data
526    b.SetFillColor(5);      Int_t warning_dspnumber=0;
527        Float_t x[MAXSTORAGE];
528        Float_t yc[MAXSTORAGE][12];
529        Float_t eventint[MAXSTORAGE];
530        
531        for (Int_t ev=minev; ev<maxevent; ev++){
532          tr->GetEntry(ev);
533          ph = eh->GetPscuHeader();
534    
535          if(ev==maxevent-1) maxev=maxevent-1;
536    
537          if((ph->GetOrbitalTime()<x[ev-minev-1] && ev-minev!=0) || ev-minev==MAXSTORAGE){
538            maxev=ev;
539            //      printf("prova12  ev=%d\tev-minev=%d\n",ev,ev-minev);
540            break;
541          }
542          else{
543            //      if(ii==32)printf("\nprova1  %d\tev-minev=%d\n",ev,ev-minev);
544            x[(ev-minev)]= ph->GetOrbitalTime();
545            ALARM=0;
546            
547            Int_t dsp=0;
548            for(Int_t i=0; i<12; i++){
549              dsp=te->DSPnumber[i]-1;
550              yc[(ev-minev)][dsp]= 0.051*te->compressiontime[i];
551              
552              for(Int_t j=0;j<3;j++){
553                if(te->signcluster[i][j]!=0){
554                  if((te->addrcluster[i][j]>6 && te->addrcluster[i][j]<505) ||(te->addrcluster[i][j]>518 && te->addrcluster[i][j]<1018)){
555            //      if((dsp==1 && te->addrcluster[i][2]>767 && te->addrcluster[i][2]<1024) || (dsp==6 && te->addrcluster[i][0]>511 && te->addrcluster[i][0]<769) ||(dsp==6 && te->addrcluster[i][1]>0 && te->addrcluster[i][1]<769) ||(dsp==6 && te->addrcluster[i][2]>511 && te->addrcluster[i][2]<769) ||(dsp==11 && te->addrcluster[i][0]>767 && te->addrcluster[i][0]<1024))
556    //                continue;
557    //              else
558                      illuminazione[dsp][ii]->Fill((Float_t)((j*1024.)+te->addrcluster[i][j]));
559                  }
560                }
561              }
562              if(!(dsp%2)){
563                if(te->signcluster[i][0]!=0) landau1[dsp][ii]->Fill((Float_t)(1024.-te->signcluster[i][0]));
564                if(te->signcluster[i][1]!=0) landau2[dsp][ii]->Fill((Float_t)(1024.-te->signcluster[i][1]));
565                if(te->signcluster[i][2]!=0) landau3[dsp][ii]->Fill((Float_t)(1024.-te->signcluster[i][2]));
566              }
567              else{
568                if(te->signcluster[i][0]!=0) landau1[dsp][ii]->Fill((Float_t)te->signcluster[i][0]);
569                if(te->signcluster[i][1]!=0) landau2[dsp][ii]->Fill((Float_t)te->signcluster[i][1]);
570                if(te->signcluster[i][2]!=0) landau3[dsp][ii]->Fill((Float_t)te->signcluster[i][2]);
571              }
572              
573              WARNING[i]=0;
574              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){
575                ALARM = 1;      //general alarm
576                WARNING[i] = 1; // DSP warning
577              };
578    
579              if(te->alarm[i]!=0){ // hardware alarm
580                ALARM = 1;
581              };
582          
583              //**************************************************************************************
584              // warning for internal number
585              //**************************************************************************************
586              if(i<=10){
587                if(te->eventn[i]!=te->eventn[i+1]){
588                  warning_dspnumber++;
589                  warning<< "==> WARNING!!    Check entry "<< ev<<" (DSP "<<dsp<<")" <<endl<<
590                    "eventn["<<i<<"]= "<<te->eventn[i]<<"!= eventn["<<i+1<<"]= "<< te->eventn[i+1]<<endl;
591                }
592                else
593                  eventint[(ev-minev)]=te->eventn[0];
594              }
595            }
596    
597    for (Int_t i=0; i<12 ; i++){          if(ev<=maxevent-1){
598    
599      for (Int_t ev=minevent; ev<maxevent; ev++){            if((ev-minev)>=1 && eventint[(ev-minev)]!=eventint[(ev-minev)-1]+1 && eventint[(ev-minev)]!=1){
600        yyc[(ev-minevent)]=yc[12*(ev-minevent)+i];              warning_dspnumber++;
601        // if( land[12*(ev-minevent)+i][0]!=0 && illum[12*(ev-minevent)+i][0]>510 && illum[12*(ev-minevent)+i][0]<515)  landau1[i]->Fill(land[12*(ev-minevent)+i][0]);              warning<< "==> WARNING!!    Check entry "<< ev<<endl<<
602        if( land[12*(ev-minevent)+i][0]!=0)  landau1[i]->Fill(land[12*(ev-minevent)+i][0]);                " DSP event num.= "<< eventint[(ev-minev)]<<
603        if( land[12*(ev-minevent)+i][1]!=0)  landau2[i]->Fill(land[12*(ev-minevent)+i][1]);                " is different from (previus+1) ="<<eventint[(ev-minev)-1]+1 <<"\n"<<endl;
604        if( land[12*(ev-minevent)+i][2]!=0)  landau3[i]->Fill(land[12*(ev-minevent)+i][2]);            }
605        for(Int_t j=0;j<3;j++){          }
606          if(land[12*(ev-minevent)+i][j]!=0){        
607            hi=(j*1024)+illum[12*(ev-minevent)+i][j];          //********************************************************************************************
608            illuminazione[i]->Fill(hi);          // file ALARM
609            //********************************************************************************************
610    
611            if(ALARM==1) {  
612              alarm <<endl<< "================================================="<< endl;
613              alarm << "PSCU-Pkt N. "<< ph->GetCounter() ;
614              alarm << " - OBT "<< ph->GetOrbitalTime() << " ms"<<endl;
615              alarm << "(ROOT-tree entry "<<ev<<")"<<endl;
616              alarm << "================================================="<< endl;
617              
618              alarm << " DSPn";
619              alarm << " Event";
620              alarm << " Words";
621              alarm << " crc";
622              alarm << "  FC";
623              alarm << " FL1";
624              alarm << " FL2";
625              alarm << " FL3";
626              alarm << " FL4";
627              alarm << " FL5";
628              alarm << " FL6" << endl;
629              
630              for(Int_t i=0; i<12 ; i++){
631                alarm.width(5); alarm << te->DSPnumber[i];
632                alarm.width(6); alarm << te->eventn[i];
633                alarm.width(6); alarm << te->DATAlength[i];
634                alarm.width(4); alarm << te->crc[i];
635                alarm.width(4); alarm << te->fc[i];
636                alarm.width(4); alarm << te->fl1[i];
637                alarm.width(4); alarm << te->fl2[i];
638                alarm.width(4); alarm << te->fl3[i];
639                alarm.width(4); alarm << te->fl4[i];
640                alarm.width(4); alarm << te->fl5[i];
641                alarm.width(4); alarm << te->fl6[i];
642                if(te->alarm[i]!=0)alarm<<" >> ALARM ";
643                if(WARNING[i]!=0)alarm<<" (DSP warning) ";
644                alarm    << endl;
645              }
646          }          }
647        }        }
648      }      }
649        if(ALARM==0) alarm << endl<< "------>  NO ALARM!!! <-------"<<endl;
650        if(warning_dspnumber==0) warning<<"NONE"<<endl;
651    
652        //    printf("prova2\n");
653    
654        Float_t maxhist=0;
655        TBox b;
656        b.SetFillColor(6);
657        b.SetFillStyle(3945);
658    
659        for (Int_t i=0; i<12 ; i++){
660          Float_t yyc[maxev-minev];
661          for (Int_t v=0; v<maxev-minev; v++){
662            yyc[v]=yc[v][i];
663          }
664            
665      LandauCanv1->cd();        //    printf("prova3\n");
666      pad1[i]->SetFillColor(10);        LandauCanv1[ii]->cd();
667      pad1[i]->SetFrameFillColor(10);        pad1[i]->SetFillColor(10);
668      pad1[i]->Draw();        pad1[i]->SetFrameFillColor(10);
669      pad1[i]->cd();        pad1[i]->Draw();
670      landau1[i]->Draw("");        pad1[i]->cd();
671      LandauCanv2->cd();        landau1[i][ii]->SetLineColor(1);
672      pad4[i]->SetFillColor(10);        landau1[i][ii]->GetXaxis()->SetTitle("max signal");
673      pad4[i]->SetFrameFillColor(10);        landau1[i][ii]->GetXaxis()->CenterTitle();
674      pad4[i]->Draw();        landau1[i][ii]->Draw("");
675      pad4[i]->cd();        LandauCanv1[ii]->Update();
676      landau2[i]->Draw("");  
677      LandauCanv3->cd();        LandauCanv2[ii]->cd();
678      pad5[i]->SetFillColor(10);        pad4[i]->SetFillColor(10);
679      pad5[i]->SetFrameFillColor(10);        pad4[i]->SetFrameFillColor(10);
680      pad5[i]->Draw();        pad4[i]->Draw();
681      pad5[i]->cd();        pad4[i]->cd();
682      landau3[i]->Draw("");        landau2[i][ii]->SetLineColor(1);
683          landau2[i][ii]->SetFillColor(1);
684      IlluminaCanv->cd();        landau2[i][ii]->GetXaxis()->SetTitle("max signal");
685      pad2[i]->SetFillColor(10);        landau2[i][ii]->GetXaxis()->CenterTitle();
686      pad2[i]->SetFrameFillColor(10);        landau2[i][ii]->Draw("");
687      pad2[i]->Draw();        LandauCanv2[ii]->Update();
688      pad2[i]->cd();  
689      pad2[i]->SetLogy();        LandauCanv3[ii]->cd();
690      // illuminazione[i]->SetStats(KFALSE);        pad5[i]->SetFillColor(10);
691     if(i==1){        pad5[i]->SetFrameFillColor(10);
692        illuminazione[i]->Draw("ah");        pad5[i]->Draw();
693        maxhist= illuminazione[i]->GetMaximum();        pad5[i]->cd();
694        b.DrawBox(2816.,0.,3060.,maxhist);        landau3[i][ii]->GetXaxis()->SetTitle("max signal");
695        illuminazione[i]->Draw("axis same");        landau3[i][ii]->GetXaxis()->CenterTitle();
696        illuminazione[i]->Draw("same ][");        landau3[i][ii]->Draw("");
697      }        LandauCanv3[ii]->Update();
698      else if(i==6){  
699        illuminazione[i]->Draw("ah");        //     printf("prova4\n");
700        maxhist= illuminazione[i]->GetMaximum();        IlluminaCanv[ii]->cd();
701        b.DrawBox(2560.,0.,2816.,maxhist);        pad2[i]->SetFillColor(10);
702        b.DrawBox(512.,0.,768.,maxhist);        pad2[i]->SetFrameFillColor(10);
703        b.DrawBox(1024.,0.,1792.,maxhist);        pad2[i]->SetLogy();
704        illuminazione[i]->Draw("axis same");        pad2[i]->Draw();
705        illuminazione[i]->Draw("same][");        pad2[i]->cd();
706      }        // illuminazione[i][ii]->SetStats(KFALSE);
707      else if(i==11){        illuminazione[i][ii]->GetXaxis()->SetTitle("strip with max signal");
708        illuminazione[i]->Draw("ah");        illuminazione[i][ii]->GetXaxis()->CenterTitle();
709        maxhist= illuminazione[i]->GetMaximum();        illuminazione[i][ii]->Draw("");
710        b.DrawBox(768.,0.,1024.,maxhist);        if(i==1){
711        illuminazione[i]->Draw("axis same");          maxhist= illuminazione[i][ii]->GetMaximum();
712        illuminazione[i]->Draw("same][");          b.DrawBox(2816.,0.,3060.,maxhist);
713      }        }
714      else illuminazione[i]->Draw("");        else if(i==6){
715            maxhist= illuminazione[i][ii]->GetMaximum();
716            b.DrawBox(2560.,0.,2816.,maxhist);
717            b.DrawBox(512.,0.,768.,maxhist);
718            b.DrawBox(1024.,0.,1792.,maxhist);
719          }
720          else if(i==11){
721            maxhist= illuminazione[i][ii]->GetMaximum();
722            b.DrawBox(768.,0.,1024.,maxhist);
723          }
724          IlluminaCanv[ii]->Update();
725    
726     CompTimeCanv->cd();        //     printf("prova5\n");
727      pad3[i]->SetFillColor(10);  
728      pad3[i]->SetFrameFillColor(10);  
729      pad3[i]->Draw();        CompTimeCanv[ii]->cd();
730      pad3[i]->cd();        pad3[i]->SetFillColor(10);
731      comprtime= new TGraph(nevent,x,yyc);        pad3[i]->SetFrameFillColor(10);
732      oss1<<"DSP  "<<i+1;        pad3[i]->Draw();
733      comprtime->SetTitle(oss1.str().c_str());        pad3[i]->cd();
734      comprtime->GetXaxis()->SetTitle("OBT (ms)");        comprtime[i][ii]= new TGraph(maxev-minev,x,yyc);
735      comprtime->GetXaxis()->CenterTitle();        oss1<<"DSP  "<<i+1;
736      comprtime->GetYaxis()->SetTitle("compressiontime (ms)");        comprtime[i][ii]->SetTitle(oss1.str().c_str());
737      comprtime->GetYaxis()->CenterTitle();        comprtime[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
738      comprtime->GetYaxis()->SetRangeUser(0,2);        comprtime[i][ii]->GetXaxis()->CenterTitle();
739      comprtime->Draw("ap");        comprtime[i][ii]->GetYaxis()->SetTitle("compressiontime (ms)");
740      oss1.str("");        comprtime[i][ii]->GetYaxis()->CenterTitle();
741    };        comprtime[i][ii]->GetYaxis()->SetRangeUser(0,2);
742          comprtime[i][ii]->Draw("ap");
743          oss1.str("");
744          CompTimeCanv[ii]->Update();
745        };
746        
747    EventNumCanv->cd();      //  printf("prova6\n");
748    TPad *pt0=new TPad("pt0"," ",0.704,0.004,0.996,0.98);      EventNumCanv[ii]->cd();
749    pt1 = new TPaveText(0.004,0.004,0.986,0.996);      pt0=new TPad("pt0"," ",0.704,0.004,0.996,0.98);
750    pt = new TPad("pt"," ",0.004,0.004,0.7,0.98,18,0,0);      pt1 = new TPaveText(0.004,0.004,0.986,0.996);
751    pt1->SetFillColor(10);      pt = new TPad("pt"," ",0.004,0.004,0.7,0.98,18,0,0);
752    pt1->ReadFile(out + "warning.txt");      pt1->SetFillColor(10);
753    pt1->SetTextAlign(22);      pt1->ReadFile(out + "warning.txt");
754    pt1->SetTextSize(0.035);      pt1->SetTextAlign(22);
755    pt0->SetFillColor(10);      pt1->SetTextSize(0.035);
756    pt0->SetFrameFillColor(10);      pt0->SetFillColor(10);
757    pt0->Draw();      pt0->SetFrameFillColor(10);
758    pt0->cd();      pt0->Draw();
759    pt1->Draw();      pt0->cd();
760    EventNumCanv->cd();      pt1->Draw();
761    pt->SetFillColor(10);      EventNumCanv[ii]->cd();
762    pt->SetFrameFillColor(10);      pt->SetFillColor(10);
763    pt->Draw();      pt->SetFrameFillColor(10);
764    pt->cd();      pt->Draw();
765    eventnumb=new TGraph(nevent,x,eventint);      pt->cd();
766    eventnumb->SetTitle("");      eventnumb[ii]=new TGraph(maxev-minev,x,eventint);
767    eventnumb->GetXaxis()->SetLabelSize(0.04);      eventnumb[ii]->SetTitle("");
768    eventnumb->GetXaxis()->SetTitleSize(0.04);      eventnumb[ii]->GetXaxis()->SetLabelSize(0.04);
769    eventnumb->GetXaxis()->SetTitle("OBT (ms)");      eventnumb[ii]->GetXaxis()->SetTitleSize(0.04);
770    eventnumb->GetXaxis()->CenterTitle();      eventnumb[ii]->GetXaxis()->SetTitle("OBT (ms)");
771    eventnumb->GetXaxis()->SetTickLength(0.01);      eventnumb[ii]->GetXaxis()->CenterTitle();
772    eventnumb->GetXaxis()->SetTitleOffset(1.2);      eventnumb[ii]->GetXaxis()->SetTickLength(0.01);
773    eventnumb->GetYaxis()->SetLabelSize(0.04);      eventnumb[ii]->GetXaxis()->SetTitleOffset(1.2);
774    eventnumb->GetYaxis()->SetTitleSize(0.04);      eventnumb[ii]->GetYaxis()->SetLabelSize(0.04);
775    eventnumb->GetYaxis()->SetTitle("DSP event-number");      eventnumb[ii]->GetYaxis()->SetTitleSize(0.04);
776    eventnumb->GetYaxis()->CenterTitle();      eventnumb[ii]->GetYaxis()->SetTitle("DSP event-number");
777    eventnumb->GetYaxis()->SetTitleOffset(1.5);      eventnumb[ii]->GetYaxis()->CenterTitle();
778    eventnumb->SetMarkerStyle(21);      eventnumb[ii]->GetYaxis()->SetTitleOffset(1.5);
779    eventnumb->SetMarkerColor(kBlue);      eventnumb[ii]->SetMarkerStyle(21);
780    eventnumb->SetMarkerSize(0.3);      eventnumb[ii]->SetMarkerColor(kBlue);
781    eventnumb->Draw("ap");      eventnumb[ii]->SetMarkerSize(0.3);
782        eventnumb[ii]->Draw("ap");
783    for(Int_t i=0; i<5; i++){      EventNumCanv[ii]->Update();
784      for (Int_t ev=0; ev<tsize; ev++){  
785        tempt_tmp[ev]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231);      //    printf("prova7\n");
786    
787        obt=0;
788        for(Int_t i=0; i<5; i++){
789          Int_t v=0;
790          for (Int_t ev=countTEMP; ev<tsize; ev++){
791            tree->GetEntry(ev);
792            ph=eT->GetPscuHeader();
793            
794            if(ph->GetOrbitalTime()<obt && ev>countTEMP){
795              countTEMP=ev;
796              break;
797            }
798            else{
799              obt=ph->GetOrbitalTime();
800              tempt_tmp[v++]=(Int_t)(((3.3*tempt[ev][i]/4096)-0.586)/0.0231);
801            }
802          }
803          TempCanv[ii]->cd();
804          tit<<"T"<<i+5<<" (magnetic module "<<i+1<<")";
805          pad6[i]->SetFillColor(10);
806          pad6[i]->Draw();
807          pad6[i]->cd();
808          temp[i][ii]= new TGraph(v,xt,tempt_tmp);
809          temp[i][ii]->SetTitle(tit.str().c_str());
810          temp[i][ii]->GetXaxis()->SetLabelSize(0.04);
811          temp[i][ii]->GetXaxis()->SetTitleSize(0.04);
812          temp[i][ii]->GetXaxis()->SetTitle("OBT (ms)");
813          temp[i][ii]->GetXaxis()->CenterTitle();
814          temp[i][ii]->GetXaxis()->SetTitleOffset(0.85);
815          temp[i][ii]->GetYaxis()->SetTitleOffset(1.2);
816          temp[i][ii]->GetYaxis()->SetLabelOffset(0.001);
817          temp[i][ii]->GetYaxis()->SetLabelSize(0.04);
818          temp[i][ii]->GetYaxis()->SetTitleSize(0.04);
819          temp[i][ii]->GetYaxis()->SetTitle("Temperatures ( ^{o}C)");
820          temp[i][ii]->GetYaxis()->CenterTitle();
821          temp[i][ii]->SetMarkerStyle(21);
822          temp[i][ii]->SetMarkerSize(0.2);
823          temp[i][ii]->Draw("ap");
824          tit.str("");
825          TempCanv[ii]->Update();
826      }      }
827      TempCanv->cd();      
828      tit<<"T"<<i+5<<" (magnetic module "<<i+1<<")";      //    printf("prova8\n");
829      pad6[i]->SetFillColor(10);      minev=maxev;
830      pad6[i]->Draw();      //    printf("\ncountrun=%d\n",ii);
831      pad6[i]->cd();      if(maxev==maxevent-1) {
832      temp[i]= new TGraph(tsize,xt,tempt_tmp);        countrun=ii+1;
833      temp[i]->SetTitle(tit.str().c_str());        break;
834      temp[i]->GetXaxis()->SetLabelSize(0.04);      }
835      temp[i]->GetXaxis()->SetTitleSize(0.04);  
836      temp[i]->GetXaxis()->SetTitle("OBT (ms)");      warning.close();
837      temp[i]->GetXaxis()->CenterTitle();    }
838      temp[i]->GetXaxis()->SetTitleOffset(0.85);  
839      temp[i]->GetYaxis()->SetTitleOffset(1.2);    //*****************************************
840      temp[i]->GetYaxis()->SetLabelOffset(0.001);    //close all files
841      temp[i]->GetYaxis()->SetLabelSize(0.04);    //*****************************************  
842      temp[i]->GetYaxis()->SetTitleSize(0.04);    alarm.close();
843      temp[i]->GetYaxis()->SetTitle("Temperatures ( ^{o}C)");  
     temp[i]->GetYaxis()->CenterTitle();  
     temp[i]->SetMarkerStyle(21);  
     temp[i]->SetMarkerSize(0.2);  
     temp[i]->Draw("ap");  
     tit.str("");  
   }  
   CompTimeCanv->Update();  
   LandauCanv1->Update();  
   LandauCanv2->Update();  
   LandauCanv3->Update();  
   IlluminaCanv->Update();  
   TempCanv->Update();  
     
844    printf("... end of packets. \n");    printf("... end of packets. \n");
845    //*************************************************************************    //*************************************************************************
846    // Save output Files    // Save output Files
847    //*************************************************************************    //*************************************************************************
848    stringstream out1,out2,out3,command;    stringstream out1,out2,out3,command;
849        
850    if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){    for(Int_t fl=0;fl<countrun;fl++){
851      out1.str("");      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
852      out2.str("");        out1.str("");
853      out3.str("");        out2.str("");
854              out3.str("");
855      out1<<ffile<<"_FTrkQLook_EXPERT.ps(";        
856      out2<<ffile<<"_FTrkQLook_EXPERT.ps";        out1<<ffile<<"_FTrkQLook_EXPERT.ps(";
857      out3<<ffile<<"_FTrkQLook_EXPERT.ps)";        out2<<ffile<<"_FTrkQLook_EXPERT.ps";
858              out3<<ffile<<"_FTrkQLook_EXPERT.ps)";
     CompTimeCanv->Print(out+out1.str().c_str(),"Portrait");  
     EventNumCanv->Print(out+out2.str().c_str(),"Portrait");  
     LandauCanv1->Print(out+out2.str().c_str(),"Portrait");  
     LandauCanv2->Print(out+out2.str().c_str(),"Portrait");  
     LandauCanv3->Print(out+out2.str().c_str(),"Portrait");  
     IlluminaCanv->Print(out+out2.str().c_str(),"Portrait");  
     TempCanv->Print(out+out3.str().c_str(),"Portrait");  
859            
860      if(!strcmp(outfile.Data(),"pdf")){        if(countrun==1){
861        stringstream com;          CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
862        com<<"ps2pdf13 "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "<<out<<ffile<<"_FTrkQLook_EXPERT.pdf";          EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
863        system(com.str().c_str());          LandauCanv1[fl]->Print(out+out2.str().c_str(),"Portrait");
864        printf("\n---> ps file converted in pdf format!\n");          LandauCanv2[fl]->Print(out+out2.str().c_str(),"Portrait");
865        com.str("");          LandauCanv3[fl]->Print(out+out2.str().c_str(),"Portrait");
866        com<<"rm -f "<<out<<ffile<<"_FTrkQLook_EXPERT.ps ";          IlluminaCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
867        system(com.str().c_str());          TempCanv[fl]->Print(out+out3.str().c_str(),"Portrait");
868        printf("---> ps file removed!\n\n");        }
869        com.str("");        else if(countrun>=1){
870            if(fl==0) CompTimeCanv[fl]->Print(out+out1.str().c_str(),"Portrait");
871            else CompTimeCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
872            EventNumCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
873            LandauCanv1[fl]->Print(out+out2.str().c_str(),"Portrait");
874            LandauCanv2[fl]->Print(out+out2.str().c_str(),"Portrait");
875            LandauCanv3[fl]->Print(out+out2.str().c_str(),"Portrait");
876            IlluminaCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
877            if(fl!=countrun-1) TempCanv[fl]->Print(out+out2.str().c_str(),"Portrait");
878            else TempCanv[fl]->Print(out+out3.str().c_str(),"Portrait");
879          }
880      }      }
881        else{
882          out1.str("");
883          out1<<ffile<<"_FTrkQLook_EXPERT-CompTime-pag"<<fl+1<<"."<<outfile.Data();
884          CompTimeCanv[fl]->Print(out+out1.str().c_str());
885          out1.str("");
886          out1<<ffile<<"_FTrkQLook_EXPERT-Temp-pag"<<fl+1<<"."<<outfile.Data();
887          TempCanv[fl]->Print(out+out1.str().c_str());
888          out1.str("");
889          out1<<ffile<<"_FTrkQLook_EXPERT-EvNum-pag"<<fl+1<<"."<<outfile.Data();
890          EventNumCanv[fl]->Print(out+out1.str().c_str());
891          out1.str("");
892          out1<<ffile<<"_FTrkQLook_EXPERT-LandauL1-pag"<<fl+1<<"."<<outfile.Data();
893          LandauCanv1[fl]->Print(out+out1.str().c_str());
894          out1.str("");
895          out1<<ffile<<"_FTrkQLook_EXPERT-LandauL2-pag"<<fl+1<<"."<<outfile.Data();
896          LandauCanv2[fl]->Print(out+out1.str().c_str());
897          out1.str("");
898          out1<<ffile<<"_FTrkQLook_EXPERT-LandauL3-pag"<<fl+1<<"."<<outfile.Data();
899          LandauCanv3[fl]->Print(out+out1.str().c_str());
900          out1.str("");
901          out1<<ffile<<"_FTrkQLook_EXPERT-Lighting-pag"<<fl+1<<"."<<outfile.Data();
902          IlluminaCanv[fl]->Print(out+out1.str().c_str());
903        }
904      }  
905    
906      if(!strcmp(outfile.Data(),"pdf")){
907        stringstream com;
908        com<<"ps2pdf13 "<<out<<ffile<<"_FTrkQLook_EXPERT.ps "<<out<<ffile<<"_FTrkQLook_EXPERT.pdf";
909        system(com.str().c_str());
910        printf("\n---> ps file converted in pdf format!\n");
911        com.str("");
912        com<<"rm -f "<<out<<ffile<<"_FTrkQLook_EXPERT.ps ";
913        system(com.str().c_str());
914        printf("---> ps file removed!\n\n");
915        com.str("");
916    }    }
917    else{  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-CompTime."<<outfile.Data();  
     CompTimeCanv->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-Temp."<<outfile.Data();  
     TempCanv->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-EvNum."<<outfile.Data();  
     EventNumCanv->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-LandauL1."<<outfile.Data();  
     LandauCanv1->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-LandauL2."<<outfile.Data();  
     LandauCanv2->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-LandauL3."<<outfile.Data();  
     LandauCanv3->Print(out+out1.str().c_str());  
     out1.str("");  
     out1<<ffile<<"_FTrkQLook_EXPERT-Lighting."<<outfile.Data();  
     IlluminaCanv->Print(out+out1.str().c_str());  
   }  
   
918    command.str("");    command.str("");
919    command<<"rm -f "<<out<<"warning.txt";    command<<"rm -f "<<out<<"warning.txt";
920    system(command.str().c_str());    system(command.str().c_str());
921      
922    gROOT->Reset();    gROOT->Reset();
923    return;    return;
924  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.23