/[PAMELA software]/DarthVader/CalorimeterLevel2/src/CaloLevel0.cpp
ViewVC logotype

Diff of /DarthVader/CalorimeterLevel2/src/CaloLevel0.cpp

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

revision 1.18 by mocchiut, Thu Feb 28 10:38:40 2008 UTC revision 1.28 by mocchiut, Mon Dec 14 12:50:34 2009 UTC
# Line 56  CaloLevel0::CaloLevel0(){ Line 56  CaloLevel0::CaloLevel0(){
56    clevel1 = &clevel1_;    clevel1 = &clevel1_;
57    clevel2 = &clevel2_;    clevel2 = &clevel2_;
58    //    //
59    //  extern struct FlEventi eventi_;
60    //   extern struct FlGruppo gruppo_;
61    //   extern struct FlGruppo2 gruppo2_;
62    //   extern struct FlGruppo4 gruppo4_;
63    //   extern struct FlTaglioen taglioen_;
64    //   extern struct FlAngolo angolo_;
65    //   extern struct FlWhere where_;
66    //   extern struct FlGeneral general_;
67    //   extern struct FlCh ch_;
68    //   extern struct FlCalofit calofit_;
69    //   extern struct FlPawcd pawcd_;
70    //   extern struct FlQuestd questd_;
71    //   eventi = &eventi_;
72    //   gruppo = &gruppo_;
73    //   gruppo2 = &gruppo2_;
74    //   gruppo4 = &gruppo4_;
75    //   taglioen = &taglioen_;
76    //   angolo = &angolo_;
77    //   where = &where_;
78    //   general = &general_;
79    //   ch = &ch_;
80    //   calofit = &calofit_;
81    //   pawcd = &pawcd_;
82    //   questd = &questd_;
83      //
84    trkseqno = 0;    trkseqno = 0;
85    ClearStructs();    ClearStructs();
86    //    //
# Line 67  CaloLevel0::CaloLevel0(){ Line 92  CaloLevel0::CaloLevel0(){
92    memset(obadmask, 0, 2*22*96*sizeof(Int_t));    memset(obadmask, 0, 2*22*96*sizeof(Int_t));
93    memset(obadpulsemask, 0, 2*22*6*sizeof(Int_t));    memset(obadpulsemask, 0, 2*22*6*sizeof(Int_t));
94    memset(ctprecor, 0, 2*22*6*sizeof(Float_t));    memset(ctprecor, 0, 2*22*6*sizeof(Float_t));
95      memset(ctsicor, 0, 2*22*9*sizeof(Float_t));
96    memset(ctneigcor, 0, 2*22*6*sizeof(Float_t));    memset(ctneigcor, 0, 2*22*6*sizeof(Float_t));
97    calopar1 = true;    calopar1 = true;
98    calopar2 = true;    calopar2 = true;
99    calopar3 = true;    calopar3 = true;
100      calopar4 = true;
101      calopar5 = true;
102    crosst = true;    crosst = true;
103      mask18 = false;
104    ftcalopar1 = 0;    ftcalopar1 = 0;
105    ttcalopar1 = 0;    ttcalopar1 = 0;
106    ftcalopar2 = 0;    ftcalopar2 = 0;
107    ttcalopar2 = 0;    ttcalopar2 = 0;
108    ftcalopar3 = 0;    ftcalopar3 = 0;
109    ttcalopar3 = 0;    ttcalopar3 = 0;
110      ftcalopar4 = 0;
111      ttcalopar4 = 0;
112      ftcalopar5 = 0;
113      ttcalopar5 = 0;
114  }  }
115    
116  void CaloLevel0::SetCrossTalk(Bool_t ct){  void CaloLevel0::SetCrossTalk(Bool_t ct){
# Line 88  void CaloLevel0::SetCrossTalkType(Bool_t Line 121  void CaloLevel0::SetCrossTalkType(Bool_t
121    ctground = ct;    ctground = ct;
122  }  }
123    
124    void CaloLevel0::SetCrossTalkType(Int_t ct){
125      if ( ct == 0 ) ctground = true;
126      if ( ct == 1 ){
127        ctground = false;
128        noselfct = false;
129      };
130      if ( ct == 2 ){
131        ctground = false;
132        noselfct = true;
133      };
134    }
135    
136  void CaloLevel0::SetVerbose(Bool_t ct){  void CaloLevel0::SetVerbose(Bool_t ct){
137    verbose = ct;    verbose = ct;
138  }  }
# Line 95  void CaloLevel0::SetVerbose(Bool_t ct){ Line 140  void CaloLevel0::SetVerbose(Bool_t ct){
140  /**  /**
141   * Initialize CaloLevel0 object   * Initialize CaloLevel0 object
142  **/  **/
143    void CaloLevel0::ProcessingInit(TSQLServer *dbc, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){
144      if ( !dbc->IsConnected() ) throw -116;  
145      this->InitDo(dbc,hs,sgnl,l0tree,isdeb,isverb);
146    }
147    
148    /**
149     * Initialize CaloLevel0 object
150    **/
151  void CaloLevel0::ProcessingInit(GL_TABLES *glt, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){  void CaloLevel0::ProcessingInit(GL_TABLES *glt, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){
152    //    //
153    const TString host = glt->CGetHost();    const TString host = glt->CGetHost();
# Line 102  void CaloLevel0::ProcessingInit(GL_TABLE Line 155  void CaloLevel0::ProcessingInit(GL_TABLE
155    const TString psw = glt->CGetPsw();    const TString psw = glt->CGetPsw();
156    TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());    TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
157    if ( !dbc->IsConnected() ) throw -116;      if ( !dbc->IsConnected() ) throw -116;  
158      this->InitDo(dbc,hs,sgnl,l0tree,isdeb,isverb);
159      dbc->Close();
160      delete dbc;
161    }
162    
163    
164    void CaloLevel0::InitDo(TSQLServer *dbc, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){
165    stringstream myquery;    stringstream myquery;
166    myquery.str("");    myquery.str("");
167    myquery << "SET time_zone='+0:00'";    myquery << "SET time_zone='+0:00'";
# Line 182  void CaloLevel0::ProcessingInit(GL_TABLE Line 242  void CaloLevel0::ProcessingInit(GL_TABLE
242    //    //
243    delete glcalo;    delete glcalo;
244    delete glroot;    delete glroot;
   dbc->Close();  
   delete dbc;  
245    //    //
246    return;    return;
247    //    //
# Line 200  Int_t CaloLevel0::ChkCalib(GL_TABLES *gl Line 258  Int_t CaloLevel0::ChkCalib(GL_TABLES *gl
258    return(sgnl);    return(sgnl);
259  }  }
260    
261    Int_t CaloLevel0::ChkParam(TSQLServer *dbc, UInt_t runheader, Bool_t mechal){
262      Int_t sig = this->ChkParamDo(dbc,runheader,mechal);
263      return(sig);
264    }
265    
266  Int_t CaloLevel0::ChkParam(GL_TABLES *glt, UInt_t runheader, Bool_t mechal){  Int_t CaloLevel0::ChkParam(GL_TABLES *glt, UInt_t runheader, Bool_t mechal){
267    const TString host = glt->CGetHost();    const TString host = glt->CGetHost();
268    const TString user = glt->CGetUser();    const TString user = glt->CGetUser();
# Line 211  Int_t CaloLevel0::ChkParam(GL_TABLES *gl Line 274  Int_t CaloLevel0::ChkParam(GL_TABLES *gl
274    myquery << "SET time_zone='+0:00'";    myquery << "SET time_zone='+0:00'";
275    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
276    //    //
277      Int_t sig = this->ChkParamDo(dbc,runheader,mechal);
278      dbc->Close();
279      delete dbc;
280      return(sig);
281    }
282    
283    Int_t CaloLevel0::ChkParamDo(TSQLServer *dbc, UInt_t runheader, Bool_t mechal){
284      //
285    stringstream calfile;    stringstream calfile;
286    stringstream bmfile;    stringstream bmfile;
287    stringstream aligfile;    stringstream aligfile;
# Line 221  Int_t CaloLevel0::ChkParam(GL_TABLES *gl Line 292  Int_t CaloLevel0::ChkParam(GL_TABLES *gl
292    //    //
293    if ( calopar1 || ( ttcalopar1 != 0 && ttcalopar1 < runheader ) ){    if ( calopar1 || ( ttcalopar1 != 0 && ttcalopar1 < runheader ) ){
294      //      //
     //  
     //  
295      if ( debug ) printf(" calopar1 %i ftcalopar1 %u ttcalopar1 %u runheader %u \n",calopar1,ftcalopar1,ttcalopar1,runheader);      if ( debug ) printf(" calopar1 %i ftcalopar1 %u ttcalopar1 %u runheader %u \n",calopar1,ftcalopar1,ttcalopar1,runheader);
296      //      //
297        if ( calopar1 ){
298          //
299          // determine where I can find calorimeter ADC to MIP conversion file  
300          //
301          if ( verbose ) printf(" Querying DB for calorimeter parameters files...\n");
302          //
303          error = 0;
304          error = glparam->Query_GL_PARAM(runheader,101,dbc);
305          if ( error < 0 ) return(error);
306          //
307          calfile.str("");
308          calfile << glparam->PATH.Data() << "/";
309          calfile << glparam->NAME.Data();
310          //
311          if ( verbose ) printf("\n Using ADC to MIP conversion file: \n %s \n",calfile.str().c_str());
312          f = fopen(calfile.str().c_str(),"rb");
313          if ( !f ){
314            if ( verbose ) printf(" CALORIMETER - ERROR: no ADC to MIP file!\n");
315            return(-105);
316          };
317          //
318          for (Int_t m = 0; m < 2 ; m++ ){
319            for (Int_t k = 0; k < 22; k++ ){
320              for (Int_t l = 0; l < 96; l++ ){
321                fread(&mip[m][k][l],sizeof(mip[m][k][l]),1,f);
322                if ( debug ) printf(" %f \n",mip[m][k][l]);
323              };
324            };
325          };
326          fclose(f);      
327        };
328        //
329      calopar1 = false;      calopar1 = false;
330      //      //
331      // determine where I can find calorimeter ADC to MIP conversion file        // flight extra corrections:
332      //      //
333      if ( verbose ) printf(" Querying DB for calorimeter parameters files...\n");      if ( verbose ) printf(" Querying DB for calorimeter flight ADC to MIP files...\n");
334      //      //
335      error = 0;      error = 0;
336      error = glparam->Query_GL_PARAM(runheader,101,dbc);      error = glparam->Query_GL_PARAM(runheader,110,dbc);
337      if ( error < 0 ) return(error);      if ( error < 0 ) return(error);
338      //      //
339      calfile.str("");      calfile.str("");
# Line 241  Int_t CaloLevel0::ChkParam(GL_TABLES *gl Line 342  Int_t CaloLevel0::ChkParam(GL_TABLES *gl
342      ftcalopar1 = glparam->FROM_TIME;      ftcalopar1 = glparam->FROM_TIME;
343      ttcalopar1 = glparam->TO_TIME;      ttcalopar1 = glparam->TO_TIME;
344      //      //
345      if ( verbose ) printf("\n Using ADC to MIP conversion file: \n %s \n",calfile.str().c_str());      if ( verbose ) printf("\n Using ADC to MIP special conversion file: \n %s \n",calfile.str().c_str());
346      f = fopen(calfile.str().c_str(),"rb");      ifstream spfile;
347      if ( !f ){      spfile.open(calfile.str().c_str());
348        if ( verbose ) printf(" CALORIMETER - ERROR: no ADC to MIP file!\n");      if ( !spfile ){
349        return(-105);        if ( verbose ) printf(" CALORIMETER - ERROR: no special calibration file!\n");
350          return(-123);
351      };      };
352        //  
353        Int_t vview = 0;
354        Int_t vplane = 0;
355        Int_t vstrip = 0;
356        Float_t vval = 0.;
357        while ( spfile >> vview && spfile >> vplane && spfile >> vstrip && spfile >> vval){
358          if ( debug ) printf(" Setting ADC to MIP conversion factor: view %i plane %i strip %i mip %f  \n",vview,vplane,vstrip,vval);
359          mip[vview][vplane][vstrip] = vval;
360        };
361      //      //
     for (Int_t m = 0; m < 2 ; m++ ){  
       for (Int_t k = 0; k < 22; k++ ){  
         for (Int_t l = 0; l < 96; l++ ){  
           fread(&mip[m][k][l],sizeof(mip[m][k][l]),1,f);  
           if ( debug ) printf(" %f \n",mip[m][k][l]);  
         };  
       };  
     };  
     fclose(f);  
362    };    };
363    //    //
364      //
365    if ( calopar2 || ( ttcalopar2 != 0 && ttcalopar2 < runheader ) ){    if ( calopar2 || ( ttcalopar2 != 0 && ttcalopar2 < runheader ) ){
366        //
367      if ( debug ) printf(" calopar2 %i ftcalopar2 %u ttcalopar2 %u runheader %u \n",calopar2,ftcalopar2,ttcalopar2,runheader);      if ( debug ) printf(" calopar2 %i ftcalopar2 %u ttcalopar2 %u runheader %u \n",calopar2,ftcalopar2,ttcalopar2,runheader);
368      calopar2 = false;      calopar2 = false;
369      //      //
# Line 366  Int_t CaloLevel0::ChkParam(GL_TABLES *gl Line 470  Int_t CaloLevel0::ChkParam(GL_TABLES *gl
470      badfile.close();      badfile.close();
471    };    };
472    //    //
473      // calopar4
474      //
475      if ( calopar4 || ( ttcalopar4 != 0 && ttcalopar4 < runheader ) ){
476        //
477        if ( debug ) printf(" calopar4 %i ftcalopar4 %u ttcalopar4 %u runheader %u \n",calopar4,ftcalopar4,ttcalopar4,runheader);
478        //
479        calopar4 = false;
480        //
481        // flight extra corrections:
482        //
483        if ( verbose ) printf(" Querying DB for calorimeter max rms file...\n");
484        //
485        error = 0;
486        error = glparam->Query_GL_PARAM(runheader,109,dbc);
487        if ( error < 0 ) return(error);
488        //
489        calfile.str("");
490        calfile << glparam->PATH.Data() << "/";
491        calfile << glparam->NAME.Data();
492        ftcalopar4 = glparam->FROM_TIME;
493        ttcalopar4 = glparam->TO_TIME;
494        //
495        if ( verbose ) printf("\n Using calorimeter max rms file: \n %s \n",calfile.str().c_str());
496        ifstream spfile;
497        spfile.open(calfile.str().c_str());
498        if ( !spfile ){
499          if ( verbose ) printf(" CALORIMETER - ERROR: no max rms file!\n");
500          return(-124);
501        };
502        //  
503        Int_t vview = 0;
504        Int_t vplane = 0;
505        Int_t vval = 0;
506        for (Int_t l=0; l<2; l++){
507          for (Int_t m=0; m<22; m++){
508            maxrms[l][m] = 26;
509          };
510        };
511        while ( spfile >> vview && spfile >> vplane && spfile >> vval){
512          if ( debug ) printf(" Setting view %i plane %i max rms %i  \n",vview,vplane,vval);
513          maxrms[vview][vplane] = vval;
514        };
515        spfile.close();
516        //
517      };
518      //
519      // calopar5
520      //
521      if ( calopar5 || ( ttcalopar5 != 0 && ttcalopar5 < runheader ) ){
522        //
523        if ( debug ) printf(" calopar5 %i ftcalopar5 %u ttcalopar5 %u runheader %u \n",calopar5,ftcalopar5,ttcalopar5,runheader);
524        //
525        calopar5 = false;
526        //
527        // flight extra corrections:
528        //
529        if ( verbose ) printf(" Querying DB for calorimeter noise to signal threshold file...\n");
530        //
531        error = 0;
532        error = glparam->Query_GL_PARAM(runheader,111,dbc);
533        if ( error < 0 ) return(error);
534        //
535        calfile.str("");
536        calfile << glparam->PATH.Data() << "/";
537        calfile << glparam->NAME.Data();
538        ftcalopar5 = glparam->FROM_TIME;
539        ttcalopar5 = glparam->TO_TIME;
540        //
541        if ( verbose ) printf("\n Using calorimeter noise to signal threshold file: \n %s \n",calfile.str().c_str());
542        ifstream spfile;
543        spfile.open(calfile.str().c_str());
544        if ( !spfile ){
545          if ( verbose ) printf(" CALORIMETER - ERROR: no noise to signal threshold file!\n");
546          return(-125);
547        };
548        //  
549        Int_t vview = 0;
550        Int_t vplane = 0;
551        Int_t vstrip = 0;
552        Float_t vval = 0.;
553        for (Int_t l=0; l<2; l++){
554          for (Int_t m=0; m<22; m++){
555            for (Int_t n=0; n<96; n++){
556              memin[l][m][n] = 0.7;
557            };
558          };
559        };
560        while ( spfile >> vview && spfile >> vplane && spfile >> vstrip && spfile >> vval){
561          if ( vstrip == -1 ){
562            for (Int_t ll=0; ll<96; ll++){
563              if ( debug ) printf(" Setting view %i plane %i strip %i noise to signal ratio %f  \n",vview,vplane,ll,vval);
564              memin[vview][vplane][ll] = vval;
565            };
566          } else {
567            if ( debug ) printf(" Setting view %i plane %i strip %i noise to signal ratio %f  \n",vview,vplane,vstrip,vval);
568            memin[vview][vplane][vstrip] = vval;
569          };
570        };
571        spfile.close();
572        //
573      };
574      //
575      //
576    delete glparam;    delete glparam;
   dbc->Close();  
   delete dbc;  
577    //    //
578    return(0);    return(0);
579  }  }
580    
581  Int_t CaloLevel0::CalcCrossTalkCorr(GL_TABLES *glt, UInt_t runheader){  Int_t CaloLevel0::CalcCrossTalkCorr(TSQLServer *dbc, UInt_t runheader, Bool_t ctusetable){
582      Int_t sig = CalcCrossTalkCorrDo(dbc,runheader,ctusetable);
583      return(sig);  
584    };
585    
586    Int_t CaloLevel0::CalcCrossTalkCorr(TSQLServer *dbc, UInt_t runheader){
587      Int_t sig = CalcCrossTalkCorrDo(dbc,runheader,true);
588      return(sig);
589    }
590    
591    Int_t CaloLevel0::CalcCrossTalkCorr(GL_TABLES *glt, UInt_t runheader, Bool_t usetable){
592      const TString host = glt->CGetHost();
593      const TString user = glt->CGetUser();
594      const TString psw = glt->CGetPsw();
595      TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
596      if ( !dbc->IsConnected() ) throw -116;
597      stringstream myquery;
598      myquery.str("");
599      myquery << "SET time_zone='+0:00'";
600      dbc->Query(myquery.str().c_str());
601    //    //
602    if ( ctground ) return(0);    Int_t sig = CalcCrossTalkCorrDo(dbc,runheader,usetable);
603      dbc->Close();
604      delete dbc;
605    //    //
606      return(sig);
607      //  
608    };
609    
610    Int_t CaloLevel0::CalcCrossTalkCorr(GL_TABLES *glt, UInt_t runheader){
611    const TString host = glt->CGetHost();    const TString host = glt->CGetHost();
612    const TString user = glt->CGetUser();    const TString user = glt->CGetUser();
613    const TString psw = glt->CGetPsw();    const TString psw = glt->CGetPsw();
# Line 387  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T Line 618  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T
618    myquery << "SET time_zone='+0:00'";    myquery << "SET time_zone='+0:00'";
619    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
620    //    //
621    stringstream bmfile;    Int_t sig = CalcCrossTalkCorrDo(dbc,runheader,true);
622      dbc->Close();
623      delete dbc;
624      //
625      return(sig);
626      //
627    }
628    
629    Int_t CaloLevel0::CalcCrossTalkCorrDo(TSQLServer *dbc, UInt_t runheader, Bool_t usetable){
630      //
631      if ( ctground ) return(0);
632      //
633    Int_t error = 0;    Int_t error = 0;
634    ifstream badfile;    GL_PARAM *glparam = new GL_PARAM();  
   GL_PARAM *glparam = new GL_PARAM();  
635    //    //
636    // determine where I can find file with offline bad pulser mask    // determine where I can find file with offline bad pulser mask
637    //    //
638      stringstream bmfile;
639    error = 0;    error = 0;
640    error = glparam->Query_GL_PARAM(runheader,105,dbc);    error = glparam->Query_GL_PARAM(runheader,105,dbc);
641    if ( error < 0 ) return(error);    if ( error < 0 ) return(error);
# Line 402  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T Line 644  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T
644    bmfile << glparam->PATH.Data() << "/";    bmfile << glparam->PATH.Data() << "/";
645    bmfile << glparam->NAME.Data();    bmfile << glparam->NAME.Data();
646    //    //
647      ifstream badfile;
648    if ( verbose ) printf("\n Using bad pulser offline mask file: \n %s \n\n",bmfile.str().c_str());    if ( verbose ) printf("\n Using bad pulser offline mask file: \n %s \n\n",bmfile.str().c_str());
649    badfile.open(bmfile.str().c_str());    badfile.open(bmfile.str().c_str());
650    if ( !badfile ){    if ( !badfile ){
# Line 430  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T Line 673  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T
673      };      };
674    };    };
675    //    //
   delete glparam;  
676    badfile.close();    badfile.close();
677    //    if ( !usetable ){
   // Let's start with cross-talk correction calculation  
   //  
   GL_CALOPULSE_CALIB *glp = new GL_CALOPULSE_CALIB();  
   Float_t adcp[2][22][96];  
   Float_t adcpcal[2][22][96];  
   memset(adcp , 0, 2*22*96*sizeof(Float_t));  
   memset(adcpcal , 0, 2*22*96*sizeof(Float_t));  
   //  
   UInt_t pampli = 0;    
   for (Int_t s=0; s<4; s++){  
678      //      //
679      // Save into matrix adcp the values of the highest pulse calibration (pulse amplitude = 2)      // Let's start with cross-talk correction calculation
680      //      //
681      pampli = 2;      GL_CALOPULSE_CALIB *glp = new GL_CALOPULSE_CALIB();
682      error = 0;      Float_t adcp[2][22][96];
683      error = glp->Query_GL_CALOPULSE_CALIB(runheader,s,pampli,dbc);      Float_t adcpcal[2][22][96];
684      if ( error < 0 ){      memset(adcp , 0, 2*22*96*sizeof(Float_t));
685        if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");      memset(adcpcal , 0, 2*22*96*sizeof(Float_t));
       return(error);  
     };  
     //  
     UInt_t idcalib = glp->ID_ROOT_L0;  
     UInt_t fromtime = glp->FROM_TIME;  
     UInt_t calibno = glp->EV_ROOT;  
     //  
     // determine path and name and entry of the calibration file  
     //  
     GL_ROOT *glroot = new GL_ROOT();    
     if ( verbose ) printf("\n");  
     if ( verbose ) printf(" ** SECTION %i **\n",s);  
     //  
     error = 0;  
     error = glroot->Query_GL_ROOT(idcalib,dbc);  
     if ( error < 0 ){  
       if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");  
       return(error);  
     };  
     //    
     stringstream name;  
     name.str("");  
     name << glroot->PATH.Data() << "/";  
     name << glroot->NAME.Data();  
     //  
     TString fcalname = (TString)name.str().c_str();  
     ifstream myfile;  
     myfile.open(fcalname.Data());  
     if ( !myfile ){      
       return(-107);  
     };  
     myfile.close();  
     //  
     TFile *File = new TFile(fcalname.Data());  
     if ( !File ) return(-108);  
     TTree *tr = (TTree*)File->Get("CalibCalPulse2");  
     if ( !tr ) return(-119);  
686      //      //
687      TBranch *calo = tr->GetBranch("CalibCalPulse2");      UInt_t pampli = 0;  
688      //      for (Int_t s=0; s<4; s++){
689      pamela::CalibCalPulse2Event *ce = 0;        //
690      tr->SetBranchAddress("CalibCalPulse2", &ce);        // Save into matrix adcp the values of the highest pulse calibration (pulse amplitude = 2)
691      //        //
692      Long64_t ncalibs = calo->GetEntries();        pampli = 2;
693          error = 0;
694          error = glp->Query_GL_CALOPULSE_CALIB(runheader,s,pampli,dbc);
695          if ( error < 0 ){
696            if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
697            return(error);
698          };
699          //
700          UInt_t idcalib = glp->ID_ROOT_L0;
701          UInt_t fromtime = glp->FROM_TIME;
702          UInt_t calibno = glp->EV_ROOT;
703          //
704          // determine path and name and entry of the calibration file
705          //
706          GL_ROOT *glroot = new GL_ROOT();  
707          if ( verbose ) printf("\n");
708          if ( verbose ) printf(" ** SECTION %i **\n",s);
709          //
710          error = 0;
711          error = glroot->Query_GL_ROOT(idcalib,dbc);
712          if ( error < 0 ){
713            if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
714            return(error);
715          };
716          //        
717          stringstream name;
718          name.str("");
719          name << glroot->PATH.Data() << "/";
720          name << glroot->NAME.Data();
721          //
722          TString fcalname = (TString)name.str().c_str();
723          ifstream myfile;
724          myfile.open(fcalname.Data());
725          if ( !myfile ){    
726            return(-107);
727          };
728          myfile.close();
729          //
730          TFile *File = new TFile(fcalname.Data());
731          if ( !File ) return(-108);
732          TTree *tr = (TTree*)File->Get("CalibCalPulse2");
733          if ( !tr ) return(-119);
734          //
735          TBranch *calo = tr->GetBranch("CalibCalPulse2");
736          //
737          pamela::CalibCalPulse2Event *ce = 0;
738          tr->SetBranchAddress("CalibCalPulse2", &ce);
739          //
740          Long64_t ncalibs = calo->GetEntries();
741          //
742          if ( !ncalibs ) return(-110);
743          //
744          calo->GetEntry(calibno);
745          if ( verbose ) printf(" PULSE2 using entry %u from file %s",calibno,fcalname.Data());
746          //
747          // retrieve calibration table
748          //
749          if ( ce->pstwerr[s] && ce->pperror[s] == 0 && ce->unpackError == 0 ){
750            for ( Int_t d=0 ; d<11 ;d++  ){
751              for ( Int_t j=0; j<96 ;j++){
752                if ( s == 2 ){
753                  adcp[0][2*d+1][j] = ce->calpuls[3][d][j];
754                };
755                if ( s == 3 ){
756                  adcp[0][2*d][j] = ce->calpuls[1][d][j];
757                };
758                if ( s == 0 ){
759                  adcp[1][2*d][j] = ce->calpuls[0][d][j];
760                };
761                if ( s == 1 ){
762                  adcp[1][2*d+1][j] = ce->calpuls[2][d][j];
763                };
764              };
765            };
766          } else {
767            if ( verbose ) printf(" CALORIMETER - ERROR: problems finding a good calibration in this file! \n\n ");
768            return(-111);
769          };
770          //
771          File->Close();
772          delete glroot;
773          //
774          // Save into matrix adcpcal the calibrated values of the pulse calibration (subtraction of pulse amplitude = 0 relative to the pulse2 calibration used)
775          //
776          pampli = 0;
777          error = 0;
778          error = glp->Query_GL_CALOPULSE_CALIB(fromtime,s,pampli,dbc);
779          if ( error < 0 ){
780            if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
781            return(error);
782          };
783          //
784          idcalib = glp->ID_ROOT_L0;
785          calibno = glp->EV_ROOT;
786          //
787          // determine path and name and entry of the calibration file
788          //
789          glroot = new GL_ROOT();  
790          if ( verbose ) printf("\n");
791          if ( verbose ) printf(" ** SECTION %i **\n",s);
792          //
793          error = 0;
794          error = glroot->Query_GL_ROOT(idcalib,dbc);
795          if ( error < 0 ){
796            if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
797            return(error);
798          };
799          //        
800          name.str("");
801          name << glroot->PATH.Data() << "/";
802          name << glroot->NAME.Data();
803          //
804          fcalname = (TString)name.str().c_str();
805          myfile.open(fcalname.Data());
806          if ( !myfile ){    
807            return(-107);
808          };
809          myfile.close();
810          //
811          TFile *File1 = new TFile(fcalname.Data());
812          if ( !File1 ) return(-108);
813          TTree *tr1 = (TTree*)File1->Get("CalibCalPulse1");
814          if ( !tr1 ) return(-120);
815          //
816          TBranch *calo1 = tr1->GetBranch("CalibCalPulse1");
817          //
818          pamela::CalibCalPulse1Event *ce1 = 0;
819          tr1->SetBranchAddress("CalibCalPulse1", &ce1);
820          //
821          ncalibs = calo1->GetEntries();
822          //
823          if ( !ncalibs ) return(-110);
824          //
825          calo1->GetEntry(calibno);
826          if ( verbose ) printf(" PULSE1 using entry %u from file %s",calibno,fcalname.Data());
827          //
828          // retrieve calibration table
829          //
830          if ( ce1->pstwerr[s] && ce1->pperror[s] == 0 && ce1->unpackError == 0 ){
831            for ( Int_t d=0 ; d<11 ;d++  ){
832              for ( Int_t j=0; j<96 ;j++){
833                if ( s == 2 ){
834                  adcpcal[0][2*d+1][j] = adcp[0][2*d+1][j] - ce1->calpuls[3][d][j];
835                };
836                if ( s == 3 ){
837                  adcpcal[0][2*d][j] = adcp[0][2*d][j] - ce1->calpuls[1][d][j];
838                };
839                if ( s == 0 ){
840                  adcpcal[1][2*d][j] = adcp[1][2*d][j] - ce1->calpuls[0][d][j];
841                };
842                if ( s == 1 ){
843                  adcpcal[1][2*d+1][j] = adcp[1][2*d+1][j] - ce1->calpuls[2][d][j];
844                };
845              };
846            };
847          } else {
848            if ( verbose ) printf(" CALORIMETER - ERROR: problems finding a good calibration in this file! \n\n ");
849            return(-111);
850          };
851          //
852          File1->Close();
853          //
854          delete glroot;
855          //
856        };// loop on the four sections
857      //      //
     if ( !ncalibs ) return(-110);  
858      //      //
859      calo->GetEntry(calibno);      delete glp;
     if ( verbose ) printf(" PULSE2 using entry %u from file %s",calibno,fcalname.Data());  
860      //      //
861      // retrieve calibration table      // Ok, now we can try to calculate the cross-talk correction for each pre-amplifier
862      //      //
863      if ( ce->pstwerr[s] && ce->pperror[s] == 0 && ce->unpackError == 0 ){      for ( Int_t v=0; v<2; v++){
864        for ( Int_t d=0 ; d<11 ;d++  ){        if ( debug ) printf(" \n\n NEW VIEW \n");
865          for ( Int_t j=0; j<96 ;j++){        for ( Int_t p=0; p<22; p++){
866            if ( s == 2 ){          for ( Int_t npre=0; npre<6; npre++){
867              adcp[0][2*d+1][j] = ce->calpuls[3][d][j];            ctprecor[v][p][npre] = 1000.;
868            };            ctneigcor[v][p][npre] = 1000.;
869            if ( s == 3 ){            Int_t str0=npre*16;
870              adcp[0][2*d][j] = ce->calpuls[1][d][j];            Int_t str16= -1 + (1+npre)*16;
871            };            //
872            if ( s == 0 ){            UInt_t neigc = 0;
873              adcp[1][2*d][j] = ce->calpuls[0][d][j];            UInt_t farc = 0;
874              UInt_t pulsc = 0;
875              Float_t sigpulsed = 0.;
876              Float_t neigbase = 0.;
877              Float_t farbase = 0.;
878              //
879              // Loop over the strip of the pre and sum all signal far away from pulsed strip, signal in the neighbour(s) strip(s) and save the pulsed signal
880              // moreover count the number of strips in each case
881              //
882              for (Int_t s=str0; s<=str16; s++){
883                if ( adcpcal[v][p][s] > 10000.){
884                  sigpulsed = adcpcal[v][p][s];
885                  pulsc++;
886                  if ( s > str0 ){
887                    neigbase += adcpcal[v][p][s-1];
888                    neigc++;
889                    farbase -= adcpcal[v][p][s-1];
890                    farc--;
891                  };
892                  if ( s < str16 ){
893                    neigbase += adcpcal[v][p][s+1];
894                    neigc++;
895                    farbase -= adcpcal[v][p][s+1];
896                    farc--;
897                  };
898                } else {
899                  farc++;
900                  farbase += adcpcal[v][p][s];
901                };
902            };            };
903            if ( s == 1 ){            //
904              adcp[1][2*d+1][j] = ce->calpuls[2][d][j];            // Now calculate the corrections
905              //
906              Float_t avefarbase = 0.;
907              if ( farc ) avefarbase = farbase/(Float_t)farc;
908              Float_t aveneigbase = 0.;
909              if ( neigc ) aveneigbase = neigbase/(Float_t)neigc;
910              //
911              if ( pulsc == 1 && farc && neigc ){
912                ctprecor[v][p][npre] = -avefarbase/(sigpulsed+fabs(avefarbase));
913                ctneigcor[v][p][npre] = fabs(aveneigbase-avefarbase)/(sigpulsed+fabs(avefarbase));    
914                if ( debug ) printf(" Cross-talk correction View %i Plane %i Pre %i : pre-correction: %f neighbour strips correction %f \n",v,p,npre,ctprecor[v][p][npre],ctneigcor[v][p][npre]);
915              } else {
916                //
917                // did not find the pulsed strip or more than one pulsed strip found!
918                //
919                if ( debug ) printf(" Problems finding the cross-talk corrections: \n View %i Plane %i Pre %i number of pulsed strip %i \n Average faraway baseline %f number of strips %i Average neighbour baseline %f number of neighbour strips %i \n",v,p,npre,pulsc,avefarbase,farc,aveneigbase,neigc);
920                //
921            };            };
922          };          };
923            if ( debug ) printf(" \n ==================== \n");
924        };        };
     } else {  
       if ( verbose ) printf(" CALORIMETER - ERROR: problems finding a good calibration in this file! \n\n ");  
       return(-111);  
925      };      };
926      } else {
927      //      //
928      File->Close();      // use pre-amply table
929      delete glroot;      //    
930      //      //
931      // Save into matrix adcpcal the calibrated values of the pulse calibration (subtraction of pulse amplitude = 0 relative to the pulse2 calibration used)      // determine where I can find file with offline neighbour correction table
932      //      //
933      pampli = 0;      stringstream bmfile2;
934      error = 0;      error = 0;
935      error = glp->Query_GL_CALOPULSE_CALIB(fromtime,s,pampli,dbc);      error = glparam->Query_GL_PARAM(runheader,106,dbc);
936      if ( error < 0 ){      if ( error < 0 ) return(error);
       if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");  
       return(error);  
     };  
     //  
     idcalib = glp->ID_ROOT_L0;  
     calibno = glp->EV_ROOT;  
937      //      //
938      // determine path and name and entry of the calibration file      bmfile2.str("");
939        bmfile2 << glparam->PATH.Data() << "/";
940        bmfile2 << glparam->NAME.Data();
941        //
942        ifstream badfile2;
943        if ( verbose ) printf("\n Using pre-amply neighbour crosstalk table file: \n %s \n\n",bmfile2.str().c_str());
944        badfile2.open(bmfile2.str().c_str());
945        if ( !badfile2 ){
946          if ( verbose ) printf(" CALORIMETER - ERROR: no pre-amply neighbour crosstalk table file!\n");
947          return(-121);
948        };
949        //  
950        Int_t vview = 0;
951        Int_t vplane = 0;
952        Int_t vpre = 0;
953        Float_t vcorr = 0.;
954        while ( badfile2 >> vview && badfile2 >> vplane && badfile2 >> vpre && badfile2 >> vcorr){
955          if ( debug ) printf(" Pre-amply neighbour correction: view %i plane %i pre %i correction %f  \n",vview,vplane,vpre,vcorr);
956          ctneigcor[vview][vplane][vpre] = vcorr;
957        };
958      //      //
959      glroot = new GL_ROOT();        // determine where I can find file with offline SECOND neighbour correction table
     if ( verbose ) printf("\n");  
     if ( verbose ) printf(" ** SECTION %i **\n",s);  
960      //      //
961        stringstream bmfile3;
962      error = 0;      error = 0;
963      error = glroot->Query_GL_ROOT(idcalib,dbc);      error = glparam->Query_GL_PARAM(runheader,107,dbc);
964      if ( error < 0 ){      if ( error < 0 ) return(error);
       if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");  
       return(error);  
     };  
     //    
     name.str("");  
     name << glroot->PATH.Data() << "/";  
     name << glroot->NAME.Data();  
965      //      //
966      fcalname = (TString)name.str().c_str();      bmfile3.str("");
967      myfile.open(fcalname.Data());      bmfile3 << glparam->PATH.Data() << "/";
968      if ( !myfile ){          bmfile3 << glparam->NAME.Data();
969        return(-107);      //
970        ifstream badfile3;
971        if ( verbose ) printf("\n Using pre-amply second neighbour crosstalk table file: \n %s \n\n",bmfile3.str().c_str());
972        badfile3.open(bmfile3.str().c_str());
973        if ( !badfile3 ){
974          if ( verbose ) printf(" CALORIMETER - ERROR: no pre-amply second neighbour crosstalk table file!\n");
975          return(-122);
976      };      };
977      myfile.close();      //  
978      //      Int_t pview = 0;
979      TFile *File1 = new TFile(fcalname.Data());      Int_t pplane = 0;
980      if ( !File1 ) return(-108);      Int_t ppre = 0;
981      TTree *tr1 = (TTree*)File1->Get("CalibCalPulse1");      Float_t pcorr = 0.;
982      if ( !tr1 ) return(-120);      while ( badfile3 >> pview && badfile3 >> pplane && badfile3 >> ppre && badfile3 >> pcorr){
983      //        if ( debug ) printf(" Pre-amply second neighbour correction: view %i plane %i pre %i correction %f  \n",pview,pplane,ppre,-pcorr);
984      TBranch *calo1 = tr1->GetBranch("CalibCalPulse1");        ctprecor[pview][pplane][ppre] = -pcorr; // data are saved as negatives in the file
985      //      };
     pamela::CalibCalPulse1Event *ce1 = 0;  
     tr1->SetBranchAddress("CalibCalPulse1", &ce1);  
     //  
     ncalibs = calo1->GetEntries();  
     //  
     if ( !ncalibs ) return(-110);  
986      //      //
987      calo1->GetEntry(calibno);      // determine where to find the file containing the Silicon crosstalk correction table
     if ( verbose ) printf(" PULSE1 using entry %u from file %s",calibno,fcalname.Data());  
988      //      //
989      // retrieve calibration table      stringstream bmfile4;
990        error = 0;
991        error = glparam->Query_GL_PARAM(runheader,108,dbc);
992        if ( error < 0 ) return(error);
993      //      //
994      if ( ce1->pstwerr[s] && ce1->pperror[s] == 0 && ce1->unpackError == 0 ){      bmfile4.str("");
995        for ( Int_t d=0 ; d<11 ;d++  ){      bmfile4 << glparam->PATH.Data() << "/";
996          for ( Int_t j=0; j<96 ;j++){      bmfile4 << glparam->NAME.Data();
997            if ( s == 2 ){      //
998              adcpcal[0][2*d+1][j] = adcp[0][2*d+1][j] - ce1->calpuls[3][d][j];      ifstream badfile4;
999            };      if ( verbose ) printf("\n Using Silicon crosstalk table file: \n %s \n\n",bmfile4.str().c_str());
1000            if ( s == 3 ){      badfile4.open(bmfile4.str().c_str());
1001              adcpcal[0][2*d][j] = adcp[0][2*d][j] - ce1->calpuls[1][d][j];      if ( !badfile4 ){
1002            };        if ( verbose ) printf(" CALORIMETER - ERROR: no Silicon crosstalk table file!\n");
1003            if ( s == 0 ){        return(-125);
             adcpcal[1][2*d][j] = adcp[1][2*d][j] - ce1->calpuls[0][d][j];  
           };  
           if ( s == 1 ){  
             adcpcal[1][2*d+1][j] = adcp[1][2*d+1][j] - ce1->calpuls[2][d][j];  
           };  
         };  
       };  
     } else {  
       if ( verbose ) printf(" CALORIMETER - ERROR: problems finding a good calibration in this file! \n\n ");  
       return(-111);  
1004      };      };
1005        //  
1006        Int_t spview = 0;
1007        Int_t spplane = 0;
1008        Int_t psil = 0;
1009        Float_t spcorr = 0.;
1010        memset(ctsicor, 0, 2*22*9*sizeof(Float_t));
1011        while ( badfile4 >> spview && badfile4 >> spplane && badfile4 >> psil && badfile4 >> spcorr){
1012          if ( debug ) printf(" Silicon correction: view %i plane %i silicon %i correction %f  \n",spview,spplane,psil,-spcorr);
1013          ctsicor[spview][spplane][psil] = -spcorr; // data are saved as negatives in the file
1014        };
1015      //      //
     File1->Close();  
     //  
     delete glroot;  
     //  
   };// loop on the four sections  
   //  
   //  
   delete glp;  
   dbc->Close();  
   delete dbc;  
   //  
   // Ok, now we can try to calculate the cross-talk correction for each pre-amplifier  
   //  
   for ( Int_t v=0; v<2; v++){  
     if ( debug ) printf(" \n\n NEW VIEW \n");  
     for ( Int_t p=0; p<22; p++){  
       for ( Int_t npre=0; npre<6; npre++){  
         ctprecor[v][p][npre] = 1000.;  
         ctneigcor[v][p][npre] = 1000.;  
         Int_t str0=npre*16;  
         Int_t str16= -1 + (1+npre)*16;  
         //  
         UInt_t neigc = 0;  
         UInt_t farc = 0;  
         UInt_t pulsc = 0;  
         Float_t sigpulsed = 0.;  
         Float_t neigbase = 0.;  
         Float_t farbase = 0.;  
         //  
         // Loop over the strip of the pre and sum all signal far away from pulsed strip, signal in the neighbour(s) strip(s) and save the pulsed signal  
         // moreover count the number of strips in each case  
         //  
         for (Int_t s=str0; s<=str16; s++){  
           if ( adcpcal[v][p][s] > 10000.){  
             sigpulsed = adcpcal[v][p][s];  
             pulsc++;  
             if ( s > str0 ){  
               neigbase += adcpcal[v][p][s-1];  
               neigc++;  
               farbase -= adcpcal[v][p][s-1];  
               farc--;  
             };  
             if ( s < str16 ){  
               neigbase += adcpcal[v][p][s+1];  
               neigc++;  
               farbase -= adcpcal[v][p][s+1];  
               farc--;  
             };  
           } else {  
             farc++;  
             farbase += adcpcal[v][p][s];  
           };  
         };  
         //  
         // Now calculate the corrections  
         //  
         Float_t avefarbase = 0.;  
         if ( farc ) avefarbase = farbase/(Float_t)farc;  
         Float_t aveneigbase = 0.;  
         if ( neigc ) aveneigbase = neigbase/(Float_t)neigc;  
         //  
         if ( pulsc == 1 && farc && neigc ){  
           ctprecor[v][p][npre] = -avefarbase/(sigpulsed+fabs(avefarbase));  
           ctneigcor[v][p][npre] = fabs(aveneigbase-avefarbase)/(sigpulsed+fabs(avefarbase));        
           if ( debug ) printf(" Cross-talk correction View %i Plane %i Pre %i : pre-correction: %f neighbour strips correction %f \n",v,p,npre,ctprecor[v][p][npre],ctneigcor[v][p][npre]);  
         } else {  
           //  
           // did not find the pulsed strip or more than one pulsed strip found!  
           //  
           if ( debug ) printf(" Problems finding the cross-talk corrections: \n View %i Plane %i Pre %i number of pulsed strip %i \n Average faraway baseline %f number of strips %i Average neighbour baseline %f number of neighbour strips %i \n",v,p,npre,pulsc,avefarbase,farc,aveneigbase,neigc);  
         //  
         };  
       };  
       if ( debug ) printf(" \n ==================== \n");  
     };  
1016    };    };
1017    //    //
1018      delete glparam;
1019      //
1020    // Check the calculated corrections    // Check the calculated corrections
1021    //    //
1022    Int_t opre=0;    Int_t opre=0;
# Line 723  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T Line 1057  Int_t CaloLevel0::CalcCrossTalkCorr(GL_T
1057          };          };
1058        };        };
1059      };      };
1060    };    };  
1061    //    //
1062    return(0);    return(0);
1063  }  }
# Line 751  void CaloLevel0::FindBaseRaw(Int_t l, In Line 1085  void CaloLevel0::FindBaseRaw(Int_t l, In
1085    //    //
1086    Float_t minstrip = 100000.;    Float_t minstrip = 100000.;
1087    Float_t rms = 0.;    Float_t rms = 0.;
1088    base[l][m][pre] = 0.;    Int_t process = 0;
1089    qp = 0.;    Int_t onlmask[16];
1090    //    memset(onlmask, 0, 16*sizeof(Int_t));
1091    for (Int_t e = pre*16; e < (pre+1)*16 ; e++){    //
1092      if ( calgood[l][m][e] == 0. && obadmask[l][m][e] == 0 &&  dexy[l][m][e]-calped[l][m][e] < minstrip &&  dexy[l][m][e] > 0.) {    while ( process < 2 ){
1093        minstrip = dexy[l][m][e]-calped[l][m][e];      //
1094        rms = calthr[l][m][pre];      minstrip = 100000.;
1095      };      rms = 0.;
1096      qp += (dexy[l][m][e]-calped[l][m][e]-sbase[l][m][e]);      base[l][m][pre] = 0.;
1097    };      qp = 0.;
1098    //      //
1099    if ( debug && l==1 ){      Int_t spos = -1;
1100      printf("\n BASELINE CALCULATION for view %i pl %i pre %i: \n => minstrip %f rms %f \n => qp = %f \n",l,m,pre,minstrip,rms,qp);      Int_t ee = 0;
   };  
   if ( minstrip != 100000. ) {  
     Float_t strip6s = 0.;  
1101      for (Int_t e = pre*16; e < (pre+1)*16 ; e++){      for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
1102        if ( (dexy[l][m][e]-calped[l][m][e]) >= minstrip && (dexy[l][m][e]-calped[l][m][e]) <= (minstrip+rms) ) {        if ( calgood[l][m][e] == 0. && obadmask[l][m][e] == 0 &&  dexy[l][m][e]-calped[l][m][e] < minstrip &&  dexy[l][m][e] > 0. && onlmask[ee] == 0 ) {
1103          strip6s += 1.;          minstrip = dexy[l][m][e]-calped[l][m][e];
1104          base[l][m][pre] += (dexy[l][m][e] - calped[l][m][e]);          rms = calthr[l][m][pre];
1105        };          spos = ee;
       //  
       //  compression  
       //  
       if ( abs((int)(dexy[l][m][e]-calped[l][m][e])) <= (minstrip+rms) ) {  
         dexyc[l][m][e] = 0.;  
       } else {  
         dexyc[l][m][e] = dexy[l][m][e];  
1106        };        };
1107          ee++;
1108          qp += (dexy[l][m][e]-calped[l][m][e]-sbase[l][m][e]);
1109      };      };
1110      //      //
1111      nst = (Int_t)strip6s;      if ( debug && l==0 ){
1112      //        printf("\n BASELINE CALCULATION for view %i pl %i pre %i: \n => minstrip %f rms %f \n => qp = %f \n",l,m,pre,minstrip,rms,qp);
     if ( debug && l==1 ){  
       printf(" strip6s %f \n",strip6s);  
1113      };      };
1114      //  if ( strip6s >= 9. ){            if ( minstrip != 100000. ) {
1115      if ( strip6s >= 2. ){                  Float_t strip6s = 0.;
1116        Double_t arro = base[l][m][pre]/strip6s;        for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
1117        Float_t deci = 1000.*((float)arro - float(int(arro)));                            if ( (dexy[l][m][e]-calped[l][m][e]) >= minstrip && (dexy[l][m][e]-calped[l][m][e]) <= (minstrip+rms) ) {
1118        if ( deci < 500. ) {            strip6s += 1.;
1119          arro = double(int(arro));            base[l][m][pre] += (dexy[l][m][e] - calped[l][m][e]);
1120        } else {          };
1121          arro = 1. + double(int(arro));          //
1122            //  compression
1123            //
1124            //      if ( abs((int)(dexy[l][m][e]-calped[l][m][e])) <= (minstrip+rms) ) {
1125            //        dexyc[l][m][e] = 0.;
1126            //      } else {
1127            dexyc[l][m][e] = dexy[l][m][e];
1128              //    };
1129        };        };
       base[l][m][pre] = arro;  
       //  
       // if too few strips were used to determine the baseline check if it is comparable with the previous event, if not mark it as bad  
1130        //        //
1131        if ( debug && l==1 ) printf(" Calculated baseline: base %f sbase*1.02 %f \n",base[l][m][pre],1.02*sbase[l][m][pre]);        if ( strip6s == 1. && process < 1 ){
1132            onlmask[spos] = 1;
1133            process++;
1134            if ( debug ) printf(" Warning, only one strip to calculate baseline: minstrip %f rms %f spos %i l %i m %i pre %i \n",minstrip,rms,spos,l,m,pre);
1135            continue;
1136          };
1137          process += 2;
1138          nst = (Int_t)strip6s;
1139        //        //
1140        if ( strip6s < 4 && base[l][m][pre] > 1.02*sbase[l][m][pre] && sbase[l][m][pre] > 0. ){        if ( debug ){
1141          if ( debug ) printf(" Suspicious calculated baseline: base %f sbase*1.02 %f strip6s %i \n",base[l][m][pre],1.02*sbase[l][m][pre],(Int_t)strip6s);          printf(" strip6s %f \n",strip6s);
1142          base[l][m][pre] = 31000.;              };
1143          //        if ( strip6s >= 9. ){      
1144          if ( (strip6s >= 2. && process == 2) || (strip6s >= 9. && process > 2) ){    
1145            //if ( (strip6s >= 4. && process == 2) || (strip6s >= 9. && process > 2) ){        
1146            Double_t arro = base[l][m][pre]/strip6s;
1147            Float_t deci = 1000.*((float)arro - float(int(arro)));                
1148            if ( deci < 500. ) {
1149              arro = double(int(arro));
1150            } else {
1151              arro = 1. + double(int(arro));
1152            };
1153            base[l][m][pre] = arro;
1154            //
1155            // if too few strips were used to determine the baseline check if it is comparable with the previous event, if not mark it as bad
1156            //
1157            if ( debug && process > 2 ) printf(" AGH low strip value was discarded process %i strip6s %f minstrip %f rms %f spos %i\n",process,strip6s,minstrip,rms,spos);
1158            if ( debug ) printf(" Calculated baseline: base %f sbase-0.02*qp %f \n",base[l][m][pre],(-qp*0.02+sbase[l][m][pre]));
1159            //
1160            if ( strip6s < 4 && base[l][m][pre] > (-0.015*qp+sbase[l][m][pre]) && sbase[l][m][pre] > 0. ){
1161              if ( debug ) printf(" Suspicious calculated baseline: base %f sbase-0.02*qp %f strip6s %i \n",base[l][m][pre],(-qp*0.02+sbase[l][m][pre]),(Int_t)strip6s);
1162              base[l][m][pre] = 31000.;    
1163              for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
1164                dexyc[l][m][e] = dexy[l][m][e];
1165              };      
1166            };
1167          } else {
1168            base[l][m][pre] = 31000.;
1169            for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
1170              dexyc[l][m][e] = dexy[l][m][e];
1171            };
1172        };        };
1173      } else {      } else {
1174          process += 2;
1175        base[l][m][pre] = 31000.;        base[l][m][pre] = 31000.;
1176        for (Int_t e = pre*16; e < (pre+1)*16 ; e++){        for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
1177          dexyc[l][m][e] = dexy[l][m][e];          dexyc[l][m][e] = dexy[l][m][e];
1178        };        };
1179      };      };
   } else {  
     base[l][m][pre] = 31000.;  
1180    };    };
1181  }  }
1182    
# Line 827  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1190  Int_t CaloLevel0::Calibrate(Int_t ei){
1190    //    //
1191    clevel2->nsatstrip = 0.;    clevel2->nsatstrip = 0.;
1192    Int_t val = 0;    Int_t val = 0;
1193    Int_t del = 1100;    Int_t del = 1000;
1194    for (Int_t sec = 0; sec < 4; sec++){    for (Int_t sec = 0; sec < 4; sec++){
1195      for (Int_t dsec = 0; dsec < 7; dsec++){      for (Int_t dsec = 0; dsec < 7; dsec++){
1196        val = (Int_t)de->calselftrig[sec][dsec];        val = (Int_t)de->calselftrig[sec][dsec];
# Line 836  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1199  Int_t CaloLevel0::Calibrate(Int_t ei){
1199      };      };
1200    };    };
1201    val = 0;    val = 0;
1202    del = 1100;    del = 1000;
1203    if ( clevel2->trigty != 2. ){    if ( clevel2->trigty < 2. ){
1204      Bool_t ck = false;      Bool_t ck = false;
1205      for (Int_t sec = 0; sec < 4; sec++){      for (Int_t sec = 0; sec < 4; sec++){
1206        val = (Int_t)de->calselftrig[sec][6];        val = (Int_t)de->calselftrig[sec][6];
1207        del = delay(val);        del = delay(val);
1208        if ( del < 1100 ){        if ( del < 1000 ){
1209          clevel2->wartrig = 0.;                clevel2->wartrig = 0.;      
1210          clevel2->trigty = 3.;          clevel2->trigty = 3.;
1211          ck = true;          ck = true;
1212          break;          break;
1213        };        };
1214      };      };
1215      if ( !ck ) clevel2->wartrig = 100.;            //    if ( !ck ) clevel2->wartrig = 100.;      
1216    } else {    } else {
1217      Bool_t ck = false;      Bool_t ck = false;
1218      for (Int_t sec = 0; sec < 4; sec++){      for (Int_t sec = 0; sec < 4; sec++){
1219        val = (Int_t)de->calselftrig[sec][6];        val = (Int_t)de->calselftrig[sec][6];
1220        del = delay(val);        del = delay(val);
1221        if ( del < 1100 ){        if ( del < 1000 ){
1222          clevel2->wartrig = 0.;                clevel2->wartrig = 0.;      
1223          ck = true;          ck = true;
1224        };        };
# Line 872  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1235  Int_t CaloLevel0::Calibrate(Int_t ei){
1235    Float_t ener;    Float_t ener;
1236    Int_t doneb = 0;    Int_t doneb = 0;
1237    Int_t donec = 0;    Int_t donec = 0;
1238    Int_t ck = 0;    Int_t ck[2][22][6];
1239      memset(ck, 0, 2*22*6*sizeof(Int_t));
1240    Int_t ipre = 0;    Int_t ipre = 0;
1241    Int_t ip[3] = {0};    //  Int_t ip[3] = {0};
1242      Int_t ip[3] = {0,0,0};
1243      Int_t ipp = 0;
1244    Float_t base0, base1, base2;    Float_t base0, base1, base2;
1245    base0 = 0.;    base0 = 0.;
1246    base1 = 0.;    base1 = 0.;
1247    base2 = 0.;    base2 = 0.;
1248    Float_t qpre[6] = {0.,0.,0.,0.,0.,0.};    Float_t qpre[2][22][6];
1249      memset(qpre, 0, 2*22*6*sizeof(Float_t));
1250    Float_t ene[96];    Float_t ene[96];
1251    Int_t chdone[4] = {0,0,0,0};    Int_t chdone[4] = {0,0,0,0};
1252    Int_t pe = 0;    Int_t pe = 0;
1253    //    //
1254    Float_t ener0 = 0.;    Float_t ener0 = 0.;
1255    Float_t cbase0 = 0.;    Float_t cbase0 = 0.;
1256      Float_t totbase = 0.;
1257      Float_t totped = 0.;
1258    Bool_t pproblem = false;    Bool_t pproblem = false;
1259      Bool_t negbase = false;
1260    //    //
1261    Float_t tim = 0.;    Float_t tim = 0.;
1262    Int_t plo = 0;    Int_t plo = 0;
# Line 900  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1270  Int_t CaloLevel0::Calibrate(Int_t ei){
1270        //        //
1271        // determine the section number          // determine the section number  
1272        //        //
1273          negbase = false;
1274        se = 5;        se = 5;
1275        if (l == 0 && m%2 == 0) se = 3;        if (l == 0 && m%2 == 0) se = 3;
1276        if (l == 0 && m%2 != 0) se = 2;        if (l == 0 && m%2 != 0) se = 2;
# Line 925  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1296  Int_t CaloLevel0::Calibrate(Int_t ei){
1296          };          };
1297          clevel2->perr[se] = 0;          clevel2->perr[se] = 0;
1298          if ( de->perror[se] != 0 ){          if ( de->perror[se] != 0 ){
1299            clevel2->perr[se] = 1;            clevel2->perr[se] = (Int_t)de->perror[se];
1300            pe++;            pe++;
1301          };          };
1302          clevel2->swerr[se] = 0;          clevel2->swerr[se] = 0;
# Line 941  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1312  Int_t CaloLevel0::Calibrate(Int_t ei){
1312          pre = -1;          pre = -1;
1313          //          //
1314          for (Int_t nn = 0; nn < 96; nn++){                            for (Int_t nn = 0; nn < 96; nn++){                  
1315            ene[nn] = 0.;            //      ene[nn] = 0.;
1316            dexy[l][m][nn] = de->dexy[l][m][nn] ;            dexy[l][m][nn] = de->dexy[l][m][nn] ;
1317            dexyc[l][m][nn] = de->dexyc[l][m][nn] ;            dexyc[l][m][nn] = de->dexyc[l][m][nn] ;
1318          };          };
# Line 953  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1324  Int_t CaloLevel0::Calibrate(Int_t ei){
1324          Int_t nstt[2];          Int_t nstt[2];
1325          Float_t rqp[2];          Float_t rqp[2];
1326          for (Int_t i = 0; i < 3; i++){          for (Int_t i = 0; i < 3; i++){
1327            nstt[0] = 0;            nstt[0] = 1000;
1328            nstt[1] = 0;            nstt[1] = 1000;
1329            rqp[0] = 0.;            rqp[0] = 0.;
1330            rqp[1] = 0.;            rqp[1] = 0.;
1331            for (Int_t j = 0; j < 2; j++){            for (Int_t j = 0; j < 2; j++){
# Line 983  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1354  Int_t CaloLevel0::Calibrate(Int_t ei){
1354            //            //
1355            // if we are able to calculate the baseline with more than 3 strips on one pre and not in the other one choose the pre with more calculated strips            // if we are able to calculate the baseline with more than 3 strips on one pre and not in the other one choose the pre with more calculated strips
1356            //            //
1357            if ( nstt[0] < 4 && nstt[1] >= 4 ) base[l][m][pre-1] = 31000.;            if ( nstt[0] < 4 && nstt[1] >= 4 && nstt[0] != 1000 && nstt[1] != 1000 ) base[l][m][pre-1] = 31000.;
1358            if ( nstt[0] >= 4 && nstt[1] < 4 ) base[l][m][pre] = 31000.;            if ( nstt[0] >= 4 && nstt[1] < 4 && nstt[0] != 1000 && nstt[1] != 1000 ) base[l][m][pre] = 31000.;
1359  //        //            //      //
1360  //        // if we are NOT able to calculate the baseline with more than 3 strips on both pres take the baseline (if any) of the one which has less energy            //      // if we are NOT able to calculate the baseline with more than 3 strips on both pres take the baseline (if any) of the one which has less energy
1361  //        //            //      //
1362  //        if ( nstt[0] < 4 && nstt[1] < 4 ){            //      if ( nstt[0] < 4 && nstt[1] < 4 ){
1363  //          if ( rqp[0] >= rqp[1] ) base[l][m][pre-1] = 31000.;            //        if ( rqp[0] >= rqp[1] ) base[l][m][pre-1] = 31000.;
1364  //          if ( rqp[0] < rqp[1] ) base[l][m][pre] = 31000.;            //        if ( rqp[0] < rqp[1] ) base[l][m][pre] = 31000.;
1365  //        };            //      };
1366          };          };
1367          //          //
1368          // run over strips          // run over strips
1369          //          //
1370          pre = -1;          pre = -1;
1371          ener0 = 0.;          ener0 = 0.;
1372            totbase = 0.;
1373            totped = 0.;
1374          for (Int_t i = 0 ; i < 3 ; i++){          for (Int_t i = 0 ; i < 3 ; i++){
1375            ip[i] = 0;            ip[i] = 0;
1376            for (Int_t n = i*32 ; n < (i+1)*32 ; n++){                            for (Int_t n = i*32 ; n < (i+1)*32 ; n++){                
1377              if (n%16 == 0) {              if (n%16 == 0) {
               ck = 0;  
1378                done = 0;                done = 0;
1379                doneb = 0;                doneb = 0;
1380                donec = 0;                donec = 0;
1381                pre++;                pre++;
1382                qpre[pre] = 0.;                ck[l][m][pre] = 0;
1383                  qpre[l][m][pre] = 0.;
1384              };              };
1385              //              //
1386              // baseline check and calculation              // baseline check and calculation
# Line 1016  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1389  Int_t CaloLevel0::Calibrate(Int_t ei){
1389              //              //
1390              if ( !done ){              if ( !done ){
1391                if ( (base[l][m][pre] == 31000. || base[l][m][pre] == 0.) ){                if ( (base[l][m][pre] == 31000. || base[l][m][pre] == 0.) ){
1392                  ck = 1;                  ck[l][m][pre] = 1;
1393                  if (pre%2 == 0) {                  if (pre%2 == 0) {
1394                    ip[i] = pre + 1;                    ip[i] = pre + 1;
1395                  } else {                  } else {
# Line 1024  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1397  Int_t CaloLevel0::Calibrate(Int_t ei){
1397                  };                  };
1398                  if ( (base[l][m][ip[i]] == 31000. || base[l][m][ip[i]] == 0. || !crosst ) ){                  if ( (base[l][m][ip[i]] == 31000. || base[l][m][ip[i]] == 0. || !crosst ) ){
1399                    //                    //
1400                    ck = 2;                    ck[l][m][pre] = 2;
1401                    if ( sbase[l][m][pre] == 31000. || sbase[l][m][pre] == 0. ) {                    if ( sbase[l][m][pre] == 31000. || sbase[l][m][pre] == 0. ) {
1402                      ck = 3;                      ck[l][m][pre] = 3;
1403                    };                    };
1404                  };                  };
                 done = 1;  
1405                };                };
1406                  done = 1;
1407              };                                };                  
1408              //              //
1409              // CALIBRATION ALGORITHM              // CALIBRATION ALGORITHM
1410              //              //
1411              if ( !doneb ){              if ( !doneb ){
1412                if ( debug ) printf(" ck is %i \n",ck);                if ( debug ) printf(" ck[l][m][pre] is %i \n",ck[l][m][pre]);
1413                switch (ck) {                switch (ck[l][m][pre]) {
1414                case 0:                case 0:
1415                  base0 = base[l][m][pre];                  base0 = base[l][m][pre];
1416                  base2 = calbase[l][m][pre];                  base2 = calbase[l][m][pre];
# Line 1065  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1438  Int_t CaloLevel0::Calibrate(Int_t ei){
1438              ener = dexyc[l][m][n];              ener = dexyc[l][m][n];
1439              ener0 += ener;              ener0 += ener;
1440              clevel1->estrip[n][m][l] = 0.;              clevel1->estrip[n][m][l] = 0.;
1441                totbase += de->base[l][m][pre];
1442                totped += fabs(calped[l][m][n]);
1443                if ( de->base[l][m][pre] < 0 ) negbase = true;
1444              if ( base0>0 && base0 < 30000. ){              if ( base0>0 && base0 < 30000. ){
1445                //              if ( !donec && (base0 - base1 + base2) != 0. ){                //
1446                //                sbase[l][m][pre] = base0 - base1 + base2;                // save the baseline only if the energy release is "small"
1447                if ( !donec && (base0 + base1 - base2) != 0. ){                //
1448                  sbase[l][m][pre] = base0 + base1 - base2;                if ( !donec && (base0 + base1 - base2) != 0. && (n+1)%16==0 ){
1449                    if ( qpre[l][m][pre] < 200. ) sbase[l][m][pre] = base0 + base1 - base2;
1450                  donec = 1;                  donec = 1;
1451                };                };
1452                if ( ener > 0. ){                if ( ener > 0. ){
# Line 1077  Int_t CaloLevel0::Calibrate(Int_t ei){ Line 1454  Int_t CaloLevel0::Calibrate(Int_t ei){
1454                  //                  //
1455                  // OK, now in estrip we have the energy deposit in MIP of all the strips for this event (at the end of loops of course)                  // OK, now in estrip we have the energy deposit in MIP of all the strips for this event (at the end of loops of course)
1456                  //                  //
1457                  qpre[pre] += clevel1->estrip[n][m][l];                  if ( clevel1->estrip[n][m][l] > 0. ) qpre[l][m][pre] += clevel1->estrip[n][m][l];
1458                  //                  //
1459                  //                  //
1460                };                };
1461              };              };
1462            };            };
1463            if ( crosst ){          };
1464              if (ck == 1){          //
1465                if (ip[i]%2 == 0) {          // check if there were problems with 5.7 or glitches in the power supply
1466                  ipre = ip[i] + 1;          //
1467            if ( ((ener0 == 0. && cbase0 == 0.) || negbase || totbase > 196600. || totped < 1. ) && !pproblem && clevel2->perr[se] == 0){   // check pedestal and baseline values for one plane, if all zeros calibration is not valid (calorimeter power problems) [8th data reduction bug, fixed on 25/11/2009 by E.M.]
1468              if ( verbose ) printf(" L0 entry %i : calorimeter power problems! event marked as bad perr %f swerr %X view %i plane %i \n",ei,de->perror[se],de->stwerr[se],l,m);
1469              pproblem = true;
1470              pe++;
1471            };
1472            //
1473          } else {
1474            for (Int_t nn = 0; nn < 96; nn++){                  
1475              clevel1->estrip[nn][m][l] = 0.;
1476            };
1477          };
1478        };
1479      };
1480      //
1481      // run over views and planes to apply crosstalk corrections
1482      //
1483      for (Int_t l = 0; l < 2; l++){
1484        for (Int_t m = 0; m < 22; m++){
1485          //
1486          // determine the section number  
1487          //
1488          se = 5;
1489          if (l == 0 && m%2 == 0) se = 3;
1490          if (l == 0 && m%2 != 0) se = 2;
1491          if (l == 1 && m%2 != 0) se = 1;
1492          if (l == 1 && m%2 == 0) se = 0;          
1493          //
1494          // check for any error in the event
1495          //
1496          if ( clevel2->crc[se] == 0 && (clevel1->good2 == 1 || clevel2->trigty >= 2) ){
1497            //
1498            // Cross-talk corrections  
1499            //
1500            if ( crosst ){
1501              //
1502              // energy on silicon ladders
1503              //
1504              Float_t qsi[3];
1505              qsi[0] = qpre[l][m][0]+qpre[l][m][1];
1506              qsi[1] = qpre[l][m][2]+qpre[l][m][3];
1507              qsi[2] = qpre[l][m][4]+qpre[l][m][5];      
1508              //
1509              for ( pre = 1; pre < 6; pre += 2 ){  
1510                Int_t ladder = (pre - 1)/2;
1511                //
1512                // If the noselfct flag is set the strip doesn't suffer the self crosstalk due to electronics so we must subtract some energy
1513                //
1514                if ( noselfct ){
1515                  for (Int_t j = ladder*32 ; j < (ladder+1)*32 ; j++){
1516                    ipre = j/16 ;  
1517                    if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] -=  clevel1->estrip[j][m][l] * ctprecor[l][m][ipre];
1518                  };
1519                };
1520                //
1521                // Using the neighbour pre baseline
1522                //
1523                if (ck[l][m][pre] == 1 || ck[l][m][pre-1] == 1){
1524                  //
1525                  // pre-amplifier effect on baseline when using the neighbour pre (ck=1)
1526                  //
1527                  if (ck[l][m][pre] == 1){
1528                    ipre = pre;
1529                    ipp = pre - 1;
1530                } else {                } else {
1531                  ipre = ip[i] - 1;                  ipre = pre - 1;
1532                    ipp = pre;
1533                };                };
1534                  Int_t it = 0;
1535                  Float_t nqpre = 0.;
1536                  //
1537                  if ( debug ) printf(" CK1 Limit for while: 0.07 \n");
1538                for (Int_t j = ipre*16 ; j < (ipre+1)*16 ; j++){                for (Int_t j = ipre*16 ; j < (ipre+1)*16 ; j++){
1539                  if ( !ctground ){                  if ( !ctground ){
1540                    clevel1->estrip[j][m][l] += (qpre[ipre] - qpre[ip[i]]) * ctprecor[l][m][ipre];                    if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] += - qpre[l][m][ipp] * ctprecor[l][m][ipp];
1541                  } else {                  } else {
1542                    clevel1->estrip[j][m][l] += (qpre[ipre] - qpre[ip[i]]) * 0.00478;                    if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] += - qpre[l][m][ipp] * 0.00478;
1543                  };                  };
1544                    if ( clevel1->estrip[j][m][l] > 0. ) nqpre += clevel1->estrip[j][m][l] ;
1545                };                };
1546                  qpre[l][m][ipre] = nqpre;
1547                  nqpre = 0.;
1548                  Float_t deltaqpre = qpre[l][m][ipre];          
1549                  //
1550                  // these values are empirically determined, usually the routine converge due to deltaqsi and the latest applied correction is based on less than 1 mip
1551                  //
1552                  while ( it < 10 && deltaqpre > 0.07 ){
1553                    nqpre = 0.;
1554                    for (Int_t j = ipre*16 ; j < (ipre+1)*16 ; j++){
1555                      if ( !ctground ){
1556                        if ( debug ) printf(" CK1 pre correction: iteration %i deltaqpre %f  ctprecor %f  TOTAL CORRECTION %f \n",it,deltaqpre,ctprecor[l][m][ipre],deltaqpre * ctprecor[l][m][ipre]);
1557                        if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] += deltaqpre * ctprecor[l][m][ipre];
1558                      } else {
1559                        if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] += deltaqpre * 0.00478;
1560                      };
1561                      if ( clevel1->estrip[j][m][l] > 0. ) nqpre += clevel1->estrip[j][m][l] ;
1562                    };
1563                    if ( ctground ) it = 100;
1564                    it++;
1565                    deltaqpre = nqpre - qpre[l][m][ipre];
1566                    if ( debug ) printf(" CK1 BEFORE: qpre %f \n",qpre[l][m][ipre]);  
1567                    qpre[l][m][ipre] = nqpre;
1568                    if ( debug ) printf(" CK1 AFTER: qpre %f \n",qpre[l][m][ipre]);  
1569                  };
1570                  //
1571              };              };
1572              if (ck == 2){              //
1573                for (Int_t j = i*32 ; j < (i+1)*32 ; j++){              // No baseline calculation due to high energy release
1574                  ipre = j/16 + 1;              //
1575                  if ( !ctground ){              if (ck[l][m][pre] == 2 && ck[l][m][pre-1] == 2){
1576                    clevel1->estrip[j][m][l] +=  qpre[ipre] * ctprecor[l][m][ipre];                //
1577                  // y^
1578                  //  |
1579                  //  |    6 7 8
1580                  //  |    3 4 5  
1581                  //  |    0 1 2
1582                  //  | --------------------------------------> x
1583                  //
1584                  Int_t si1 = 0;
1585                  Int_t si2 = 0;
1586                  Int_t si3 = 0;
1587                  if ( l == 0 ){
1588                    if ( ladder == 0 ){
1589                      si1 = 0;
1590                      si2 = 3;
1591                      si3 = 6;
1592                    };
1593                    if ( ladder == 1 ){
1594                      si1 = 1;
1595                      si2 = 4;
1596                      si3 = 7;
1597                    };
1598                    if ( ladder == 2 ){
1599                      si1 = 2;
1600                      si2 = 5;
1601                      si3 = 8;
1602                    };
1603                  } else {
1604                    if ( ladder == 0 ){
1605                      si1 = 0;
1606                      si2 = 1;
1607                      si3 = 2;
1608                    };
1609                    if ( ladder == 1 ){
1610                      si1 = 3;
1611                      si2 = 4;
1612                      si3 = 5;
1613                    };
1614                    if ( ladder == 2 ){
1615                      si1 = 6;
1616                      si2 = 7;
1617                      si3 = 8;
1618                    };
1619                  };
1620                  //
1621                  // Find the energy distribution along the considered plane looking at the two sandwiching plane of the other view.
1622                  //
1623                  Float_t sied[3] = {0.,0.,0.};
1624                  Int_t othv = !l;
1625                  Int_t othpl1 = m - 1;
1626                  Int_t othpl2 = m + 1;
1627                  Float_t oprof[3] = {0.,0.,0.};
1628                  for(Int_t s=0; s<3; s++){
1629                    for(Int_t t=(s*32); t<32*(s + 1); t++){      
1630                      if ( othpl1 > -1 ) {
1631                        oprof[s] += clevel1->estrip[othv][othpl1][t];
1632                      };
1633                      if ( othpl2 < 22 ) {
1634                        oprof[s] += clevel1->estrip[othv][othpl2][t];
1635                      };          
1636                    };
1637                  };
1638                  Float_t otote = fabs(oprof[0]) + fabs(oprof[1]) + fabs(oprof[2]);
1639                  for(Int_t g=0; g<3; g++){
1640                    if ( otote > 0. ){
1641                      sied[g] = fabs(oprof[g])/otote;
1642                  } else {                  } else {
1643                    clevel1->estrip[j][m][l] +=  qpre[ipre] * 0.00478;                    sied[g] = 1./3.;
1644                  };                  };
1645                };                };
1646                  //
1647                  //
1648                  //
1649                  Int_t it = 0;
1650                  Int_t jpre = 0;
1651                  Float_t nqsi = 0.;
1652                  Float_t snqsi = qsi[ladder];
1653                  Float_t nqpre[2] = {0.,0.};
1654                  Float_t deltaqsi = qsi[ladder];
1655                  Float_t deltaqpre[2];
1656                  deltaqpre[0] = qpre[l][m][pre-1];
1657                  deltaqpre[1] = qpre[l][m][pre];
1658                  //
1659                  if ( debug ) printf(" Limit for while: 0.07 it < 10 \n");
1660                  //
1661                  // these values are empirically determined, usually the routine converge due to deltaqsi and the latest applied correction is based on less than 1 mip
1662                  //
1663                  while ( it < 10 && (deltaqsi > 0.07 || deltaqpre[0] > 0.07 || deltaqpre[1] > 0.07) ){
1664                    nqsi = 0.;
1665                    nqpre[0] = 0.;
1666                    nqpre[1] = 0.;
1667                    for (Int_t j = ladder*32 ; j < (ladder+1)*32 ; j++){
1668                      ipre = 0;
1669                      if ( j > (ladder*32)+15 ) ipre = 1;
1670                      jpre = j/16 ;
1671                      //
1672                      // Silicon effect on the baseline when using the same pre previous baseline (ck = 2) + pre-amply effect
1673                      //          
1674                      if ( !ctground ){
1675                        if ( debug ) printf(" silicon correction: iteration %i deltaqsi[%i] %f ctsicor %f %f %f sied %f %f %f si %i %i %i TOTAL CORRECTION %f \n",it,ladder,deltaqsi,ctsicor[l][m][si1],ctsicor[l][m][si2],ctsicor[l][m][si3],sied[0],sied[1],sied[2],si1,si2,si3,deltaqsi * (ctsicor[l][m][si1] * sied[0] + ctsicor[l][m][si2] * sied[1] + ctsicor[l][m][si3] * sied[2]));
1676                        if ( debug ) printf(" pre correction: iteration %i deltaqpre[0] %f deltaqpre[1] %f ctprecor %f  TOTAL CORRECTION %f \n",it,deltaqpre[0],deltaqpre[1],ctprecor[l][m][jpre],deltaqpre[ipre] * ctprecor[l][m][jpre]);
1677                        if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] +=  (deltaqsi * (ctsicor[l][m][si1] * sied[0] + ctsicor[l][m][si2] * sied[1] + ctsicor[l][m][si3] * sied[2])/mip[l][m][j]) + deltaqpre[ipre] * ctprecor[l][m][jpre];
1678                      } else {
1679                        if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] +=  0. + qpre[l][m][jpre] * 0.00478; // no correction
1680                      };
1681                      if ( clevel1->estrip[j][m][l] > 0. ) nqsi += clevel1->estrip[j][m][l] ;
1682                      if ( clevel1->estrip[j][m][l] > 0. ) nqpre[ipre] += clevel1->estrip[j][m][l] ;
1683                    };      
1684                    if ( ctground ) it = 100;
1685                    deltaqsi = nqsi-snqsi;
1686                    snqsi = nqsi;
1687                    it++;
1688                    deltaqpre[0] = nqpre[0] - qpre[l][m][pre-1];
1689                    deltaqpre[1] = nqpre[1] - qpre[l][m][pre];
1690                    if ( debug ) printf(" BEFORE: qpre 0 %f qpre 1 %f \n",qpre[l][m][pre-1],qpre[l][m][pre]);  
1691                    qpre[l][m][pre-1] = nqpre[0];
1692                    qpre[l][m][pre] = nqpre[1];    
1693                    if ( debug ) printf(" AFTER: qpre 0 %f qpre 1 %f \n",qpre[l][m][pre-1],qpre[l][m][pre]);  
1694                  };
1695                  //
1696                  //
1697                  //
1698    //            for (Int_t j = ladder*32 ; j < (ladder+1)*32 ; j++){
1699    //              ipre = j/16 ;          
1700    //              //
1701    //              // pre-amplifier effect on baseline when using the same pre previous event baseline (ck=2)
1702    //              //
1703    //              if ( !ctground ){
1704    //                if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] +=  qpre[l][m][ipre] * ctprecor[l][m][ipre];
1705    //              } else {
1706    //                if ( clevel1->estrip[j][m][l] != 0. ) clevel1->estrip[j][m][l] +=  qpre[l][m][ipre] * 0.00478;
1707    //              };
1708    //            };
1709              };              };
1710            };            };
1711          };          };
1712          //        };
1713          if ( ener0 == 0. && cbase0 == 0. && !pproblem && clevel2->perr[se] == 0){        //
1714            if ( verbose ) printf(" L0 entry %i : calorimeter power problems! event marked as bad perr %f swerr %X view %i plane %i \n",ei,de->perror[se],de->stwerr[se],l,m);        Int_t j4 = -4;
1715            pproblem = true;        Int_t jjj = -3;
1716            pe++;        Int_t jj = -2;
1717          };        Int_t jjpre = -1;
1718          //        Int_t jjjpre = -1;
1719          Int_t j4 = -4;        memset(ene, 0, 96*sizeof(Float_t));
1720          Int_t jjj = -3;        for (Int_t j = 0 ; j < 100 ; j++){          
1721          Int_t jj = -2;          jj++;
1722          Int_t jjpre = -1;          jjj++;
1723          Int_t jjjpre = -1;          j4++;
1724          for (Int_t j = 0 ; j < 100 ; j++){                  if ( j < 96 ) ene[j] = clevel1->estrip[j][m][l];
1725            jj++;          if ( crosst ){
1726            jjj++;            //
1727            j4++;            // "Real" crosstalk effect on the neighbour strips respect to the one which have seen the energy deposit
1728            if ( j < 96 ) ene[j] = clevel1->estrip[j][m][l];            //
1729            if ( crosst ){            if ( jj >= 0 && jj < 96 ){
1730              if ( jj >= 0 && jj < 96 ){              if ( !ctground ){
1731                if ( !ctground ){                if ( jj%16 == 0 ) jjpre++;              
1732                  if ( jj%16 == 0 ) jjpre++;                            if ( jj != 0 && jj != 32 && jj != 64 && ene[jj-1] != 0. ) ene[jj-1] += -clevel1->estrip[jj][m][l] * ctneigcor[l][m][jjpre];
1733                  if ( jj != 0 && jj != 32 && jj != 64 ) ene[jj-1] += -clevel1->estrip[jj][m][l] * ctneigcor[l][m][jjpre];                if ( jj != 31 && jj != 63 && jj != 95 && ene[jj+1] != 0. ) ene[jj+1] += -clevel1->estrip[jj][m][l] * ctneigcor[l][m][jjpre];                      
1734                  if ( jj != 31 && jj != 63 && jj != 95 ) ene[jj+1] += -clevel1->estrip[jj][m][l] * ctneigcor[l][m][jjpre];                                    } else {
1735                } else {                if ( jj != 0 && jj != 32 && jj != 64 && ene[jj-1] != 0. ) ene[jj-1] += -clevel1->estrip[jj][m][l] * 0.01581;
1736                  if ( jj != 0 && jj != 32 && jj != 64 ) ene[jj-1] += -clevel1->estrip[jj][m][l] * 0.01581;                if ( jj != 31 && jj != 63 && jj != 95 && ene[jj+1] != 0. ) ene[jj+1] += -clevel1->estrip[jj][m][l] * 0.01581;                    
                 if ( jj != 31 && jj != 63 && jj != 95 ) ene[jj+1] += -clevel1->estrip[jj][m][l] * 0.01581;                        
               };  
1737              };              };
1738              if ( jjj >= 0 && jjj < 96 ){            };
1739                if ( !ctground ){            if ( jjj >= 0 && jjj < 96 ){
1740                  if ( jjj%16 == 0 ) jjjpre++;                        if ( !ctground ){
1741                  if ( jjj != 0 && jjj != 32 && jjj != 64 ) clevel1->estrip[jjj-1][m][l] +=  -ene[jjj] * ctneigcor[l][m][jjjpre];                if ( jjj%16 == 0 ) jjjpre++;            
1742                  if ( jjj != 31 && jjj != 63 && jjj != 95 ) clevel1->estrip[jjj+1][m][l] +=  -ene[jjj] * ctneigcor[l][m][jjjpre];                if ( jjj != 0 && jjj != 32 && jjj != 64 && clevel1->estrip[jjj-1][m][l] != 0. ) clevel1->estrip[jjj-1][m][l] +=  -ene[jjj] * ctneigcor[l][m][jjjpre];
1743                } else {                if ( jjj != 31 && jjj != 63 && jjj != 95 && clevel1->estrip[jjj+1][m][l] !=0. ) clevel1->estrip[jjj+1][m][l] +=  -ene[jjj] * ctneigcor[l][m][jjjpre];
1744                  if ( jjj != 0 && jjj != 32 && jjj != 64 ) clevel1->estrip[jjj-1][m][l] +=  -ene[jjj] * 0.01581;              } else {
1745                  if ( jjj != 31 && jjj != 63 && jjj != 95 ) clevel1->estrip[jjj+1][m][l] +=  -ene[jjj] * 0.01581;                if ( jjj != 0 && jjj != 32 && jjj != 64 && clevel1->estrip[jjj-1][m][l] != 0. ) clevel1->estrip[jjj-1][m][l] +=  -ene[jjj] * 0.01581;
1746                };                if ( jjj != 31 && jjj != 63 && jjj != 95 && clevel1->estrip[jjj+1][m][l] != 0. ) clevel1->estrip[jjj+1][m][l] +=  -ene[jjj] * 0.01581;
1747              };              };
1748            };            };
1749            if ( j4 >= 0 && j4 < 96 ){          };
1750            if ( j4 >= 0 && j4 < 96 ){
1751              //
1752              // CALOLEVEL1 CODING AND FILLING
1753              //
1754              //
1755              // NOTICE: THE FOLLOWING LINE EXCLUDE ALL STRIPS FOR WHICH THE RMS*4 IS GREATER THAN 26 !!! <=============== IMPORTANT! =================> // not true anymore, now it trust parameter files
1756              //
1757              if ( obadmask[l][m][j4] == 1 || clevel1->estrip[j4][m][l] <= clevel1->emin || clevel1->estrip[j4][m][l] <= memin[l][m][j4] || calrms[l][m][j4] > maxrms[l][m] || (l==0 && m == 18 && mask18 ) ){
1758                clevel1->estrip[j4][m][l] = 0.;
1759              };
1760              //
1761              if ( debug ) printf(" STRIP: view %i plane %i strip %i energy: %f \n",l,m,j4,clevel1->estrip[j4][m][l]);
1762              //
1763              // code and save the energy for each strip in svstrip    
1764              //
1765              if ( clevel1->estrip[j4][m][l] > clevel1->emin ){
1766              //              //
1767              // NOTICE: THE FOLLOWING LINE EXCLUDE ALL STRIPS FOR WHICH THE RMS*4 IS GREATER THAN 26 !!! <=============== IMPORTANT! =================>              Float_t savel1 = clevel1->estrip[j4][m][l];
1768              //              //
1769              if ( obadmask[l][m][j4] == 1 || clevel1->estrip[j4][m][l] <= clevel1->emin || calrms[l][m][j4] > 26 ){              if ( m == 18 && l == 0 ){
1770                clevel1->estrip[j4][m][l] = 0.;                if ( debug ) printf(" Resetting plane 18X for variable calculation: view %i plane %i strip %i \n",l,m,j4);
1771                  clevel1->estrip[j4][m][l] = 0.; // SAVE STRIPS VALUE FOR PLANE 18 X but DO NOT USE IT FOR VARIABLE CALCULATION
1772                };
1773                if ( debug ) printf(" HIT STRIP: view %i plane %i strip %i energy: %f \n",l,m,j4,clevel1->estrip[j4][m][l]);
1774                //      if ( dexyc[l][m][j4] == 32767. ){
1775                if ( dexyc[l][m][j4] > 32000. ){
1776                  savel1 += 5000.;
1777                  clevel2->nsatstrip += 1.;
1778              };              };
             //  
             // code and save the energy for each strip in svstrip  
1779              //              //
1780              if ( clevel1->estrip[j4][m][l] > clevel1->emin ){              tim = 100000.;
1781                //              plo = m;
1782                Float_t savel1 = clevel1->estrip[j4][m][l];              fbi = 0;
1783                if ( dexyc[l][m][j4] == 32767. ){              if ( savel1 > 0.99995 ){
1784                  savel1 += 5000.;                tim = 10000.;
                 clevel2->nsatstrip += 1.;  
               };  
               //  
               tim = 100000.;  
1785                plo = m;                plo = m;
1786                  fbi = 1;
1787                };
1788                if ( savel1 > 9.9995 ){
1789                  tim = 1000.;
1790                  plo = 22 + m;
1791                  fbi = 1;
1792                };
1793                if ( savel1 > 99.995 ){
1794                  tim = 100.;
1795                  plo = 22 + m;
1796                fbi = 0;                fbi = 0;
1797                if ( savel1 > 0.99995 ){              };
1798                  tim = 10000.;              if ( savel1 > 999.95 ){
1799                  plo = m;                tim = 10.;
1800                  fbi = 1;                plo = 44 + m;
1801                };                fbi = 0;
1802                if ( savel1 > 9.9995 ){              };
1803                  tim = 1000.;              if ( savel1 > 9999.5 ){
1804                  plo = 22 + m;                tim = 1.;
1805                  fbi = 1;                plo = 66 + m;
1806                };                fbi = 0;
1807                if ( savel1 > 99.995 ){              };
1808                  tim = 100.;              //
1809                  plo = 22 + m;              cle = (Int_t)lroundf(tim*savel1);
1810                  fbi = 0;              //
1811                };              if ( l == 0 ){
               if ( savel1 > 999.95 ){  
                 tim = 10.;  
                 plo = 44 + m;  
                 fbi = 0;  
               };  
               if ( savel1 > 9999.5 ){  
                 tim = 1.;  
                 plo = 66 + m;  
                 fbi = 0;  
               };  
               //  
               cle = (Int_t)lroundf(tim*savel1);  
               //  
               if ( l == 0 ){  
                 //  
                 // +-PPSSmmmm.mmmm  
                 //  
                 svstrip[istrip] = fbi*1000000000 + plo*10000000 + j4*100000 + cle;  
               } else {  
                 svstrip[istrip] = -(fbi*1000000000 + plo*10000000 + j4*100000 + cle);  
               };  
1812                //                //
1813                //              if ( ei >= -770 ) printf(" j %i l %i m %i estrip %f \n",j4,l,m,clevel1->estrip[j4][m][l]);                // +-PPSSmmmm.mmmm
               //              if ( ei >= -770 ) printf(" num lim %i fbi %i tim %f plo %i cle %i \n",numeric_limits<Int_t>::max(),fbi,tim,plo,cle);  
               //              if ( ei >= -770 ) printf(" svstrip %i \n",svstrip[istrip]);  
1814                //                //
1815                istrip++;                svstrip[istrip] = fbi*1000000000 + plo*10000000 + j4*100000 + cle;
1816                } else {
1817                  svstrip[istrip] = -(fbi*1000000000 + plo*10000000 + j4*100000 + cle);
1818              };              };
1819                //
1820                istrip++;
1821            };            };
1822          };          };
         //  
       } else {  
         for (Int_t nn = 0; nn < 96; nn++){                    
           clevel1->estrip[nn][m][l] = 0.;  
         };  
1823        };        };
1824          //
1825      };      };
1826    };    };
1827      //
1828      // store goodness flag
1829      //
1830    if ( !pe  ){    if ( !pe  ){
1831      clevel2->good = 1;      clevel2->good = 1;
1832    } else {    } else {
1833      clevel2->good = 0;      clevel2->good = 0;
1834    };    };
1835      //
1836      // done
1837      //
1838    return(0);    return(0);
1839  }  }
1840    
# Line 1305  void CaloLevel0::GetCommonVar(){ Line 1912  void CaloLevel0::GetCommonVar(){
1912  void CaloLevel0::FillCommonVar(CaloLevel1 *c1, CaloLevel2 *ca){  void CaloLevel0::FillCommonVar(CaloLevel1 *c1, CaloLevel2 *ca){
1913    //    //
1914    ca->good = clevel2->good;    ca->good = clevel2->good;
1915    if ( clevel2->trigty == 2. ){  //   if ( clevel2->trigty == 2. ){
1916      ca->selftrigger = 1;  //     ca->selftrigger = 1;
1917    } else {  //   } else {
1918      ca->selftrigger = 0;  //     ca->selftrigger = 0;
1919    };  //   };
1920    //    //
1921    ca->selftrigger += (Int_t)clevel2->wartrig;    ca->selftrigger = (Int_t)clevel2->trigty + (Int_t)clevel2->wartrig;
1922    //    //
1923    memcpy(ca->perr,clevel2->perr,sizeof(clevel2->perr));    memcpy(ca->perr,clevel2->perr,sizeof(clevel2->perr));
1924    memcpy(ca->swerr,clevel2->swerr,sizeof(clevel2->swerr));    memcpy(ca->swerr,clevel2->swerr,sizeof(clevel2->swerr));
# Line 1354  void CaloLevel0::ClearStructs(){ Line 1961  void CaloLevel0::ClearStructs(){
1961    ClearCommonVar();    ClearCommonVar();
1962  }  }
1963    
1964    void CaloLevel0::Delete(Option_t *t){
1965      if ( de ) delete de;
1966      delete this;
1967    }
1968    
1969    
1970  void CaloLevel0::RunClose(){  void CaloLevel0::RunClose(){
1971    l0tr->Delete();    l0tr->Delete();
1972    ClearStructs();    ClearStructs();
# Line 1363  void CaloLevel0::RunClose(){ Line 1976  void CaloLevel0::RunClose(){
1976    memset(base, 0, 2*22*6*sizeof(Float_t));    memset(base, 0, 2*22*6*sizeof(Float_t));
1977    memset(sbase, 0, 2*22*6*sizeof(Float_t));    memset(sbase, 0, 2*22*6*sizeof(Float_t));
1978    memset(ctprecor, 0, 2*22*6*sizeof(Float_t));    memset(ctprecor, 0, 2*22*6*sizeof(Float_t));
1979      memset(ctsicor, 0, 2*22*9*sizeof(Float_t));
1980    memset(ctneigcor, 0, 2*22*6*sizeof(Float_t));    memset(ctneigcor, 0, 2*22*6*sizeof(Float_t));
1981    //    //
1982  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.23