/[PAMELA software]/calo/flight/FQLOOK/macros/FCaloQLOOK.cxx
ViewVC logotype

Diff of /calo/flight/FQLOOK/macros/FCaloQLOOK.cxx

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

revision 1.1 by mocchiut, Thu Mar 9 16:14:32 2006 UTC revision 1.21 by mocchiut, Wed Jul 18 07:57:13 2007 UTC
# Line 1  Line 1 
1  //  //
2  //   Check for possible errors and shows raw distribution of variables coming from the DSP (no calibrations needed) - Emiliano Mocchiutti  //   Check for possible errors and shows raw distribution of variables coming from the DSP (no calibrations needed) - Emiliano Mocchiutti
3  //  //
4  //   FCaloQLOOK.c      version 1.01  (2006-02-28)  //   FCaloQLOOK.c      version 1.14  (2006-09-29)
5  //  //
6  //   The only input needed is the path to the directory created by YODA for the data file you want to analyze.  //   The only input needed is the path to the directory created by YODA for the data file you want to analyze.
7  //  //
8  //   Changelog:  //   Changelog:
9  //  //
10    //   1.13 - 1.14 (2006-09-29): Flag the last entry in the txt file, count missing section when checking for DSP entries correspondence.
11    //
12    //   1.12 - 1.13 (2006-09-28): Give wrong number of events in compress mode, fixed.
13    //
14    //   1.11 - 1.12 (2006-09-22): Check for different number of events, put output in a file and write down errors for each event. Fixed jumpev bug.
15    //
16    //   1.09 - 1.11 (2006-07-17): Adapted to flight conditions.
17    //
18    //   1.07 - 1.09 (2006-05-29): Fixed bug in output filename when input is not in the form DW_YYMMDD_NNN. Bug in latchup alarm not coming from the status word, fixed.
19    //
20    //   1.06 - 1.07 (2006-05-23): Don't print warning in case of latchup not recognized from the status word, fixed. Added "expert" figures from 21 to 28 which appears only in the
21    //                             case of latchup alarm.
22    //
23    //   1.05 - 1.06 (2006-03-22): Add optimize flag in compiling the script!
24    //
25    //   1.04 - 1.05 (2006-03-22): Corrected wrong .C files.
26    //
27    //   1.03 - 1.04 (2006-03-20): Documentation updated.
28    //
29    //   1.02 - 1.03 (2006-03-20): Changed name of shared libraries (from FCaloQLOOK_cxx.so to libFCaloQLOOK.so).
30    //
31    //   1.01 - 1.02 (2006-03-13): Include files from YODA without "event" directory.
32    //
33  //   1.00 - 1.01 (2006-02-28): Works on YODA v6 output (single file), does not require anymore calocommon package.  //   1.00 - 1.01 (2006-02-28): Works on YODA v6 output (single file), does not require anymore calocommon package.
34  //  //
35  //   0.00 - 1.00 (2006-02-28): Clone of CaloQLOOK.c (ground software).  //   0.00 - 1.00 (2006-02-28): Clone of CaloQLOOK.c (ground software).
# Line 25  Line 48 
48  #include <TPad.h>  #include <TPad.h>
49  #include <TPolyLine.h>  #include <TPolyLine.h>
50  #include <TStyle.h>  #include <TStyle.h>
51    #include <TSystem.h>
52    #include <TApplication.h>
53  //  //
54  #include <event/PamelaRun.h>  #include <PamelaRun.h>
55  #include <event/physics/calorimeter/CalorimeterEvent.h>  #include <physics/calorimeter/CalorimeterEvent.h>
56  //  //
57  #include <FCaloQLOOKfun.h>  #include <FCaloQLOOKfun.h>
58  //  //
# Line 51  void stringappend(TString& s1, const TSt Line 76  void stringappend(TString& s1, const TSt
76  }  }
77    
78  TString getFilename(const TString filename){  TString getFilename(const TString filename){
79    const string fil = (const char*)filename;    //
80    Int_t posiz = fil.find("dw_");    const string fil = gSystem->BaseName(filename.Data());
81    if ( posiz == -1 ) posiz = fil.find("DW_");    Int_t posiz = fil.find(".root");
82    if ( posiz == -1 ) return 0;    //
   Int_t posiz2 = posiz+13;  
83    TString file2;    TString file2;
84    stringcopy(file2,filename,posiz,posiz2);    if ( posiz == -1 ){
85    TString pdat(".dat");      file2 = gSystem->BaseName(filename.Data());
86    stringappend(file2,pdat);    } else {
87        Int_t posiz2 = 0;
88        stringcopy(file2,gSystem->BaseName(filename.Data()),posiz2,posiz);
89        TString pdat(".pam");
90        stringappend(file2,pdat);  
91      };
92    return file2;    return file2;
93  }  }
94    
95  void FCaloQLOOK(TString filename, Int_t fromevent=0, Int_t toevent=0, TString outDir="", TString saveas = "ps"){  void sighandler(UInt_t pkt_num, UInt_t obt, UInt_t entry, UInt_t section, UInt_t totev, Bool_t &evdone){
96      if ( !evdone ){    
97        printf("\n\n=================================================\n");
98        printf("PSCU-Pkt N. %u - OBT %u ms\n",pkt_num,obt);
99        printf("Total events %u\n",totev);
100        printf("(ROOT-tree entry %u )\n",entry);
101        if ( (totev-1) == entry ) printf("NOTICE: this is last entry! \n");
102        printf("=================================================\n");
103        evdone = true;
104      };
105      TString sec = "UNKNOWN";
106      if ( section == 0 ) sec = "XE";
107      if ( section == 1 ) sec = "XO";
108      if ( section == 2 ) sec = "YE";
109      if ( section == 3 ) sec = "YO";
110      printf(" Section %s (DSP n. %i) message: ",sec.Data(),section);
111    };
112    
113    void FCaloQLOOK(TString filename, Int_t fromevent=0, Int_t toevent=0, TString outDir="", TString saveas = "png", Bool_t iactive =false, Bool_t w4i=false){
114    gStyle->SetPaperSize(19.,25.);    gStyle->SetPaperSize(19.,25.);
115    const char* startingdir = gSystem->WorkingDirectory();    const char* startingdir = gSystem->WorkingDirectory();
116      //  printf(" basename is %s \n",gSystem->BaseName(filename.Data()));
117      //  printf(" getfilename is %s \n",getFilename(filename).Data());
118    if ( !strcmp(outDir.Data(),"") ) outDir = startingdir;    if ( !strcmp(outDir.Data(),"") ) outDir = startingdir;
119    //    //
120      TApplication *app = 0;
121      if ( iactive ) app = new TApplication("app",0,0);
122    //    //
123    ifstream myfile;    ifstream myfile;
124    myfile.open(filename.Data());    myfile.open(filename.Data());
125    if ( !myfile ){    if ( !myfile ){
126      printf(" No such file, exiting...\n");      printf(" %s :no such file, exiting...\n\n",filename.Data());
127      return;      return;
128    };    };
129    myfile.close();    myfile.close();
130    //    //
131    TFile *File = new TFile(filename.Data());    TFile *File = new TFile(filename.Data());
132    TTree *tr = (TTree*)File->Get("Physics");    TTree *tr = (TTree*)File->Get("Physics");
133      if ( !tr ) {
134        printf(" Physics : no such tree in %s \n",filename.Data());
135        printf(" Exiting, are you sure this is a LEVEL0 not corrupted file? \n\n");
136        return;
137      };
138    //    //
139    // Define variables    // Define variables
140    //    //
141    Float_t ctshitthr = 0.65;    Float_t ctshitthr = 0.65;
142    Float_t cbasethr = 0.95;    Float_t cbasethr = 0.95;
143    Float_t cdexythr = 0.995;    //  Float_t cdexythr = 0.995;
144      Float_t cdexythr = 0.95;
145      //Float_t cdexythr = 0.90;
146    Float_t cdexycthr = 0.95;    Float_t cdexycthr = 0.95;
147      Float_t h1rth = 0.90;
148      Int_t calevnth = 13;
149    //    //
150    pamela::calorimeter::CalorimeterEvent *ce = 0;    pamela::calorimeter::CalorimeterEvent *ce = 0;
151    pamela::EventHeader *eh = 0;    pamela::EventHeader *eh = 0;
# Line 132  void FCaloQLOOK(TString filename, Int_t Line 192  void FCaloQLOOK(TString filename, Int_t
192    };    };
193    Int_t const size = nevents;    Int_t const size = nevents;
194    Double_t iev2[size+1];    Double_t iev2[size+1];
195    Int_t ver[4][23], lver[4][23],shit[4][11], rshit[4][11], se,bl, pl, fulldiff[4],cshit, cpre[4],nullsh[4][11], lalarm[4];    //aumentata la lunghezza di ver, prima era 23
196      Int_t ver[4][24], lver[4][23],shit[4][11], rshit[4][11], se,bl, pl, fulldiff[4],cshit, cpre[4],nullsh[4][11], lalarm[4];
197    se = 0;    se = 0;
198    pl = 0;        pl = 0;    
199    Float_t allbase = 0.;    Float_t allbase = 0.;
# Line 160  void FCaloQLOOK(TString filename, Int_t Line 221  void FCaloQLOOK(TString filename, Int_t
221    TH1F *calev01;    TH1F *calev01;
222    TH1F *calev23;    TH1F *calev23;
223    TH1F *calev03;    TH1F *calev03;
224      TH1F *lupstw[4];
225      TH1F *lup[4];
226    TH2D *calev2;    TH2D *calev2;
227    
228    h1 = new TH1F("C7","Strips hit, compress mode",100,0.,200.);    h1 = new TH1F("C7","Strips hit, compress mode",100,0.,200.);
# Line 169  void FCaloQLOOK(TString filename, Int_t Line 232  void FCaloQLOOK(TString filename, Int_t
232    hdiff->SetBit(TH1F::kCanRebin);    hdiff->SetBit(TH1F::kCanRebin);
233    Baseline = new TH1F("C9","baselines",100,0,3);    Baseline = new TH1F("C9","baselines",100,0,3);
234    Baseline->SetBit(TH1F::kCanRebin);    Baseline->SetBit(TH1F::kCanRebin);
235    Dexy = new TH1F("C12","dexy",100,0.,37000.);    Dexy = new TH1F("C12","dexy",100,0.,10000.);
236    Dexyc = new TH1F("C10","dexyc",100,0,3);    Dexy->SetBit(TH1F::kCanRebin);
237    Dexyc->SetBit(TH1F::kCanRebin);    Dexyc = new TH1F("C10","dexyc",100,-100.,37000.);
238    //  Dexyc->SetBit(TH1F::kCanRebin);
239    Calstriphit = new TH1F("C11","calstriphit[1:4]",100,0.,200.);    Calstriphit = new TH1F("C11","calstriphit[1:4]",100,0.,200.);
240            
241    calev01 = new TH1F("C3","|calevnum(1)-calevnum(2)|",100,0,1);    calev01 = new TH1F("C3","|calevnum(1)-calevnum(2)|",100,0,1);
# Line 182  void FCaloQLOOK(TString filename, Int_t Line 246  void FCaloQLOOK(TString filename, Int_t
246    calev03->SetBit(TH1F::kCanRebin);    calev03->SetBit(TH1F::kCanRebin);
247    calev2 = new TH2D("C2","calevnum(2)%iev",3000,0.,2.,100,0.,2.);    calev2 = new TH2D("C2","calevnum(2)%iev",3000,0.,2.,100,0.,2.);
248    calev2->SetBit(TH2D::kCanRebin);    calev2->SetBit(TH2D::kCanRebin);
249        
250      stringstream oss;
251      stringstream noss;
252      for ( Int_t i=0; i<4; i++){
253        oss.str("");
254        oss << "OBT stw latch up section " << i;
255        noss.str("");
256        noss << "C" << 21+i;
257        lupstw[i] = new TH1F(noss.str().c_str(),oss.str().c_str(),100,-1,1);
258        lupstw[i]->SetBit(TH1F::kCanRebin);
259        oss.str("");
260        oss << "OBT no stw latch up section " << i;
261        noss.str("");
262        noss << "C" << 25+i;
263        lup[i] = new TH1F(noss.str().c_str(),oss.str().c_str(),100,-1,1);
264        lup[i]->SetBit(TH1F::kCanRebin);
265      };
266    
267    //    //
268    // run over each event and take out some variables    // run over each event and take out some variables
269    //    //
# Line 214  void FCaloQLOOK(TString filename, Int_t Line 295  void FCaloQLOOK(TString filename, Int_t
295        maxevent = fromevent - 1;        maxevent = fromevent - 1;
296      };      };
297    };    };
298          //azzera i tipi di errore
299    for (Int_t k = 0; k < 4; k++ ){    for (Int_t k = 0; k < 4; k++ ){
300      for (Int_t m = 0; m < 23 ; m++ ){      for (Int_t m = 0; m < 23 ; m++ ){
301        ver[k][m] = 0 ;        ver[k][m] = 0 ;
# Line 226  void FCaloQLOOK(TString filename, Int_t Line 307  void FCaloQLOOK(TString filename, Int_t
307        };        };
308        lalarm[k] = 0;        lalarm[k] = 0;
309      };      };
310        //il 23 lo azzero cosi per non modificare le altre variabili
311        ver[k][23]=0;
312    };    };
313    Int_t pdone, bdone;    Int_t pdone, bdone;
314    pdone = 0;    pdone = 0;
315    bdone = 0;    bdone = 0;
316    bool isCOMP = 0;    bool isCOMP = false;
317    bool isFULL = 0;    bool isFULL = false;
318    bool isRAW = 0;    bool isRAW = false;
319    Int_t alldexy=0;    Int_t alldexy=0;
320    Int_t alldexy2=0;    Int_t alldexy2=0;
321    Int_t stri=0;    Int_t planebases=0;
322      //  Int_t stri=0;
323    Int_t fcheck = 0;    Int_t fcheck = 0;
324    Int_t cestw=0;    Int_t cestw=0;
325    Int_t cmask = 127 ;    Int_t cmask = 127 ;
# Line 250  void FCaloQLOOK(TString filename, Int_t Line 334  void FCaloQLOOK(TString filename, Int_t
334    fulldiff[1] = 0;    fulldiff[1] = 0;
335    fulldiff[2] = 0;    fulldiff[2] = 0;
336    fulldiff[3] = 0;      fulldiff[3] = 0;  
337    printf("\n Processed events: \n\n");    //  printf("\n Processed events: \n\n");
338      printf("\n Start processing: \n\n");
339    unsigned short int calev0=0;    unsigned short int calev0=0;
340    unsigned short int oldcalev0;    unsigned short int oldcalev0;
341    unsigned short int calev1=0;    unsigned short int calev1=0;
# Line 260  void FCaloQLOOK(TString filename, Int_t Line 345  void FCaloQLOOK(TString filename, Int_t
345    unsigned short int calev3=0;    unsigned short int calev3=0;
346    unsigned short int oldcalev3;    unsigned short int oldcalev3;
347    Int_t i = minevent;    Int_t i = minevent;
348    Float_t headc = 0.;    UInt_t headc = 0;
349    Float_t headco = 0.;    UInt_t headco = 0;
350    Bool_t h1rcheck = false;    Bool_t h1rcheck = false;
351      Int_t h1rin = 0;
352      Int_t h1rout = 0;
353    Int_t intshit = 0;    Int_t intshit = 0;
354    Int_t outtshit = 0;    Int_t outtshit = 0;
355    Int_t incshit = 0;    Int_t incshit = 0;
# Line 273  void FCaloQLOOK(TString filename, Int_t Line 360  void FCaloQLOOK(TString filename, Int_t
360    Int_t outdexy = 0;    Int_t outdexy = 0;
361    Int_t indexyc = 0;    Int_t indexyc = 0;
362    Int_t outdexyc = 0;    Int_t outdexyc = 0;
363      UInt_t obt = 0;
364      UInt_t minobt[4];
365      UInt_t maxobt[4];
366      UInt_t swminobt[4];
367      UInt_t swmaxobt[4];
368      Bool_t firstobt[4];
369      Bool_t swfirstobt[4];
370      for ( Int_t i = 0; i<4; i++){
371        minobt[i] = 0;
372        maxobt[i] = 0;
373        swminobt[i] = 0;
374        swmaxobt[i] = 0;
375        firstobt[i] = true;
376        swfirstobt[i] = true;
377      };
378      Bool_t evdone = false;
379      //
380    while ( i < maxevent+1){    while ( i < maxevent+1){
381        evdone = false;
382      tshit = 0;      tshit = 0;
383      trshit = 0;      trshit = 0;
384      tr->GetEntry(i);      tr->GetEntry(i);
385    
386      iev2[i] = ce->iev;          iev2[i] = ce->iev;    
387      //      //
388      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
389      headco = headc;      headco = headc;
390      headc = ph->GetCounter();      headc = ph->GetCounter();
391      calevn1 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[1]));      obt = ph->GetOrbitalTime();
392      calevn2 += (int)abs((int)(ce->calevnum[2]-ce->calevnum[3]));  
393      calevn3 += (int)abs((int)(ce->calevnum[0]-ce->calevnum[3]));      if ( (int)abs((int)(ce->calevnum[0]-ce->calevnum[1])) ) calevn1++;
394        if ( (int)abs((int)(ce->calevnum[2]-ce->calevnum[3])) ) calevn2++;
395        if ( (int)abs((int)(ce->calevnum[0]-ce->calevnum[3])) ) calevn3++;
396      calev01->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[1])));      calev01->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[1])));
397      calev23->Fill(abs((int)(ce->calevnum[2]-ce->calevnum[3])));      calev23->Fill(abs((int)(ce->calevnum[2]-ce->calevnum[3])));
398      calev03->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[3])));      calev03->Fill(abs((int)(ce->calevnum[0]-ce->calevnum[3])));
# Line 299  void FCaloQLOOK(TString filename, Int_t Line 407  void FCaloQLOOK(TString filename, Int_t
407      calevv2 = (int)ce->calevnum[2];      calevv2 = (int)ce->calevnum[2];
408      oldcalev3 = calev3;      oldcalev3 = calev3;
409      calev3 = (int)ce->calevnum[3];      calev3 = (int)ce->calevnum[3];
410      goto jumpprintout;      //    goto jumpprintout;
411      if ( (headc - headco -1.) == 0. && ((calev0 - oldcalev0 - 1) > 0 || (calev1 - oldcalev1 - 1) > 0 || (calevv2 - oldcalev2 - 1) > 0 || (calev3 - oldcalev3 - 1) > 0) ){      if ( (headc - headco -1) == 0. && ((calev0 - oldcalev0 - 1) > 0 || (calev1 - oldcalev1 - 1) > 0 || (calevv2 - oldcalev2 - 1) > 0 || (calev3 - oldcalev3 - 1) > 0) ){
412        if ( i != minevent ) {        if ( i != minevent ) {
413          printf(" %f 0 Event %i: %i\n",headco,i,oldcalev0);  //      printf(" %f 0 Event %i: %i\n",headco,i,oldcalev0);
414          printf(" %f 0 Event %i: %i\n",headc,i+1,calev0);            //      printf(" %f 0 Event %i: %i\n",headc,i+1,calev0);          
415          printf(" %f 1 Event %i: %i\n",headco,i,oldcalev1);  //      printf(" %f 1 Event %i: %i\n",headco,i,oldcalev1);
416          printf(" %f 1 Event %i: %i\n",headc,i+1,calev1);            //      printf(" %f 1 Event %i: %i\n",headc,i+1,calev1);          
417          printf(" %f 2 Event %i: %i\n",headco,i,oldcalev2);  //      printf(" %f 2 Event %i: %i\n",headco,i,oldcalev2);
418          printf(" %f 2 Event %i: %i\n",headc,i+1,calevv2);            //      printf(" %f 2 Event %i: %i\n",headc,i+1,calevv2);          
419          printf(" %f 3 Event %i: %i\n",headco,i,oldcalev3);  //      printf(" %f 3 Event %i: %i\n",headco,i,oldcalev3);
420          printf(" %f 3 Event %i: %i\n",headc,i+1,calev3);          //      printf(" %f 3 Event %i: %i\n",headc,i+1,calev3);        
421          isRAW = 0;          isRAW = 0;
422          if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;                  if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;        
423          if ( (calev0 - oldcalev0 - 1) > 0 && !isRAW && ce->perror[0] != 129 && oldcalev0 != 0) {          if ( (calev0 - oldcalev0 - 1) > 0 && !isRAW && ce->perror[0] != 129 && oldcalev0 != 0) {
424            ver[0][10]++;            ver[0][10]++;
425              sighandler(headc,obt,i,0,nevents,evdone);
426              printf(" jump in the counter calev is %i oldcalev was %i \n",calev0,oldcalev0);
427          };          };
428          isRAW = 0;          isRAW = 0;
429          if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;                  if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;        
430          if ( (calev1 - oldcalev1 - 1) > 0 && !isRAW && ce->perror[1] != 129 && oldcalev1 != 0 ){          if ( (calev1 - oldcalev1 - 1) > 0 && !isRAW && ce->perror[1] != 129 && oldcalev1 != 0 ){
431            ver[1][10]++;            ver[1][10]++;
432              sighandler(headc,obt,i,1,nevents,evdone);
433              printf(" jump in the counter calev is %i oldcalev was %i \n",calev1,oldcalev1);
434          };          };
435          isRAW = 0;          isRAW = 0;
436          if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;                  if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;        
437          if ( (calevv2 - oldcalev2 - 1) > 0 && !isRAW && ce->perror[2] != 129 && oldcalev2 != 0 ){          if ( (calevv2 - oldcalev2 - 1) > 0 && !isRAW && ce->perror[2] != 129 && oldcalev2 != 0 ){
438            ver[2][10]++;            ver[2][10]++;
439              sighandler(headc,obt,i,2,nevents,evdone);
440              printf(" jump in the counter calev is %i oldcalev was %i \n",calevv2,oldcalev2);
441          };          };
442          isRAW = 0;          isRAW = 0;
443          if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;                  if ( ce->stwerr[0] & (1 << 3)) isRAW = 1;        
444          if ( (calev3 - oldcalev3 - 1) > 0 && !isRAW && ce->perror[3] != 129 && oldcalev3 != 0 ){          if ( (calev3 - oldcalev3 - 1) > 0 && !isRAW && ce->perror[3] != 129 && oldcalev3 != 0 ){
445            ver[3][10]++;            ver[3][10]++;
446              sighandler(headc,obt,i,3,nevents,evdone);
447              printf(" jump in the counter calev is %i oldcalev was %i \n",calev3,oldcalev3);
448          };          };
449        }        };
450      };      };
451    jumpprintout:      //  jumpprintout:
452      memcpy(shit, nullsh, sizeof(nullsh));      memcpy(shit, nullsh, sizeof(nullsh));
453      memcpy(rshit, nullsh, sizeof(nullsh));      memcpy(rshit, nullsh, sizeof(nullsh));
454      for (Int_t l = 0; l < 2; l++ ){      for (Int_t l = 0; l < 2; l++ ){
# Line 356  void FCaloQLOOK(TString filename, Int_t Line 472  void FCaloQLOOK(TString filename, Int_t
472            se = 1;            se = 1;
473            pl = (ii-1)/2;            pl = (ii-1)/2;
474            pdone = 0;            pdone = 0;
475          };          };              
476                            isCOMP = false;
477          isCOMP = 0;          isFULL = false;
478          isFULL = 0;          isRAW = false;
479          isRAW = 0;          if ( ce->stwerr[se] & (1 << 16) ) isCOMP = true;
480          if ( ce->stwerr[se] & (1 << 16) ) isCOMP = 1;          if ( ce->stwerr[se] & (1 << 17) ) isFULL = true;
481          if ( ce->stwerr[se] & (1 << 17) ) isFULL = 1;          if ( ce->stwerr[se] & (1 << 3) ) isRAW = true;
         if ( ce->stwerr[se] & (1 << 3) ) isRAW = 1;  
482          bl = -1;          bl = -1;
483          for (Int_t kk = 0; kk < 96 ; kk++ ){          for (Int_t kk = 0; kk < 96 ; kk++ ){
484            if ( kk%16 == 0 ){            if ( kk%16 == 0 ){
485              bdone = 0;              bdone = 0;
486              bl++;              bl++;
487              allbase = ce->base[l][ii][bl];              allbase = ce->base[l][ii][bl];
488                //      alldexy=0;
489                //      alldexy2=0;
490                //      stri=0;
491                //      for (Int_t e = 0; e < 16 ; e++ ){
492                //        stri = e + 16 * bl;
493                //        alldexy += (int)ce->dexyc[l][ii][stri];
494                //        alldexy2 += (int)ce->dexy[l][ii][stri];
495                //      };
496              };
497              //
498              if ( kk == 0 ){
499                planebases = 0;
500              alldexy=0;              alldexy=0;
501              alldexy2=0;              alldexy2=0;
502              stri=0;              for (Int_t e = 0; e < 96 ; e++ ){
503              for (Int_t e = 0; e < 16 ; e++ ){                if ( e < 6 ) planebases += (int)ce->base[l][ii][e];
504                stri = e + 16 * bl;                alldexy += (int)ce->dexyc[l][ii][e];
505                alldexy += (int)ce->dexyc[l][ii][stri];                alldexy2 += (int)ce->dexy[l][ii][e];
               alldexy2 += (int)ce->dexy[l][ii][stri];  
506              };              };
507            };            };
508              //
509            if ( !isRAW ) {            if ( !isRAW ) {
510              //              //
511              if ( !pdone ){              if ( !pdone ){
512                if ( (ce->base[l][ii][bl]>32000 || ce->base[l][ii][bl] == 0 ) && ( alldexy > 512000 ||  alldexy == 0) && ce->perror[se] == 0 ) {                //              if ( (ce->base[l][ii][bl]>32000 || ce->base[l][ii][bl] == 0 ) && ( alldexy > 512000 ||  alldexy == 0) && ce->perror[se] == 0 ) {
513                  if ( (planebases>192000 || planebases == 0 ) && ( alldexy > 3072000 ||  alldexy == 0) && ce->perror[se] == 0 ) {
514                  pdone = 1;                  pdone = 1;
515                  pshit[se][pl]++ ;                  pshit[se][pl]++ ;
516                  if ( (ce->stwerr[se] & (1 << 4)) == 0 ) lalarm[se]++;                  if ( (ce->stwerr[se] & (1 << 4)) == 0 ) {
517                  lver[se][2]++ ;                    lalarm[se]++;
518                      lup[se]->Fill(obt);
519                      if ( firstobt[se] ) minobt[se] = obt;
520                      if ( obt > maxobt[se] ) maxobt[se] = obt;
521                    };
522                    lver[se][2]++ ;        
523                    sighandler(headc,obt,i,se,nevents,evdone);
524                    printf(" latch up (data) in DSP mode alldexy %i planebases %i \n",alldexy,planebases);
525                };                };
526              }              }
527              //              //
528              if ( !bdone ){              if ( !bdone ){
529                Baseline->Fill(ce->base[l][ii][bl]);                Baseline->Fill(ce->base[l][ii][bl]);
530                if ( ce->base[l][ii][bl] > 2000. && ce->base[l][ii][bl] < 4500. ){                if ( ce->base[l][ii][bl] > 2000. && ce->base[l][ii][bl] < 5500. ){
531                  inbase++;                  inbase++;
532                } else {                } else {
533                  outbase++;                  outbase++;
# Line 430  void FCaloQLOOK(TString filename, Int_t Line 565  void FCaloQLOOK(TString filename, Int_t
565                indexyc++;                                            indexyc++;                            
566              };              };
567              //              //
568              if (ce->dexyc[l][ii][kk] < 0 ) ver[se][21]++ ;              if (ce->dexyc[l][ii][kk] < 0 ){
569                  ver[se][21]++ ;
570                  sighandler(headc,obt,i,se,nevents,evdone);
571                  printf(" negative ADC values!! ce->dexyc[%i][%i][%i] = %f \n",l,ii,kk,ce->dexyc[l][ii][kk]);
572                };
573              //              //
574              if ( allbase == 0. || allbase > 32000.) {              if ( allbase == 0. || allbase > 32000.) {
575                fcheck = 0;                fcheck = 0;
# Line 445  void FCaloQLOOK(TString filename, Int_t Line 584  void FCaloQLOOK(TString filename, Int_t
584              //              //
585            } else {            } else {
586              if ( !pdone ){              if ( !pdone ){
587                if ( (alldexy2>512000 || alldexy2 == 0) && ce->perror[se] == 0 ) {                if ( ( alldexy2 > 3072000 ||  alldexy2 == 0) && ce->perror[se] == 0 ) {
588                    //            if ( (alldexy2>512000 || alldexy2 == 0) && ce->perror[se] == 0 )
589                  pdone = 1;                  pdone = 1;
590                  pshit[se][pl]++ ;                                          pshit[se][pl]++ ;                        
591                  if ( (ce->stwerr[se] & (1 << 4)) == 0 ) lalarm[se]++;                  if ( (ce->stwerr[se] & (1 << 4)) == 0 ){
592                      lalarm[se]++;
593                      lup[se]->Fill(obt);
594                      if ( firstobt[se] ) minobt[se] = obt;
595                      if ( obt > maxobt[se] ) maxobt[se] = obt;
596                    };
597                  lver[se][2]++ ;                  lver[se][2]++ ;
598                    sighandler(headc,obt,i,se,nevents,evdone);
599                    printf(" latch up (data) in RAW mode alldexy2 %i \n",alldexy2);
600                };                };
601              };              };
602              if ( ce->dexy[l][ii][kk] > 0 && ce->dexy[l][ii][kk] < 32000 ) {              if ( ce->dexy[l][ii][kk] > 0 && ce->dexy[l][ii][kk] < 32000 ) {
# Line 468  void FCaloQLOOK(TString filename, Int_t Line 615  void FCaloQLOOK(TString filename, Int_t
615      };      };
616      cshit = 0;      cshit = 0;
617      for (Int_t k = 0; k < 4 ; k++ ){      for (Int_t k = 0; k < 4 ; k++ ){
618        isCOMP = 0;        isCOMP = false;
619        isFULL = 0;        isFULL = false;
620        if ( ce->stwerr[se] & (1 << 16) ) isCOMP = 1;        cestw=0;// queste righe qui
621        if ( ce->stwerr[se] & (1 << 17) ) isFULL = 1;        if ( ce->stwerr[k] ) cestw =  ce->stwerr[k] & cmask ;//
622          if ( ce->stwerr[k] & (1 << 16) && !(cestw & (1 << 3)) ) isCOMP = true;
623          if ( ce->stwerr[k] & (1 << 17) && !(cestw & (1 << 3)) ) isFULL = true;
624          //
625        if ( isCOMP ) ver[k][16]++;        if ( isCOMP ) ver[k][16]++;
626        if ( isFULL ) ver[k][17]++;        if ( isFULL ) ver[k][17]++;
627        cshit += (int)ce->calstriphit[k];        cshit += (int)ce->calstriphit[k];
       cestw=0;  
       if ( ce->stwerr[k] ) cestw =  ce->stwerr[k] & cmask ;  
628        if ( cestw ){        if ( cestw ){
629          if ( cestw & (1 << 0) ) ver[k][6]++ ;          if ( cestw & (1 << 0) ){
630          if ( cestw & (1 << 1) ) ver[k][5]++ ;            ver[k][6]++ ;
631          if ( cestw & (1 << 2) ) ver[k][4]++ ;            sighandler(headc,obt,i,k,nevents,evdone);
632          if ( cestw & (1 << 3) ) ver[k][3]++ ;            printf(" CRC error (st. word) \n");
633          if ( cestw & (1 << 4) ) ver[k][2]++ ;          };
634          if ( cestw & (1 << 5) ) ver[k][1]++ ;          if ( cestw & (1 << 1) ){
635          if ( cestw & (1 << 6) ) ver[k][0]++ ;                      ver[k][5]++ ;
636        };            sighandler(headc,obt,i,k,nevents,evdone);
637              printf(" execution error \n");
638            };
639            if ( cestw & (1 << 2) ){
640              ver[k][4]++ ;
641              sighandler(headc,obt,i,k,nevents,evdone);
642              printf(" CMD length error \n");
643            };
644            if ( cestw & (1 << 3) ) ver[k][3]++ ; // raw mode
645            if ( cestw & (1 << 4) ){
646              ver[k][2]++ ;
647              sighandler(headc,obt,i,k,nevents,evdone);
648              printf(" latch up alarm (st. word)\n");
649              lupstw[k]->Fill(obt);
650              if ( swfirstobt[k] ) swminobt[k] = obt;
651              if ( obt > swmaxobt[k] ) swmaxobt[k] = obt;
652            };
653            if ( cestw & (1 << 5) ){
654              ver[k][1]++ ;
655              sighandler(headc,obt,i,k,nevents,evdone);
656              printf(" temperature alarm  \n");
657            };
658            if ( cestw & (1 << 6) ){
659              ver[k][0]++ ;        
660              sighandler(headc,obt,i,k,nevents,evdone);
661              printf(" DSP ack error \n");
662            };
663          };// controllo se ci sono errori crc se perr=0 ok!
664          if (  ce->stwerr[k] == 0 && ce->perror[k] == 0 ) ver[k][8]++ ;
665        if ( ce->perror[k] != 0. ){        if ( ce->perror[k] != 0. ){
666          if (ce->perror[k] == 128) ver[k][7]++ ;          if (ce->perror[k] == 128){
667          if (ce->perror[k] == 129) ver[k][8]++ ;            ver[k][7]++ ;
668          if (ce->perror[k] == 132) ver[k][11]++ ;            sighandler(headc,obt,i,k,nevents,evdone);
669          if (ce->perror[k] == 133) ver[k][12]++ ;            printf(" view or command not recognized \n");
670          if (ce->perror[k] == 134) ver[k][13]++ ;          };
671          if (ce->perror[k] == 135) ver[k][14]++ ;          if (ce->perror[k] == 129){
672          if (ce->perror[k] == 136) ver[k][15]++ ;            ver[k][8]++ ;
673          if (ce->perror[k] == 139) ver[k][18]++ ;            sighandler(headc,obt,i,k,nevents,evdone);
674          if (ce->perror[k] == 140) ver[k][19]++ ;            printf(" missing section \n");
675          if (ce->perror[k] == 141) ver[k][20]++ ;          };
676          if (ce->perror[k] == 142) ver[k][22]++ ;          if (ce->perror[k] == 132){
677              ver[k][11]++ ;
678              if ( ver[k][11] < 30 ){
679                sighandler(headc,obt,i,k,nevents,evdone);
680                printf(" CRC error (data) \n");
681              };
682              if ( ver[k][11] == 30 ){
683                sighandler(headc,obt,i,k,nevents,evdone);
684                printf(" CRC error (data) \n");
685                printf(" WARNING TOO MANY CRC ERRORS ON DATA FOR THIS SECTION \n");
686                printf(" THEY WILL NOT BE DISPLAYED HERE ANYMORE FOR THIS FILE! \n");
687              };
688            };
689            if (ce->perror[k] == 133){
690              ver[k][12]++ ;
691              sighandler(headc,obt,i,k,nevents,evdone);
692              printf(" length problems in RAW mode \n");
693            };
694            if (ce->perror[k] == 134){
695              ver[k][13]++ ;
696              sighandler(headc,obt,i,k,nevents,evdone);
697              printf(" length problems in COMPRESS mode \n");
698            };
699            if (ce->perror[k] == 135){
700              ver[k][14]++ ;
701              sighandler(headc,obt,i,k,nevents,evdone);
702              printf(" length problems in FULL mode \n");
703            };
704            if (ce->perror[k] == 136){
705              ver[k][15]++ ;
706              sighandler(headc,obt,i,k,nevents,evdone);
707              printf(" acquisition mode problems \n");
708            };
709            if (ce->perror[k] == 139){
710              ver[k][18]++ ;
711              sighandler(headc,obt,i,k,nevents,evdone);
712              printf(" problems with coding\n");
713            };
714            if (ce->perror[k] == 140){
715              ver[k][19]++ ;
716              sighandler(headc,obt,i,k,nevents,evdone);
717              printf(" pedestal checksum wrong\n");
718            };
719            if (ce->perror[k] == 141){
720              ver[k][20]++ ;
721              sighandler(headc,obt,i,k,nevents,evdone);
722              printf(" thresholds checksum wrong\n");
723            };
724            if (ce->perror[k] == 142){
725              ver[k][22]++ ;
726              sighandler(headc,obt,i,k,nevents,evdone);
727              printf(" packet length is zero (YODA input error), skipped\n");
728            };
729            //aggiunto questo errore
730            if (ce->perror[k] == 143){
731              ver[k][23]++ ;
732              sighandler(headc,obt,i,k,nevents,evdone);
733              printf(" corrupted packet lenght \n");
734            };
735        };        };
736        for (Int_t kk = 0; kk < 11 ; kk++ ){        for (Int_t kk = 0; kk < 11 ; kk++ ){
737          tshit += shit[k][kk];          tshit += shit[k][kk];
738          trshit += rshit[k][kk];          trshit += rshit[k][kk];
739        };        };
740      };        };  
741      Calstriphit->Fill(cshit);      if (isCOMP || isFULL){
742      if ( (cshit > 0 && cshit < 25) || (cshit > 40 && cshit < 80) ){        Calstriphit->Fill(cshit);
743        incshit++;        //    if ( (cshit > 0 && cshit < 25) || (cshit > 40 && cshit < 80) ){
744      } else {        //
745        outcshit++;        //cambiata la banda di soglia  ora 5  prima era 10
746      };        //
747      if ( tshit>0 ) h1->Fill(tshit);        if ( (cshit > 5 && cshit < 100) ){
748      if ( (tshit > 0 && tshit < 25) || (tshit > 40 && tshit < 80) ){          incshit++;
749        intshit++;        } else {
750      } else {          outcshit++;
751        outtshit++;        };
752          //
753          if ( tshit>0 ) h1->Fill(tshit);
754          //    if ( (tshit > 0 && tshit < 25) || (tshit > 40 && tshit < 80) ){
755          //cambiata la soglia ora 5  prima era 10
756          if ( (tshit > 5 && tshit < 100) ){
757            intshit++;
758          } else {
759            outtshit++;
760          };
761      };      };
762      if ( trshit>0 ) {      if ( trshit>0 ) {
763        h1r->Fill(trshit);        h1r->Fill(trshit);
764        if ( trshit < 4210 ){        if ( trshit < 4210 ){
765          h1rcheck = true;          h1rout++;
766          //              printf("ma come... trshit %i \n",trshit);          //              printf("ma come... trshit %i \n",trshit);
767          } else {
768            h1rin++;
769        };        };
770      };      };
771      if ( i%1000 == 0 && i > 0 ) printf("%iK\n",i/1000);      //    if ( i%1000 == 0 && i > 0 ) printf("%iK\n",i/1000);
772      i++;      i++;
773    };    };
774    printf("\n");    printf("\n");
775          printf("\n end processing. \n\n");
776      if ( (float)h1rout/((float)h1rin+(float)h1rout) > h1rth ){
777        h1rcheck = true;
778      };    
779    //    //
780    //  output figures, first sheet:    //  output figures, first sheet:
781    //    //
# Line 547  void FCaloQLOOK(TString filename, Int_t Line 795  void FCaloQLOOK(TString filename, Int_t
795    t->DrawLatex(2.,99.,errore.str().c_str());    t->DrawLatex(2.,99.,errore.str().c_str());
796    TPad *pd5;    TPad *pd5;
797    TPad *pd6;    TPad *pd6;
798      TPad *pd7;
799      TPad *pd8;
800    TPad *pad1;    TPad *pad1;
801    TPad *pad2;    TPad *pad2;
802    TPad *pad3;    TPad *pad3;
# Line 591  void FCaloQLOOK(TString filename, Int_t Line 841  void FCaloQLOOK(TString filename, Int_t
841      h1->Draw();      h1->Draw();
842      //      //
843      h1max = h1->GetMaximum()*1.05;      h1max = h1->GetMaximum()*1.05;
844      Double_t xc[4] = {0.,25.,25.,0.};  
845        //cambiata banda  prima era 10  ora 5
846        Double_t xc[4] = {5.,100.,100.,5.};
847      Double_t yc[4] = {0.,0.,h1max,h1max};      Double_t yc[4] = {0.,0.,h1max,h1max};
848      banda1 = new TPolyLine(4,xc,yc);      banda1 = new TPolyLine(4,xc,yc);
849      banda1->SetLineColor(5);      banda1->SetLineColor(5);
850      banda1->SetFillColor(5);      banda1->SetFillColor(5);
851      banda1->SetLineWidth(1);      banda1->SetLineWidth(1);
852      banda1->Draw("fSAME");      banda1->Draw("fSAME");
853      Double_t xd[4] = {40.,80.,80.,40.};    //  Double_t xd[4] = {40.,80.,80.,40.};
854      Double_t yd[4] = {0.,0.,h1max,h1max};     // Double_t yd[4] = {0.,0.,h1max,h1max};
855      banda2 = new TPolyLine(4,xd,yd);     // banda2 = new TPolyLine(4,xd,yd);
856      banda2->SetLineColor(5);     // banda2->SetLineColor(5);
857      banda2->SetFillColor(5);     // banda2->SetFillColor(5);
858      banda2->SetLineWidth(1);     // banda2->SetLineWidth(1);
859      banda2->Draw("fSAME");      //banda2->Draw("fSAME");
860      h1->Draw("SAME");      h1->Draw("SAME");
861      //      //
862      figura->cd();      figura->cd();
# Line 641  void FCaloQLOOK(TString filename, Int_t Line 893  void FCaloQLOOK(TString filename, Int_t
893        h1->SetYTitle("Number of events");        h1->SetYTitle("Number of events");
894        h1->Draw();        h1->Draw();
895        h1max = h1->GetMaximum()*1.05;        h1max = h1->GetMaximum()*1.05;
896        Double_t xe[4] = {0.,25.,25.,0.};        //cambiato banda, prima era 10,ora 5
897          Double_t xe[4] = {5.,100.,100.,5.};
898        Double_t ye[4] = {0.,0.,h1max,h1max};        Double_t ye[4] = {0.,0.,h1max,h1max};
899        banda1 = new TPolyLine(4,xe,ye);        banda1 = new TPolyLine(4,xe,ye);
900        banda1->SetLineColor(5);        banda1->SetLineColor(5);
901        banda1->SetFillColor(5);        banda1->SetFillColor(5);
902        banda1->SetLineWidth(1);        banda1->SetLineWidth(1);
903        banda1->Draw("fSAME");        banda1->Draw("fSAME");
904        Double_t xf[4] = {40.,80.,80.,40.};       // Double_t xf[4] = {40.,80.,80.,40.};
905        Double_t yf[4] = {0.,0.,h1max,h1max};       // Double_t yf[4] = {0.,0.,h1max,h1max};
906        banda2 = new TPolyLine(4,xf,yf);       // banda2 = new TPolyLine(4,xf,yf);
907        banda2->SetLineColor(5);       // banda2->SetLineColor(5);
908        banda2->SetFillColor(5);       // banda2->SetFillColor(5);
909        banda2->SetLineWidth(1);      //  banda2->SetLineWidth(1);
910        banda2->Draw("fSAME");       // banda2->Draw("fSAME");
911        h1->Draw("SAME");        h1->Draw("SAME");
912      };      };
913      if ( trshit !=0 ) {      if ( trshit !=0 ) {
# Line 684  void FCaloQLOOK(TString filename, Int_t Line 937  void FCaloQLOOK(TString filename, Int_t
937      };      };
938    };    };
939    if ( !errorfull ) {    if ( !errorfull ) {
940      if ( calevn1 || calevn2 || calevn3 ) {      if ( calevn1 > calevnth || calevn2 > calevnth || calevn3 > calevnth ) {
941        pd1 = new TPad("pd1","This is pad1",0.02,0.51,0.24,0.98,45);        pd1 = new TPad("pd1","This is pad1",0.02,0.51,0.24,0.98,45);
942        pd2 = new TPad("pd2","This is pad2",0.26,0.51,0.49,0.98,45);        pd2 = new TPad("pd2","This is pad2",0.26,0.51,0.49,0.98,45);
943        pd3 = new TPad("pd3","This is pad3",0.02,0.02,0.24,0.49,45);        pd3 = new TPad("pd3","This is pad3",0.02,0.02,0.24,0.49,45);
# Line 827  void FCaloQLOOK(TString filename, Int_t Line 1080  void FCaloQLOOK(TString filename, Int_t
1080      Baseline->SetYTitle("Number of events");      Baseline->SetYTitle("Number of events");
1081      Baseline->Draw();      Baseline->Draw();
1082      h1max = Baseline->GetMaximum()*1.05;      h1max = Baseline->GetMaximum()*1.05;
1083      Double_t xc[4] = {2000.,4500.,4500.,2000.};      Double_t xc[4] = {2000.,5500.,5500.,2000.};
1084      Double_t yc[4] = {0.,0.,h1max,h1max};      Double_t yc[4] = {0.,0.,h1max,h1max};
1085      banda1 = new TPolyLine(4,xc,yc);      banda1 = new TPolyLine(4,xc,yc);
1086      banda1->SetLineColor(5);      banda1->SetLineColor(5);
# Line 859  void FCaloQLOOK(TString filename, Int_t Line 1112  void FCaloQLOOK(TString filename, Int_t
1112      Dexyc->Draw("SAME");      Dexyc->Draw("SAME");
1113      //      //
1114      pd3->cd();      pd3->cd();
1115    //    gPad->SetLogy();
1116      Calstriphit->SetXTitle("Number of hit");      Calstriphit->SetXTitle("Number of hit");
1117      Calstriphit->SetYTitle("Number of events");      Calstriphit->SetYTitle("Number of events");
1118      Calstriphit->Draw();      Calstriphit->Draw();
1119      h1max = Calstriphit->GetMaximum()*1.05;      h1max = Calstriphit->GetMaximum()*1.05;
1120      Double_t xg[4] = {0.,25.,25.,0.};  
1121        //banda di sogla portata a 5, prima era a 10
1122        Double_t xg[4] = {5.,100.,100.,5.};
1123      Double_t yg[4] = {0.,0.,h1max,h1max};      Double_t yg[4] = {0.,0.,h1max,h1max};
1124      banda1 = new TPolyLine(4,xg,yg);      banda1 = new TPolyLine(4,xg,yg);
1125      banda1->SetLineColor(5);      banda1->SetLineColor(5);
1126      banda1->SetFillColor(5);      banda1->SetFillColor(5);
1127      banda1->SetLineWidth(1);      banda1->SetLineWidth(1);
1128      banda1->Draw("fSAME");      banda1->Draw("fSAME");
1129      Double_t xh[4] = {40.,80.,80.,40.};    //  Double_t xh[4] = {40.,80.,80.,40.};
1130      Double_t yh[4] = {0.,0.,h1max,h1max};    //  Double_t yh[4] = {0.,0.,h1max,h1max};
1131      banda2 = new TPolyLine(4,xh,yh);    //  banda2 = new TPolyLine(4,xh,yh);
1132      banda2->SetLineColor(5);    //  banda2->SetLineColor(5);
1133      banda2->SetFillColor(5);    //  banda2->SetFillColor(5);
1134      banda2->SetLineWidth(1);    //  banda2->SetLineWidth(1);
1135      banda2->Draw("fSAME");    //  banda2->Draw("fSAME");
1136      Calstriphit->Draw("SAME");      Calstriphit->Draw("SAME");
1137      //      //
1138      pd4->cd();      pd4->cd();
1139        gPad->SetLogy();
1140      Dexy->SetXTitle("ADC channels");      Dexy->SetXTitle("ADC channels");
1141      Dexy->SetYTitle("Number of events");      Dexy->SetYTitle("Number of events");
1142      Dexy->Draw();      Dexy->Draw();
1143      h1max = Dexy->GetMaximum()*1.05;      //    h1max = Dexy->GetMaximum()*1.05;
1144        h1max = Dexy->GetMaximum()*2.05;
1145      Double_t xd[4] = {2000.,5000.,5000.,2000.};      Double_t xd[4] = {2000.,5000.,5000.,2000.};
1146      Double_t yd[4] = {0.,0.,h1max,h1max};      Double_t yd[4] = {0.,0.,h1max,h1max};
1147      banda1 = new TPolyLine(4,xd,yd);      banda1 = new TPolyLine(4,xd,yd);
# Line 919  void FCaloQLOOK(TString filename, Int_t Line 1177  void FCaloQLOOK(TString filename, Int_t
1177      pd4->Draw();      pd4->Draw();
1178      //      //
1179      pd4->cd();      pd4->cd();
1180        gPad->SetLogy();
1181      Dexy->SetXTitle("ADC channels");      Dexy->SetXTitle("ADC channels");
1182      Dexy->SetYTitle("Number of events");      Dexy->SetYTitle("Number of events");
1183      Dexy->Draw();      Dexy->Draw();
1184      h1max = Dexy->GetMaximum()*1.05;      //    h1max = Dexy->GetMaximum()*1.05;
1185        h1max = Dexy->GetMaximum()*2.05;
1186      Double_t xd[4] = {2000.,5000.,5000.,2000.};      Double_t xd[4] = {2000.,5000.,5000.,2000.};
1187      Double_t yd[4] = {0.,0.,h1max,h1max};      Double_t yd[4] = {0.,0.,h1max,h1max};
1188      banda1 = new TPolyLine(4,xd,yd);      banda1 = new TPolyLine(4,xd,yd);
# Line 933  void FCaloQLOOK(TString filename, Int_t Line 1193  void FCaloQLOOK(TString filename, Int_t
1193      Dexy->Draw("SAME");      Dexy->Draw("SAME");
1194    };      };  
1195    //    //
1196      TCanvas *figura3 = 0;
1197      Bool_t printfigure3 = false;
1198      for (Int_t i = 0; i<4; i++){
1199        if ( ver[i][2] || lver[i][2] ){
1200          printfigure3 = true;
1201          break;
1202        };
1203      };
1204      if ( printfigure3 ){
1205        figura3 = new TCanvas("Calorimeter_Detector_Report_2bis/3","Calorimeter_Detector_Report_2bis/3", 1100, 900);
1206        figura3->SetFillColor(10);
1207        figura3->Range(0,0,100,100);
1208        errore.str("");
1209        errore << "EXPERT  --  File: " << file;
1210        errore << " ";
1211        t=new TLatex();
1212        t->SetTextFont(32);
1213        t->SetTextColor(1);
1214        t->SetTextAlign(12);
1215        t->SetTextSize(0.015);
1216        t->DrawLatex(2.,99.,errore.str().c_str());
1217        pd1 = new TPad("pd1","This is pad1",0.02,0.51,0.49,0.73,45);
1218        pd5 = new TPad("pd5","This is pad5",0.02,0.76,0.49,0.98,45);
1219        pd2 = new TPad("pd2","This is pad2",0.51,0.51,0.98,0.73,45);
1220        pd6 = new TPad("pd6","This is pad6",0.51,0.76,0.98,0.98,45);
1221        pd3 = new TPad("pd3","This is pad3",0.02,0.02,0.49,0.23,45);
1222        pd7 = new TPad("pd7","This is pad7",0.02,0.26,0.49,0.49,45);
1223        pd4 = new TPad("pd4","This is pad4",0.51,0.02,0.98,0.23,45);
1224        pd8 = new TPad("pd8","This is pad8",0.51,0.26,0.98,0.49,45);
1225        figura3->cd();
1226        pd1->Range(0,0,100,100);
1227        pd2->Range(0,0,100,100);
1228        pd3->Range(0,0,100,100);
1229        pd4->Range(0,0,100,100);      
1230        pd1->SetTicks();
1231        pd2->SetTicks();
1232        pd3->SetTicks();
1233        pd4->SetTicks();
1234        pd1->Draw();
1235        pd2->Draw();
1236        pd3->Draw();
1237        pd4->Draw();
1238        pd5->Range(0,0,100,100);
1239        pd6->Range(0,0,100,100);
1240        pd7->Range(0,0,100,100);
1241        pd8->Range(0,0,100,100);      
1242        pd5->SetTicks();
1243        pd6->SetTicks();
1244        pd7->SetTicks();
1245        pd8->SetTicks();
1246        pd5->Draw();
1247        pd6->Draw();
1248        pd7->Draw();
1249        pd8->Draw();
1250        pd1->cd();
1251        lup[0]->SetAxisRange((Double_t)min(minobt[0],swminobt[0])*0.9,(Double_t)max(maxobt[0],swmaxobt[0])*1.1,"X");
1252        lup[0]->SetXTitle("OBT");
1253        lup[0]->SetYTitle("Number of events");
1254        lup[0]->Draw();
1255        pd5->cd();
1256        lupstw[0]->SetAxisRange((Double_t)min(minobt[0],swminobt[0])*0.9,(Double_t)max(maxobt[0],swmaxobt[0])*1.1,"X");
1257        //    lupstw[0]->SetAxisRange((Double_t)swminobt[0]*0.9,(Double_t)swmaxobt[0]*1.1,"X");
1258        lupstw[0]->SetXTitle("OBT");
1259        lupstw[0]->SetYTitle("Number of events");
1260        lupstw[0]->Draw();
1261        pd2->cd();
1262        lup[1]->SetAxisRange((Double_t)min(minobt[1],swminobt[1])*0.9,(Double_t)max(maxobt[1],swmaxobt[1])*1.1,"X");
1263        //    lup[1]->SetAxisRange((Double_t)minobt[1]*0.9,(Double_t)maxobt[1]*1.1,"X");
1264        lup[1]->SetXTitle("OBT");
1265        lup[1]->SetYTitle("Number of events");
1266        lup[1]->Draw();
1267        pd6->cd();
1268        lupstw[1]->SetAxisRange((Double_t)min(minobt[1],swminobt[1])*0.9,(Double_t)max(maxobt[1],swmaxobt[1])*1.1,"X");
1269        //    lupstw[1]->SetAxisRange((Double_t)swminobt[1]*0.9,(Double_t)swmaxobt[1]*1.1,"X");
1270        lupstw[1]->SetXTitle("OBT");
1271        lupstw[1]->SetYTitle("Number of events");
1272        lupstw[1]->Draw();
1273        pd3->cd();
1274        lup[2]->SetAxisRange((Double_t)min(minobt[2],swminobt[2])*0.9,(Double_t)max(maxobt[2],swmaxobt[2])*1.1,"X");
1275        //    lup[2]->SetAxisRange((Double_t)minobt[2]*0.9,(Double_t)maxobt[2]*1.1,"X");
1276        lup[2]->SetXTitle("OBT");
1277        lup[2]->SetYTitle("Number of events");
1278        lup[2]->Draw();
1279        pd7->cd();
1280        lupstw[2]->SetAxisRange((Double_t)min(minobt[2],swminobt[2])*0.9,(Double_t)max(maxobt[2],swmaxobt[2])*1.1,"X");
1281        //    lupstw[2]->SetAxisRange((Double_t)swminobt[2]*0.9,(Double_t)swmaxobt[2]*1.1,"X");
1282        lupstw[2]->SetXTitle("OBT");
1283        lupstw[2]->SetYTitle("Number of events");
1284        lupstw[2]->Draw();
1285        pd4->cd();
1286        lup[3]->SetAxisRange((Double_t)min(minobt[3],swminobt[3])*0.9,(Double_t)max(maxobt[3],swmaxobt[3])*1.1,"X");
1287        //    lup[3]->SetAxisRange((Double_t)minobt[3]*0.9,(Double_t)maxobt[3]*1.1,"X");
1288        lup[3]->SetXTitle("OBT");
1289        lup[3]->SetYTitle("Number of events");
1290        lup[3]->Draw();
1291        pd8->cd();
1292        lupstw[3]->SetAxisRange((Double_t)min(minobt[3],swminobt[3])*0.9,(Double_t)max(maxobt[3],swmaxobt[3])*1.1,"X");
1293        //    lupstw[3]->SetAxisRange((Double_t)swminobt[3]*0.9,(Double_t)swmaxobt[3]*1.1,"X");
1294        lupstw[3]->SetXTitle("OBT");
1295        lupstw[3]->SetYTitle("Number of events");
1296        lupstw[3]->Draw();
1297      };
1298      //
1299    //  output figures, report sheet:    //  output figures, report sheet:
1300    //    //
1301    TCanvas *rapporto= new TCanvas("Calorimeter_Detector_Report_3/3", "Calorimeter_Detector_Report_3/3", 1100, 900);    TCanvas *rapporto= new TCanvas("Calorimeter_Detector_Report_3/3", "Calorimeter_Detector_Report_3/3", 1100, 900);
# Line 963  void FCaloQLOOK(TString filename, Int_t Line 1326  void FCaloQLOOK(TString filename, Int_t
1326    pad2->Draw();    pad2->Draw();
1327    pad3->Draw();    pad3->Draw();
1328    pad4->Draw();    pad4->Draw();
1329      //
1330      Bool_t redevent = true;
1331      //
1332      if ( ver[0][3]+ver[0][16]+ver[0][17]+ver[0][8] == ver[1][3]+ver[1][16]+ver[1][17]+ver[1][8] && ver[1][3]+ver[1][16]+ver[1][17]+ver[1][8] == ver[2][3]+ver[2][16]+ver[2][17]+ver[2][8] && ver[2][3]+ver[2][16]+ver[2][17]+ver[2][8] == ver[3][3]+ver[3][16]+ver[3][17]+ver[3][8] ){
1333        redevent = false;
1334      };
1335      if ( redevent ) check = true;
1336      //
1337    for (Int_t i = 0; i < 4; i++){    for (Int_t i = 0; i < 4; i++){
1338      if (i == 2)      if (i == 2)
1339        {        {
# Line 991  void FCaloQLOOK(TString filename, Int_t Line 1361  void FCaloQLOOK(TString filename, Int_t
1361      t->SetTextAlign(12);      t->SetTextAlign(12);
1362      t->DrawLatex(33.,97.,sezione);      t->DrawLatex(33.,97.,sezione);
1363      t->SetTextSize(0.05);      t->SetTextSize(0.05);
1364      for (Int_t j = 0; j < 23; j++){      //aggiunto un errore jmax=23
1365        for (Int_t j = 0; j < 24; j++){
1366        if ( ver[i][j] || lver[i][j] ) {        if ( ver[i][j] || lver[i][j] ) {
1367          t->SetTextColor(50);          t->SetTextColor(50);
1368          if (j == 0) {          if (j == 0) {
# Line 1009  void FCaloQLOOK(TString filename, Int_t Line 1380  void FCaloQLOOK(TString filename, Int_t
1380            check = true;            check = true;
1381          }          }
1382          if (j == 2) {          if (j == 2) {
1383              //      printf("boh! lalarm[%i] = %i \n",i,lalarm[i]);
1384            if ( lalarm[i] ){            if ( lalarm[i] ){
1385              errore.str("");              errore.str("");
1386              errore << "* Latch up: " << ver[i][j];              errore << "* Latch up: " << ver[i][j];
1387              errore << " (" << lalarm[i];                      errore << " (" << lalarm[i];        
1388              errore << " NOT rec!): ";              errore << " NOT rec!): ";
1389              t->DrawLatex(0.,70.,errore.str().c_str());              t->DrawLatex(2.,70.,errore.str().c_str());
1390              check = true;              check = true;
1391            } else {            } else {
1392              errore.str("");              errore.str("");
# Line 1049  void FCaloQLOOK(TString filename, Int_t Line 1421  void FCaloQLOOK(TString filename, Int_t
1421            errore.str("");            errore.str("");
1422            errore << "RAW mode: " << ver[i][j];            errore << "RAW mode: " << ver[i][j];
1423            errore << " time(s)";            errore << " time(s)";
1424            t->SetTextColor(32);            if ( !redevent ) t->SetTextColor(32);
1425            t->DrawLatex(2.,90.,errore.str().c_str());            t->DrawLatex(2.,90.,errore.str().c_str());
1426          }          }
1427          if (j == 4) {          if (j == 4) {
# Line 1085  void FCaloQLOOK(TString filename, Int_t Line 1457  void FCaloQLOOK(TString filename, Int_t
1457            errore << "Missing section: " << ver[i][j];            errore << "Missing section: " << ver[i][j];
1458            errore << " time(s)";            errore << " time(s)";
1459            t->DrawLatex(2.,50.,errore.str().c_str());            t->DrawLatex(2.,50.,errore.str().c_str());
1460            check = true;            if ( ver[i][j] > 3 ) check = true;
1461          }          }
1462          if (j == 10) {          if (j == 10) {
1463            errore.str("");            errore.str("");
1464            errore << "Calevnum jump: " << ver[i][j];            errore << "Calevnum jump: " << ver[i][j];
1465            errore << " time(s)";            errore << " time(s)";
1466            t->DrawLatex(2.,42.,errore.str().c_str());            t->DrawLatex(2.,42.,errore.str().c_str());
1467            check = true;            if ( ver[i][j] > 3 ) check = true;
1468          }          }
1469          if (j == 11) {          if (j == 11) {
1470            errore.str("");            errore.str("");
1471            errore << "CRC error (data): " << ver[i][j];            errore << "CRC error (data): " << ver[i][j];
1472            errore << " time(s)";            errore << " time(s)";
1473            t->DrawLatex(2.,38.,errore.str().c_str());            t->DrawLatex(2.,38.,errore.str().c_str());
1474            check = true;            if ( ver[i][j] > 10 ) check = true;
1475          }          }
1476          if (j == 12) {          if (j == 12) {
1477            errore.str("");            errore.str("");
# Line 1133  void FCaloQLOOK(TString filename, Int_t Line 1505  void FCaloQLOOK(TString filename, Int_t
1505            errore.str("");            errore.str("");
1506            errore << "COMPRESS mode: " << ver[i][j];            errore << "COMPRESS mode: " << ver[i][j];
1507            errore << " time(s)";            errore << " time(s)";
1508            t->SetTextColor(32);            if ( !redevent ) t->SetTextColor(32);
1509            t->DrawLatex(2.,86.,errore.str().c_str());            t->DrawLatex(2.,86.,errore.str().c_str());
1510          }          }
1511          if (j == 17) {          if (j == 17) {
1512            errore.str("");            errore.str("");
1513            errore << "FULL mode: " << ver[i][j];            errore << "FULL mode: " << ver[i][j];
1514            errore << " time(s)";            errore << " time(s)";
1515            t->SetTextColor(32);            if ( !redevent ) t->SetTextColor(32);
1516            t->DrawLatex(2.,82.,errore.str().c_str());            t->DrawLatex(2.,82.,errore.str().c_str());
1517          }          }
1518          if (j == 18) {          if (j == 18) {
# Line 1178  void FCaloQLOOK(TString filename, Int_t Line 1550  void FCaloQLOOK(TString filename, Int_t
1550            t->DrawLatex(2.,3.,errore.str().c_str());            t->DrawLatex(2.,3.,errore.str().c_str());
1551            check = true;            check = true;
1552          };          };
1553        };          //aggiunto questo errore
1554      };          if (j == 23) {
1555              errore.str("");
1556              errore << "Corrupted packet lenght " << ver[i][j];
1557              errore << " time(s) ";
1558              t->DrawLatex(2.,2.,errore.str().c_str());
1559              check = true;
1560            };
1561          };
1562        };
1563      t->SetTextColor(50);      t->SetTextColor(50);
1564      if ( fulldiff[i] !=0 ) {      if ( fulldiff[i] !=0 ) {
1565        check = true;        check = true;
# Line 1206  void FCaloQLOOK(TString filename, Int_t Line 1586  void FCaloQLOOK(TString filename, Int_t
1586    if ( check ){    if ( check ){
1587      t->SetTextColor(50);      t->SetTextColor(50);
1588      t->DrawLatex(60.,95.," WARNING, CHECK! ");        t->DrawLatex(60.,95.," WARNING, CHECK! ");  
     printf("cdexyc %f cdexy %f ctshit %f cbase %f \n",cdexyc,cdexy,ctshit,cbase);  
1589    } else {    } else {
1590      t->SetTextColor(32);      t->SetTextColor(32);
1591      t->DrawLatex(60.,95.," OK! ");            t->DrawLatex(60.,95.," OK! ");      
1592    };    };
1593      printf("cdexyc %f cdexy %f ctshit %f cbase %f \n",cdexyc,cdexy,ctshit,cbase);
1594    //    //
1595    const string fil = (const char*)filename;    //  const string fil = (const char*)filename;
1596    Int_t posiz = fil.find("dw_");    //  Int_t posiz = fil.find("dw_");
1597    if ( posiz == -1 ) posiz = fil.find("DW_");    //  if ( posiz == -1 ) posiz = fil.find("DW_");
1598    Int_t posiz2 = posiz+13;    //  Int_t posiz2 = posiz+13;
1599    TString file2;    //  TString file2;
1600    stringcopy(file2,filename,posiz,posiz2);    //  stringcopy(file2,filename,posiz,posiz2);
1601      //
1602      const string fil = gSystem->BaseName(filename.Data());
1603      Int_t posiz = fil.find(".root");
1604    //    //
1605      TString file2;
1606      if ( posiz == -1 ){
1607        file2 = gSystem->BaseName(filename.Data());
1608      } else {
1609        Int_t posiz2 = 0;
1610        stringcopy(file2,gSystem->BaseName(filename.Data()),posiz2,posiz);
1611      };
1612    const char *figrec = file2;    const char *figrec = file2;
1613      //
1614    const char *outdir = outDir;    const char *outdir = outDir;
1615    stringstream figsave;        stringstream figsave;    
1616    stringstream figsave1;        stringstream figsave1;    
# Line 1228  void FCaloQLOOK(TString filename, Int_t Line 1619  void FCaloQLOOK(TString filename, Int_t
1619    if ( !strcmp(format,"ps") ) {    if ( !strcmp(format,"ps") ) {
1620      figsave.str("");      figsave.str("");
1621      figsave << outdir << "/" ;      figsave << outdir << "/" ;
1622      figsave << figrec << "_qlook.";      figsave << figrec << "_CaloQLOOK.";
1623      figsave << format << "(";      figsave << format << "(";
1624      rapporto->Print(figsave.str().c_str(),"Landscape");          rapporto->Print(figsave.str().c_str(),"Landscape");    
1625      figsave1.str("");      figsave1.str("");
1626      figsave1 << outdir << "/" ;      figsave1 << outdir << "/" ;
1627      figsave1 << figrec << "_qlook.";      figsave1 << figrec << "_CaloQLOOK.";
1628      figsave1 << format;      figsave1 << format;
1629      figura->Print(figsave1.str().c_str(),"Landscape");      figura->Print(figsave1.str().c_str(),"Landscape");
1630      figsave2.str("");      figsave2.str("");
1631      figsave2 << outdir << "/" ;      figsave2 << outdir << "/" ;
1632      figsave2 << figrec << "_qlook.";      figsave2 << figrec << "_CaloQLOOK.";
1633      figsave2 << format << ")";      if ( printfigure3 ){
1634      figura2->Print(figsave2.str().c_str(),"Landscape");        figsave2 << format;
1635          figura2->Print(figsave2.str().c_str(),"Landscape");
1636          figsave2.str("");
1637          figsave2 << outdir << "/" ;
1638          figsave2 << figrec << "_CaloQLOOK.";
1639          figsave2 << format << ")";
1640          figura3->Print(figsave2.str().c_str(),"Landscape");
1641        } else {
1642          figsave2 << format << ")";;
1643          figura2->Print(figsave2.str().c_str(),"Landscape");
1644        };
1645    } else {    } else {
1646      figsave.str("");      figsave.str("");
1647      figsave << outdir << "/" ;      figsave << outdir << "/" ;
1648      figsave << figrec << "_qlook1.";      figsave << figrec << "_CaloQLOOK1.";
1649      figsave << format;      figsave << format;
1650      figura->SaveAs(figsave.str().c_str());      figura->SaveAs(figsave.str().c_str());
1651      figsave.str("");      figsave.str("");
1652      figsave << outdir << "/" ;      figsave << outdir << "/" ;
1653      figsave << figrec << "_qlook2.";      figsave << figrec << "_CaloQLOOK2.";
1654      figsave << format;      figsave << format;
1655      figura2->SaveAs(figsave.str().c_str());      figura2->SaveAs(figsave.str().c_str());
1656        if ( printfigure3 ){
1657          figsave.str("");
1658          figsave << outdir << "/" ;
1659          figsave << figrec << "_CaloQLOOK2bis.";
1660          figsave << format;
1661          figura3->SaveAs(figsave.str().c_str());
1662        };
1663      figsave.str("");      figsave.str("");
1664      figsave << outdir << "/" ;      figsave << outdir << "/" ;
1665      figsave << figrec << "_qlook3.";      figsave << figrec << "_CaloQLOOK3.";
1666      figsave << format;      figsave << format;
1667      rapporto->SaveAs(figsave.str().c_str());          rapporto->SaveAs(figsave.str().c_str());    
1668    };    };
1669      if ( iactive && w4i ){
1670        while ( gROOT->GetListOfCanvases()->FindObject(rapporto) || gROOT->GetListOfCanvases()->FindObject(figura3) || gROOT->GetListOfCanvases()->FindObject(figura2) || gROOT->GetListOfCanvases()->FindObject(figura) ){
1671          gSystem->ProcessEvents();
1672          gSystem->Sleep(10);
1673        };
1674      };
1675  }  }
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.23