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

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

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

revision 1.1 by pam-fi, Wed May 10 10:06:54 2006 UTC revision 1.27 by pam-fi, Mon Feb 26 16:41:05 2007 UTC
# Line 1  Line 1 
1  /**  /**
2   * FTrkCalibQLookExpert.cpp   * FTrkCalibQLookExpert.cxx
3   *   *
4   * autor: D.Fedele   * autor: D.Fedele
5   * version 2.0   * version v1r25
6   * Parameters:   * Parameters:
7   *      file - the data file to analyze   *      file - the data file to analyze
8   *      step - select =1 in order to analyze one event at time   *      step - select =1 in order to analyze one event at time
# Line 18  Line 18 
18  #include <TPaveText.h>  #include <TPaveText.h>
19  #include <TLatex.h>  #include <TLatex.h>
20  #include <TCanvas.h>  #include <TCanvas.h>
21    #include <TFile.h>
22  #include <TTree.h>  #include <TTree.h>
23  #include <TGraph.h>  #include <TGraph.h>
24  #include <TStyle.h>  #include <TStyle.h>
# Line 29  Line 30 
30  #include <CalibTrk2Event.h>  #include <CalibTrk2Event.h>
31  //  //
32    
33    typedef struct caltrk_def{
 void stringcopy(TString& s1, const TString& s2, Int_t from=0, Int_t to=0){      
     if ( to == 0 ){  
         Int_t t2length = s2.Length();  
         s1 = "";  
         to = t2length;  
     };  
     for (Int_t i = from; i<to; i++){  
         s1.Append(s2[i],1);  
     };  
 };  
   
  typedef struct caltrk_def{  
34    Int_t good0[2];    Int_t good0[2];
35    Int_t daqmode[12];    Int_t daqmode[12];
36    Int_t dspnum[12];    Int_t dspnum[12];
# Line 69  void FTrkCalibQLook_EXPERT(TString file, Line 58  void FTrkCalibQLook_EXPERT(TString file,
58  {    {  
59    //    //
60    //   obtain information about the data file and select the output dir    //   obtain information about the data file and select the output dir
61    const string filepath=file.Data();    Int_t dwpos = file.Last('/');
62    Int_t dwpos = filepath.rfind("DW_");    Int_t dwpos1 = file.Last('.');
63    Int_t dwpos1 = filepath.find(".root");    TString base,ffile ;
64    TString fpath=(filepath.c_str());    ffile=file(dwpos+1,dwpos1-(dwpos+1));
65    TString base,ffile;    if(dwpos>0) base=file(0,dwpos);
   stringcopy(base,fpath,0,dwpos);  
   stringcopy(ffile,fpath,dwpos,dwpos1);  
66    
67    TString out;    TString out;
68    if(outdir.Length()==0){    if(outdir.Length()==0){
# Line 83  void FTrkCalibQLook_EXPERT(TString file, Line 70  void FTrkCalibQLook_EXPERT(TString file,
70    }else{    }else{
71      out = outdir;      out = outdir;
72    }    }
73      if(out.Last('/')+1<out.Length()) out+="/";
74    
75    //    //
76    // inizialise the variables and open the file    // inizialise the variables and open the file
77    Int_t nevents=0;    Int_t nevents=0;
78    Int_t minevent = 0;    Int_t minevent = 0;
79    Int_t maxevent = 0;    Int_t maxevent = 0;
80    ULong64_t FOBT[2], HOBT=0, TOBT=0;    ULong64_t FOBT[2];
81        
82    FOBT[0]=0;    FOBT[0]=0;
83    FOBT[1]=0;    FOBT[1]=0;
# Line 133  void FTrkCalibQLook_EXPERT(TString file, Line 121  void FTrkCalibQLook_EXPERT(TString file,
121    pamela::EventHeader *eh1=0,*eh2=0,*eh4=0,*eh3=0;    pamela::EventHeader *eh1=0,*eh2=0,*eh4=0,*eh3=0;
122    pamela::PscuHeader *ph=0;    pamela::PscuHeader *ph=0;
123    pamela::CalibTrk1Event *trk1 = 0;    pamela::CalibTrk1Event *trk1 = 0;
124    pamela::CalibTrk2Event *trk2 = 0;        pamela::CalibTrk2Event *trk2 = 0;
125      pamela::EventCounter *cod=0;  
126      
127      pamela::PacketType *pctp=0;  
128        
129    hotr = (TTree*)calibFile->Get("CalibHeader");    hotr = (TTree*)calibFile->Get("CalibHeader");
130    hotr->SetBranchAddress("Header", &eh4);    hotr->SetBranchAddress("Header", &eh4);
# Line 185  void FTrkCalibQLook_EXPERT(TString file, Line 176  void FTrkCalibQLook_EXPERT(TString file,
176      } else if (toevent > nevents) {              } else if (toevent > nevents) {        
177        maxevent = nevents;        maxevent = nevents;
178      } else {            } else {      
179        maxevent = fromevent;        maxevent = nevents;
180      };      };
181    };    };
182            
# Line 195  void FTrkCalibQLook_EXPERT(TString file, Line 186  void FTrkCalibQLook_EXPERT(TString file,
186    //    //
187    //**********************************************************************    //**********************************************************************
188            
189      Int_t hcevent=hotr->GetEntries();
190      Int_t tcevent=totr->GetEntries();
191      ULong64_t HOBT[hcevent], TOBT[tcevent];
192      for (Int_t i = 0; i < hcevent; i++){
193        hotr->GetEntry(i);
194        ph = eh4->GetPscuHeader();
195        HOBT[i]= ph->GetOrbitalTime();
196      }
197      for (Int_t i = 0; i < tcevent; i++){
198        totr->GetEntry(i);
199        ph = eh3->GetPscuHeader();
200        TOBT[i]= ph->GetOrbitalTime();
201      }
202        
203    printf("\n Scan of calibration packets from %i to %i ... \n\n",minevent+1,maxevent);    printf("\n Scan of calibration packets from %i to %i ... \n\n",minevent+1,maxevent);
204    for (Int_t i = minevent; i < maxevent; i++){        for (Int_t i = minevent; i < maxevent; i++){    
205            
206      otr1->GetEntry(i);      otr1->GetEntry(i);
207      otr2->GetEntry(i);      otr2->GetEntry(i);
208      totr->GetEntry(i);      
     hotr->GetEntry(i);  
     ph = eh4->GetPscuHeader();  
     HOBT= ph->GetOrbitalTime();  
     ph = eh3->GetPscuHeader();  
     TOBT= ph->GetOrbitalTime();  
         
209      ctrk.good0[0]=trk1->good0;      ctrk.good0[0]=trk1->good0;
210      ctrk.good0[1]=trk2->good0;      ctrk.good0[1]=trk2->good0;
211      for (Int_t m = 0; m < 6; m++){      for (Int_t m = 0; m < 6; m++){
212        ph = eh1->GetPscuHeader();        ph = eh1->GetPscuHeader();
213          cod = eh1->GetCounter();
214        FOBT[0]= ph->GetOrbitalTime();        FOBT[0]= ph->GetOrbitalTime();
215        ctrk.daqmode[trk1->DSPnumber[m]-1]=trk1->DAQmode[m];        if(trk1->DSPnumber[m]>0){
216        ctrk.dspnum[trk1->DSPnumber[m]-1]=trk1->DSPnumber[m];          if(trk1->DSPnumber[m]<13){
217        ctrk.calibnum[trk1->DSPnumber[m]-1]=trk1->calibnumber[m];            ctrk.daqmode[trk1->DSPnumber[m]-1]=trk1->DAQmode[m];
218        ctrk.ncalev[trk1->DSPnumber[m]-1]=trk1->ncalib_event[m];            ctrk.dspnum[trk1->DSPnumber[m]-1]=trk1->DSPnumber[m];
219        ctrk.ped1[trk1->DSPnumber[m]-1]=trk1->ped_l1[m];            ctrk.calibnum[trk1->DSPnumber[m]-1]=trk1->calibnumber[m];
220        ctrk.ped2[trk1->DSPnumber[m]-1]=trk1->ped_l2[m];            ctrk.ncalev[trk1->DSPnumber[m]-1]=trk1->ncalib_event[m];
221        ctrk.ped3[trk1->DSPnumber[m]-1]=trk1->ped_l3[m];            ctrk.ped1[trk1->DSPnumber[m]-1]=trk1->ped_l1[m];
222        ctrk.sig1[trk1->DSPnumber[m]-1]=trk1->sig_l1[m];            ctrk.ped2[trk1->DSPnumber[m]-1]=trk1->ped_l2[m];
223        ctrk.sig2[trk1->DSPnumber[m]-1]=trk1->sig_l2[m];            ctrk.ped3[trk1->DSPnumber[m]-1]=trk1->ped_l3[m];
224        ctrk.sig3[trk1->DSPnumber[m]-1]=trk1->sig_l3[m];            ctrk.sig1[trk1->DSPnumber[m]-1]=trk1->sig_l1[m];
225        ctrk.nbad1[trk1->DSPnumber[m]-1]=trk1->nbad_l1[m];            ctrk.sig2[trk1->DSPnumber[m]-1]=trk1->sig_l2[m];
226        ctrk.nbad2[trk1->DSPnumber[m]-1]=trk1->nbad_l2[m];            ctrk.sig3[trk1->DSPnumber[m]-1]=trk1->sig_l3[m];
227        ctrk.nbad3[trk1->DSPnumber[m]-1]=trk1->nbad_l3[m];            ctrk.nbad1[trk1->DSPnumber[m]-1]=trk1->nbad_l1[m];
228        ctrk.calfl[trk1->DSPnumber[m]-1]=trk1->cal_flag[m];            ctrk.nbad2[trk1->DSPnumber[m]-1]=trk1->nbad_l2[m];
229        ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk1->crc_cal[m][0];            ctrk.nbad3[trk1->DSPnumber[m]-1]=trk1->nbad_l3[m];
230        ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk1->crc_cal[m][1];            ctrk.calfl[trk1->DSPnumber[m]-1]=trk1->cal_flag[m];
231        ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk1->crc_cal[m][2];            ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk1->crc_cal[m][0];
232        ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk1->crc_hcal[m];            ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk1->crc_cal[m][1];
233        for (Int_t j = 0; j < 3072; j++){            ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk1->crc_cal[m][2];
234          ctrk.dspped[trk1->DSPnumber[m]-1][j]=trk1->DSPped_par[m][j];            ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk1->crc_hcal[m];
235          ctrk.dspsig[trk1->DSPnumber[m]-1][j]=trk1->DSPsig_par[m][j];            for (Int_t j = 0; j < 3072; j++){
236          ctrk.dspbad[trk1->DSPnumber[m]-1][j]=trk1->DSPbad_par[m][j];              ctrk.dspped[trk1->DSPnumber[m]-1][j]=trk1->DSPped_par[m][j];
237        };              ctrk.dspsig[trk1->DSPnumber[m]-1][j]=trk1->DSPsig_par[m][j];
238                ctrk.dspbad[trk1->DSPnumber[m]-1][j]=trk1->DSPbad_par[m][j];
239              };
240            }
241          }
242        ph = eh2->GetPscuHeader();        ph = eh2->GetPscuHeader();
243        FOBT[1]= ph->GetOrbitalTime();        FOBT[1]= ph->GetOrbitalTime();
244        ctrk.daqmode[trk2->DSPnumber[m]-1]=trk2->DAQmode[m];        if(trk2->DSPnumber[m]>0){
245        ctrk.dspnum[trk2->DSPnumber[m]-1]=trk2->DSPnumber[m];          if(trk2->DSPnumber[m]<13){
246        ctrk.calibnum[trk2->DSPnumber[m]-1]=trk2->calibnumber[m];            ctrk.daqmode[trk2->DSPnumber[m]-1]=trk2->DAQmode[m];
247        ctrk.ncalev[trk2->DSPnumber[m]-1]=trk2->ncalib_event[m];            ctrk.dspnum[trk2->DSPnumber[m]-1]=trk2->DSPnumber[m];
248        ctrk.ped1[trk2->DSPnumber[m]-1]=trk2->ped_l1[m];            ctrk.calibnum[trk2->DSPnumber[m]-1]=trk2->calibnumber[m];
249        ctrk.ped2[trk2->DSPnumber[m]-1]=trk2->ped_l2[m];            ctrk.ncalev[trk2->DSPnumber[m]-1]=trk2->ncalib_event[m];
250        ctrk.ped3[trk2->DSPnumber[m]-1]=trk2->ped_l3[m];            ctrk.ped1[trk2->DSPnumber[m]-1]=trk2->ped_l1[m];
251        ctrk.sig1[trk2->DSPnumber[m]-1]=trk2->sig_l1[m];            ctrk.ped2[trk2->DSPnumber[m]-1]=trk2->ped_l2[m];
252        ctrk.sig2[trk2->DSPnumber[m]-1]=trk2->sig_l2[m];            ctrk.ped3[trk2->DSPnumber[m]-1]=trk2->ped_l3[m];
253        ctrk.sig3[trk2->DSPnumber[m]-1]=trk2->sig_l3[m];            ctrk.sig1[trk2->DSPnumber[m]-1]=trk2->sig_l1[m];
254        ctrk.nbad1[trk2->DSPnumber[m]-1]=trk2->nbad_l1[m];            ctrk.sig2[trk2->DSPnumber[m]-1]=trk2->sig_l2[m];
255        ctrk.nbad2[trk2->DSPnumber[m]-1]=trk2->nbad_l2[m];            ctrk.sig3[trk2->DSPnumber[m]-1]=trk2->sig_l3[m];
256        ctrk.nbad3[trk2->DSPnumber[m]-1]=trk2->nbad_l3[m];            ctrk.nbad1[trk2->DSPnumber[m]-1]=trk2->nbad_l1[m];
257        ctrk.calfl[trk2->DSPnumber[m]-1]=trk2->cal_flag[m];            ctrk.nbad2[trk2->DSPnumber[m]-1]=trk2->nbad_l2[m];
258        ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk2->crc_cal[m][0];            ctrk.nbad3[trk2->DSPnumber[m]-1]=trk2->nbad_l3[m];
259        ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk2->crc_cal[m][1];            ctrk.calfl[trk2->DSPnumber[m]-1]=trk2->cal_flag[m];
260        ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk2->crc_cal[m][2];            ctrk.crc_c[trk1->DSPnumber[m]-1][0]=trk2->crc_cal[m][0];
261        ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk2->crc_hcal[m];            ctrk.crc_c[trk1->DSPnumber[m]-1][1]=trk2->crc_cal[m][1];
262        for (Int_t j = 0; j < 3072; j++){            ctrk.crc_c[trk1->DSPnumber[m]-1][2]=trk2->crc_cal[m][2];
263          ctrk.dspped[trk2->DSPnumber[m]-1][j]=trk2->DSPped_par[m][j];            ctrk.crc_hc[trk1->DSPnumber[m]-1]=trk2->crc_hcal[m];
264          ctrk.dspsig[trk2->DSPnumber[m]-1][j]=trk2->DSPsig_par[m][j];            for (Int_t j = 0; j < 3072; j++){
265          ctrk.dspbad[trk2->DSPnumber[m]-1][j]=trk2->DSPbad_par[m][j];              ctrk.dspped[trk2->DSPnumber[m]-1][j]=trk2->DSPped_par[m][j];
266        };              ctrk.dspsig[trk2->DSPnumber[m]-1][j]=trk2->DSPsig_par[m][j];
267      };              ctrk.dspbad[trk2->DSPnumber[m]-1][j]=trk2->DSPbad_par[m][j];
268              }
269            }
270          }
271        }
272                                
273    
274      //      //
275      // other variables definitions      // other variables definitions
276    
277      Int_t risposta=0;      Int_t risposta=0;
278      stringstream fromfile;      stringstream fromfile;
279    
280      fromfile<<"FTrkCalibQLook_EXPERT      File: "<<ffile<<"        -- CalibHeader OBT= "<<HOBT<<" -- Calib pkt OBT= "<<FOBT[0]<<" -- CalibTrailer OBT= "<<TOBT<<" --";      fromfile<<"FTrkCalibQLook_EXPERT      File: "<<ffile<<"        -- CalibHeader OBT= "<<HOBT[(cod->Get(pctp->CalibHeader))-1]<<" -- Calib pkt OBT= "<<FOBT[0]<<" -- CalibTrailer OBT= "<<TOBT[(cod->Get(pctp->CalibTrailer))]<<" --";
281            
282      gStyle->SetLabelSize(0.08,"x");      gStyle->SetLabelSize(0.07,"x");
283      gStyle->SetLabelSize(0.08,"y");      gStyle->SetLabelSize(0.07,"y");
284      gStyle->SetTitleFillColor(10);      gStyle->SetTitleFillColor(10);
285      gStyle->SetTitleFontSize(0.1);      gStyle->SetTitleFontSize(0.08);
286      gStyle->SetTitleOffset(0.8,"y");      gStyle->SetTitleOffset(0.8,"y");
287      gStyle->SetTitleOffset(1.,"x");      gStyle->SetTitleOffset(0.9,"x");
288      gStyle->SetTitleSize(0.06,"y");      gStyle->SetTitleSize(0.06,"y");
289      gStyle->SetTitleSize(0.06,"x");      gStyle->SetTitleSize(0.06,"x");
290      gStyle->SetOptStat(0);      gStyle->SetOptStat(101110);  
291        gStyle->SetStatX(0.9);  
292        gStyle->SetStatW(0.4);    
293        gStyle->SetStatColor(10);
294        gStyle->SetStatFontSize(0.1);
295            
296      //      //
297      //  draw display area      //  draw display area
298    
299      TLatex *tzz=new TLatex();      TLatex *tzz=new TLatex();
300      tzz->SetTextFont(32);      tzz->SetTextFont(32);
301      tzz->SetTextColor(1);      tzz->SetTextColor(1);
# Line 298  void FTrkCalibQLook_EXPERT(TString file, Line 312  void FTrkCalibQLook_EXPERT(TString file,
312      tzz->DrawLatex(.01,0.98,fromfile.str().c_str());      tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
313      tzz->DrawLatex(.90,0.98,"SIGMA");      tzz->DrawLatex(.90,0.98,"SIGMA");
314    
315      
316        TCanvas *sig=new TCanvas("sig","FTrkCalibQLook_EXPERT_histosig",canvasx,canvasy);
317        sig->SetFillColor(10);
318        tzz->DrawLatex(.01,0.98,fromfile.str().c_str());
319        tzz->DrawLatex(.85,0.97,"Histograms of the sigmas");
320        
321    
322    
323      //  draw pads      //  draw pads
324      TPad *trkpad1[12],*trkpad2[12];        //pad for histos      TPad *trkpad1[12],*trkpad2[12],*trkpad3[36];        //pad for histos
325      TPaveText *trkpadtext[12]; //pad for header      TPaveText *trkpadtext[12]; //pad for header
326      TH1F *histosig[12];           //histos of sigma      TH1F *histosig[12];           //histos of sigma
327      TH1F *histoped[12];          //histos of pedestals        TH1F *histoped[12];          //histos of pedestals  
328      TH1F *histoasig[12];           //histos of sigma      TH1F *histoasig[12];           //histos of sigma
329      TH1F *histoaped[12];          //histos of pedestals      TH1F *histoaped[12];          //histos of pedestals
330        
331      Double_t posy = 0.95;    // up y-coord - top pads      TH1F *histosiglad[12][3];           //histos of sigma
     Double_t hpad = 0.15;   // pad height  
     Double_t posx1=0;          // left  x-coord - pad column  
     Double_t posx2=0;          // right x-coord - pad olumn  
     Double_t posx0=0;          //       x-coord - column division  
     Double_t wrel = 0.6;     // relative x size of first sub-column  
     Double_t marg = 0.004;   // margin among pads  
332      stringstream title;      stringstream title;
333      stringstream hid;      stringstream hid;
334        
335        Float_t posy = 0.95;    // up y-coord - top pads
336        Float_t hpad = 0.15;   // pad height
337        Float_t posx1=0;          // left  x-coord - pad column
338        Float_t posx2=0;          // right x-coord - pad olumn
339        Float_t posx0=0;          //       x-coord - column division
340        Float_t wrel = 0.6;     // relative x size of first sub-column
341        Float_t marg = 0.004;   // margin among pads
342    
343        
344      for(Int_t n = 0; n<12; n++){      for(Int_t n = 0; n<12; n++){
345        if ( (n+1)%2 ) {        if ( (n+1)%2 ) {
346          if(n>1)posy = posy-(marg*2+hpad);          if(n>1)posy = posy-(marg*2+hpad);
347          posx1 = marg;          posx1 = marg;
348          posx2 = 0.5 - marg;          posx2 = 0.5 - marg;
349          posx0 = 0.5*wrel;          posx0 = 0.5*wrel;
350    
351        } else {        } else {
352          posx1 = posx1 + 0.5;          posx1 = posx1 + 0.5;
353          posx2 = posx2 + 0.5;          posx2 = posx2 + 0.5;
354          posx0 = posx0 + 0.5;          posx0 = posx0 + 0.5;
355    
356        };        };
357        /* -----------> pad for histograms  */        /* -----------> pad for histograms  */
358        trkpad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);        trkpad1[n] = new TPad("pad1"," ",posx1,posy-hpad,posx0-marg,posy,18,0,0);
# Line 335  void FTrkCalibQLook_EXPERT(TString file, Line 362  void FTrkCalibQLook_EXPERT(TString file,
362        /* -----------> HISTOGRAMS          */        /* -----------> HISTOGRAMS          */
363        /* calibration parameters */        /* calibration parameters */
364        title<<"DSP "<<n+1;        title<<"DSP "<<n+1;
365        hid<<"h"<<n;        hid<<"h"<<n<<"i"<<i;
366        histosig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);        histosig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
367        hid.str("");        hid.str("");
368        hid<<"hh"<<n;        hid<<"hh"<<n<<"i"<<i;
369        histoped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);        histoped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3072,0.5,3072.5);
370        hid.str("");        hid.str("");
371        hid<<"hhh"<<n;        hid<<"hhh"<<n<<"i"<<i;
       title.str("");  
372        hid.str("");        hid.str("");
373        /* AVERAGE calibration parameters */            /* AVERAGE calibration parameters */    
374        hid<<"ah"<<n;        hid<<"ah"<<n<<"i"<<i;
375        histoasig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);        histoasig[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
376        hid.str("");        hid.str("");
377        hid<<"ahh"<<n;        hid<<"ahh"<<n<<"i"<<i;
378        histoaped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);        histoaped[n] = new TH1F(hid.str().c_str(),title.str().c_str(),3,0.5,3072.5);
379        hid.str("");        hid.str("");
380          for(int ii=0;ii<3;ii++){
381            title.str("");
382            title<<"DSP "<<n+1<<" / Lad "<<ii+1;
383            hid<<"hhhh"<<n<<"i"<<i<<"ii"<<ii;
384            histosiglad[n][ii] = new TH1F(hid.str().c_str(),title.str().c_str(),32,-0.5,30.5);
385            hid.str("");
386          }
387          title.str("");
388      };                     //end loop on views      };                     //end loop on views
389        
390        Float_t tposy = 0.95;    // up y-coord - top pads
391        Float_t thpad = 0.;   // pad height
392        Float_t tposx1=0;          // left  x-coord - pad column
393        Float_t tposx0=0;          //       x-coord - column division
394        Float_t twrel = 0.;     // relative x size of first sub-column
395        Float_t tmarg = 0.002;   // margin among pads
396        thpad = (tposy-tmarg*11)/6;
397        twrel = (1-tmarg*12)/6;
398    
399        for(Int_t n = 0; n<36; n++){
400          if ( (n+1)%6==1 ) {
401            if(n>1) tposy = tposy-(tmarg*2+thpad);
402            tposx1 = tmarg;
403            tposx0 = tposx1 + twrel;
404          } else {
405            tposx1 = tposx0 + 2*tmarg;
406            tposx0 = tposx1 + twrel;
407          }
408          trkpad3[n]= new TPad("pad3"," ",tposx1,tposy-thpad,tposx0,tposy,18,0,0);
409        }
410        
411      
412      stringstream message;      stringstream message;
413      
414      //--------------------------------      //--------------------------------
415      //CHECK CALIBRATION procedure      //CHECK CALIBRATION procedure
416      //--------------------------------      //--------------------------------
# Line 363  void FTrkCalibQLook_EXPERT(TString file, Line 418  void FTrkCalibQLook_EXPERT(TString file,
418      Int_t calok = 0;//BAD        Int_t calok = 0;//BAD  
419      for(Int_t n = 0; n<12; n++){      for(Int_t n = 0; n<12; n++){
420        if(ctrk.ncalev[n]==0 && ctrk.calfl[n]==0)calok = 1;//GOOD        if(ctrk.ncalev[n]==0 && ctrk.calfl[n]==0)calok = 1;//GOOD
421          
422                if(ctrk.dspnum[n]==0)
423            continue;
424    
425        nn=ctrk.dspnum[n]-1;        nn=ctrk.dspnum[n]-1;
426        /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*        /*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*
427         *         *
# Line 437  void FTrkCalibQLook_EXPERT(TString file, Line 494  void FTrkCalibQLook_EXPERT(TString file,
494        /******************************************************/        /******************************************************/
495        /* fill histos */        /* fill histos */
496        for(Int_t j = 0; j < 3072; j++){        for(Int_t j = 0; j < 3072; j++){
497          histosig[nn]->Fill((Float_t)j,ctrk.dspsig[nn][j]);          histosig[nn]->Fill(j,ctrk.dspsig[n][j]);
498          histoped[nn]->Fill((Float_t)j,ctrk.dspped[nn][j]);          histoped[nn]->Fill(j,ctrk.dspped[n][j]);
499            if(j<1024) histosiglad[nn][0]->Fill(ctrk.dspsig[n][j]);
500            if(j>=1024 && j<2048) histosiglad[nn][1]->Fill(ctrk.dspsig[n][j]);
501            if(j>=2048 && j<3072) histosiglad[nn][2]->Fill(ctrk.dspsig[n][j]);
502        };        };
503        histoasig[nn]->Fill(1,ctrk.sig1[nn]);        histoasig[nn]->Fill(1,ctrk.sig1[n]);
504        histoasig[nn]->Fill(1025,ctrk.sig2[nn]);        histoasig[nn]->Fill(1025,ctrk.sig2[n]);
505        histoasig[nn]->Fill(2049,ctrk.sig3[nn]);        histoasig[nn]->Fill(2049,ctrk.sig3[n]);
506        histoaped[nn]->Fill(1,ctrk.ped1[nn]);        histoaped[nn]->Fill(1,ctrk.ped1[nn]);
507        histoaped[nn]->Fill(1025,ctrk.ped2[nn]);        histoaped[nn]->Fill(1025,ctrk.ped2[n]);
508        histoaped[nn]->Fill(2049,ctrk.ped3[nn]);        histoaped[nn]->Fill(2049,ctrk.ped3[n]);
509        /******************************************************/        /******************************************************/
510                    
511        TLine li;        TLine li,liva1;
512        li.SetLineColor(38);        li.SetLineColor(38);
513        li.SetLineStyle(3);        li.SetLineStyle(4);
514        li.SetLineWidth(2);        li.SetLineWidth(2);
515                liva1.SetLineColor(42);
516                liva1.SetLineStyle(3);
517          liva1.SetLineWidth(1);
518    
519          Float_t maxhist=0,va1x=0;
520          TBox b;
521        /* plot PEDESTAL */        /* plot PEDESTAL */
522        c1->cd();        c1->cd();
523        trkpadtext[nn]->Draw();        trkpadtext[nn]->Draw();
# Line 461  void FTrkCalibQLook_EXPERT(TString file, Line 525  void FTrkCalibQLook_EXPERT(TString file,
525        trkpad1[nn]->cd();        trkpad1[nn]->cd();
526        trkpad1[nn]->SetFillColor(10);        trkpad1[nn]->SetFillColor(10);
527        trkpad1[nn]->SetFrameFillColor(10);        trkpad1[nn]->SetFrameFillColor(10);
528          histoped[nn]->SetStats(kFALSE);
529        histoped[nn]->SetLineColor(1);        histoped[nn]->SetLineColor(1);
530        histoped[nn]->SetFillColor(12);        histoped[nn]->SetFillColor(12);
531        histoped[nn]->SetLineWidth(1);        histoped[nn]->SetLineWidth(1);
532        histoped[nn]->GetYaxis()->SetTitle("PED (ADC channels)");        histoped[nn]->GetYaxis()->SetTitle("PED (ADC channels)");
533        histoped[nn]->GetYaxis()->CenterTitle();        histoped[nn]->GetYaxis()->CenterTitle();
534        if((nn+1)%2==1)  histoped[nn]->GetYaxis()->SetRangeUser(2500,3200);        if((nn+1)%2==1)  histoped[nn]->GetYaxis()->SetRangeUser(2200,3200);
535        if((nn+1)%2==0)  histoped[nn]->GetYaxis()->SetRangeUser(1000,1700);        if((nn+1)%2==0)  histoped[nn]->GetYaxis()->SetRangeUser(700,1700);
536        histoaped[nn]->SetLineColor(5);        histoaped[nn]->SetLineColor(5);
537        histoaped[nn]->SetLineWidth(1);        histoaped[nn]->SetLineWidth(1);
538        if(ctrk.good0[0]==1 && ctrk.good0[1]==1) histoped[nn]->Draw("b");  //       if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
539        else histoped[nn]->Draw("axis");          histoped[nn]->Draw("b");
540            maxhist=histoped[nn]->GetMaximum();
541            if(nn==0){
542              b.SetFillColor(107);
543              b.SetFillStyle(3945);
544              b.DrawBox(256.,2200.,384.,maxhist);
545              b.DrawBox(768.,2200.,2047.,maxhist);
546            }
547            else if(nn==1){
548              b.SetFillColor(6);
549              b.SetFillStyle(3945);
550              b.DrawBox(2944.,700.,3060.,maxhist);
551    
552              b.SetFillColor(107);
553              b.SetFillStyle(3954);
554              b.DrawBox(384.,700.,512.,maxhist);
555              b.DrawBox(2048.,700.,2432.,maxhist);
556              b.DrawBox(2816.,700.,2944.,maxhist);
557            }
558            else if(nn==3){
559              b.SetFillColor(107);
560              b.SetFillStyle(3954);
561              b.DrawBox(2816.,700.,3070.,maxhist);
562            }
563            else if(nn==4){
564              b.SetFillColor(107);
565              b.SetFillStyle(3954);
566              b.DrawBox(256.,2200.,512.,maxhist);
567              b.DrawBox(2816.,2200.,3070.,maxhist);
568            }
569            else if(nn==5){
570              b.SetFillColor(107);
571              b.SetFillStyle(3954);
572              b.DrawBox(896.,700.,1024.,maxhist);      
573            }
574            else if(nn==6){
575              b.SetFillColor(6);
576              b.SetFillStyle(3945);
577              b.DrawBox(1024.,2200.,1280.,maxhist);
578              
579              b.SetFillColor(107);
580              b.SetFillStyle(3954);
581              b.DrawBox(512.,2200.,768.,maxhist);
582              b.DrawBox(1280.,2200.,1792.,maxhist);
583              b.DrawBox(2560.,2200.,2816.,maxhist);
584            }
585            else if(nn==7){
586              b.SetFillColor(107);
587              b.SetFillStyle(3954);
588              b.DrawBox(512.,700.,768.,maxhist);
589              b.DrawBox(896.,700.,1535.,maxhist);
590            }
591            else if(nn==8){
592              b.SetFillColor(107);
593              b.SetFillStyle(3954);
594              b.DrawBox(512.,2200.,768.,maxhist);
595            }
596            else if(nn==9){
597              b.SetFillColor(107);
598              b.SetFillStyle(3954);
599              b.DrawBox(256.,700.,384.,maxhist);
600              b.DrawBox(1280.,700.,1535.,maxhist);
601              b.DrawBox(1792.,700.,1920.,maxhist);
602            }
603            else if(nn==10){
604              b.SetFillColor(107);
605              b.SetFillStyle(3954);
606              b.DrawBox(1024.,2200.,1152.,maxhist);
607              b.DrawBox(2048.,2200.,3070.,maxhist);
608            }
609            else if(nn==11){
610              b.SetFillColor(6);
611              b.SetFillStyle(3945);
612              b.DrawBox(768.,700.,1024.,maxhist);
613              
614              b.SetFillColor(107);
615              b.SetFillStyle(3954);
616              b.DrawBox(0.,700.,512.,maxhist);
617              b.DrawBox(1920.,700.,2560.,maxhist);
618            }
619      //     }
620    //       else histoped[nn]->Draw("axis");
621        histoaped[nn]->Draw("same");        histoaped[nn]->Draw("same");
622        if((nn+1)%2==1) {        if((nn+1)%2==1) {
623          li.DrawLine(1024.5,2500,1024.5,3200);          for(int va=1; va<24; va++){
624          li.DrawLine(2048.5,2500,2048.5,3200);            va1x=128*va;
625              liva1.DrawLine(va1x,2200.,va1x,3200.);
626            }
627            li.DrawLine(1024.5,2200.,1024.5,3200.);
628            li.DrawLine(2048.5,2200.,2048.5,3200.);
629        }        }
630        if((nn+1)%2==0) {        if((nn+1)%2==0) {
631          li.DrawLine(1024.5,1000,1024.5,1700);          for(int va=1; va<24; va++){
632          li.DrawLine(2048.5,1000,2048.5,1700);            va1x=128*va;
633              liva1.DrawLine(va1x,700.,va1x,1700.);
634            }
635            li.DrawLine(1024.5,700,1024.5,1700);
636            li.DrawLine(2048.5,700,2048.5,1700);
637        }        }
638          c1->Update();//draw pads in canvas
639                
640    
641                
642        /* plot SIGMA */        /* plot SIGMA */
643        Double_t max=500.;        Float_t max=500.;
644        c2->cd();        c2->cd();
645        trkpadtext[nn]->Draw();        trkpadtext[nn]->Draw();
646        trkpad2[nn]->SetLogy();        trkpad2[nn]->SetLogy();
# Line 492  void FTrkCalibQLook_EXPERT(TString file, Line 648  void FTrkCalibQLook_EXPERT(TString file,
648        trkpad2[nn]->cd();        trkpad2[nn]->cd();
649        trkpad2[nn]->SetFillColor(10);        trkpad2[nn]->SetFillColor(10);
650        trkpad2[nn]->SetFrameFillColor(10);        trkpad2[nn]->SetFrameFillColor(10);
651          histosig[nn]->SetStats(kFALSE);
652        histosig[nn]->SetLineColor(1);        histosig[nn]->SetLineColor(1);
653        histosig[nn]->SetFillColor(12);        histosig[nn]->SetFillColor(12);
654        histosig[nn]->SetLineWidth(1);        histosig[nn]->SetLineWidth(1);
# Line 501  void FTrkCalibQLook_EXPERT(TString file, Line 658  void FTrkCalibQLook_EXPERT(TString file,
658        histosig[nn]->GetYaxis()->CenterTitle();        histosig[nn]->GetYaxis()->CenterTitle();
659        histoasig[nn]->SetLineColor(5);        histoasig[nn]->SetLineColor(5);
660        histoasig[nn]->SetLineWidth(1);        histoasig[nn]->SetLineWidth(1);
661        if(ctrk.good0[0]==1 && ctrk.good0[1]==1) histosig[nn]->Draw("b");  //      if(ctrk.good0[0]==1 && ctrk.good0[1]==1){
662        else histosig[nn]->Draw("axis");          histosig[nn]->Draw("b");
663            maxhist=histosig[nn]->GetMaximum();
664            if(nn==0){
665              b.SetFillColor(107);
666              b.SetFillStyle(3945);
667              b.DrawBox(256.,0.,384.,maxhist);
668              b.DrawBox(768.,0.,2047.,maxhist);
669            }
670            else if(nn==1){
671              b.SetFillColor(6);
672              b.SetFillStyle(3945);
673              b.DrawBox(2944.,0.,3070.,maxhist);
674    
675              b.SetFillColor(107);
676              b.SetFillStyle(3954);
677              b.DrawBox(384.,0.,512.,maxhist);
678              b.DrawBox(2048.,0.,2432.,maxhist);
679              b.DrawBox(2816.,0.,2944.,maxhist);
680            }
681            else if(nn==3){
682              b.SetFillColor(107);
683              b.SetFillStyle(3954);
684              b.DrawBox(2816.,0.,3070.,maxhist);
685            }
686            else if(nn==4){
687              b.SetFillColor(107);
688              b.SetFillStyle(3954);
689              b.DrawBox(256.,0.,512.,maxhist);
690              b.DrawBox(2816.,0.,3070.,maxhist);
691            }
692            else if(nn==5){
693              b.SetFillColor(107);
694              b.SetFillStyle(3954);
695              b.DrawBox(896.,0.,1024.,maxhist);      
696            }
697            else if(nn==6){
698              b.SetFillColor(6);
699              b.SetFillStyle(3945);
700              b.DrawBox(1024.,0.,1280.,maxhist);
701              
702              b.SetFillColor(107);
703              b.SetFillStyle(3954);
704              b.DrawBox(512.,0.,768.,maxhist);
705              b.DrawBox(1280.,0.,1792.,maxhist);
706              b.DrawBox(2560.,0.,2816.,maxhist);
707            }
708            else if(nn==7){
709              b.SetFillColor(107);
710              b.SetFillStyle(3954);
711              b.DrawBox(512.,0.,768.,maxhist);
712              b.DrawBox(896.,0.,1535.,maxhist);
713            }
714            else if(nn==8){
715              b.SetFillColor(107);
716              b.SetFillStyle(3954);
717              b.DrawBox(512.,0.,768.,maxhist);
718            }
719            else if(nn==9){
720              b.SetFillColor(107);
721              b.SetFillStyle(3954);
722              b.DrawBox(256.,0.,384.,maxhist);
723              b.DrawBox(1280.,0.,1535.,maxhist);
724              b.DrawBox(1792.,0.,1920.,maxhist);
725            }
726            else if(nn==10){
727              b.SetFillColor(107);
728              b.SetFillStyle(3954);
729              b.DrawBox(1024.,0.,1152.,maxhist);
730              b.DrawBox(2048.,0.,3070.,maxhist);
731            }
732            else if(nn==11){
733              b.SetFillColor(6);
734              b.SetFillStyle(3945);
735              b.DrawBox(768.,0.,1024.,maxhist);
736              
737              b.SetFillColor(107);
738              b.SetFillStyle(3954);
739              b.DrawBox(0.,0.,512.,maxhist);
740              b.DrawBox(1920.,0.,2560.,maxhist);
741            }
742    //       }
743    //       else histosig[nn]->Draw("axis");
744        histoasig[nn]->Draw("same");        histoasig[nn]->Draw("same");
745          for(int va=1; va<24; va++){
746            va1x=128*va;
747            liva1.DrawLine(va1x,0.,va1x,max);
748          }
749        li.DrawLine(1024.5,0,1024.5,max);        li.DrawLine(1024.5,0,1024.5,max);
750        li.DrawLine(2048.5,0,2048.5,max);        li.DrawLine(2048.5,0,2048.5,max);
751                  c2->Update();//draw pads in canvas
752          
753          for(int ii=0;ii<3;ii++){
754            sig->cd();
755            trkpad3[nn*3+ii]->Draw();
756            trkpad3[nn*3+ii]->cd();
757            trkpad3[nn*3+ii]->SetFillColor(10);
758            trkpad3[nn*3+ii]->SetFrameFillColor(10);
759            trkpad3[nn*3+ii]->SetLogy();
760            histosiglad[nn][ii]->SetLineColor(1);
761            histosiglad[nn][ii]->SetFillColor(1);
762            histosiglad[nn][ii]->SetLineWidth(1);
763            histosiglad[nn][ii]->GetXaxis()->SetTitle("SIG (ADC channels)");
764            histosiglad[nn][ii]->GetXaxis()->CenterTitle();
765            histosiglad[nn][ii]->Draw("");  
766          }
767          
768      };//end loop on views      };//end loop on views
       
769      c1->Update();//draw pads in canvas      c1->Update();//draw pads in canvas
770      c2->Update();//draw pads in canvas      c2->Update();//draw pads in canvas
771        sig->Update();//draw pads in canvas
772      stringstream nom1;      
773      stringstream nom2;      stringstream nom1,nom2,nom3;
774          
775      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){      if(!strcmp(outfile.Data(),"ps")||!strcmp(outfile.Data(),"pdf")){
776        nom1.str("");        nom1.str("");
777        nom2.str("");        nom2.str("");
778          nom3.str("");
779        nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps(";        nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps(";
780        nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps)";        nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps";
781          nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps)";
782        c1->Print(nom1.str().c_str(),"Landscape");        c1->Print(nom1.str().c_str(),"Landscape");
783        c2->Print(nom2.str().c_str(),"Landscape");        c2->Print(nom2.str().c_str(),"Landscape");
784          sig->Print(nom3.str().c_str(),"Landscape");
785          
786        if(!strcmp(outfile.Data(),"pdf")){        if(!strcmp(outfile.Data(),"pdf")){
787          stringstream com;          stringstream com;
788          com<<"ps2pdf13 "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps "<<out<<ffile<<"_FTrkCalibQlook_EXPERT-pkt"<<i+1<<".pdf";          com<<"ps2pdf13 "<<out<<ffile<<"_FTrkCalibQLook_EXPERT-pkt"<<i+1<<".ps "<<out<<ffile<<"_FTrkCalibQlook_EXPERT-pkt"<<i+1<<".pdf";
# Line 537  void FTrkCalibQLook_EXPERT(TString file, Line 798  void FTrkCalibQLook_EXPERT(TString file,
798      else{      else{
799        nom1.str("");        nom1.str("");
800        nom2.str("");        nom2.str("");
801          nom3.str("");
802        nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-ped-pkt"<<i+1<<"."<<outfile.Data();        nom1<<out<<ffile<<"_FTrkCalibQLook_EXPERT-ped-pkt"<<i+1<<"."<<outfile.Data();
803        nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-sig-pkt"<<i+1<<"."<<outfile.Data();        nom2<<out<<ffile<<"_FTrkCalibQLook_EXPERT-sig-pkt"<<i+1<<"."<<outfile.Data();
804          nom3<<out<<ffile<<"_FTrkCalibQLook_EXPERT-histosig-pkt"<<i+1<<"."<<outfile.Data();
805        c1->Print(nom1.str().c_str());        c1->Print(nom1.str().c_str());
806        c2->Print(nom2.str().c_str());        c2->Print(nom2.str().c_str());
807          sig->Print(nom3.str().c_str());
808      }      }
809              
810      if(step==1 && i!=maxevent-1 ){        if(step==1 && i!=maxevent-1 ){  
811        printf("\n Press 1<enter> to continue, 2<enter> to quit.\n");        printf("\n Press 1<enter> to continue, 2<enter> to quit.\n");
812        cin>>risposta;        cin>>risposta;

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

  ViewVC Help
Powered by ViewVC 1.1.23