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

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

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

revision 1.3 by mocchiut, Fri Aug 4 10:31:27 2006 UTC revision 1.13 by mocchiut, Tue Feb 13 16:55:08 2007 UTC
# Line 18  Line 18 
18  // YODA headers  // YODA headers
19  //  //
20  #include <PamelaRun.h>  #include <PamelaRun.h>
 #include <RegistryEvent.h>  
21  #include <physics/calorimeter/CalorimeterEvent.h>  #include <physics/calorimeter/CalorimeterEvent.h>
22  #include <CalibCalPedEvent.h>  #include <CalibCalPedEvent.h>
23  //  //
# Line 67  CaloProcessing::CaloProcessing(){ Line 66  CaloProcessing::CaloProcessing(){
66    memset(sbase, 0, 2*22*6*sizeof(Float_t));    memset(sbase, 0, 2*22*6*sizeof(Float_t));
67    calopar1 = true;    calopar1 = true;
68    calopar2 = true;    calopar2 = true;
69    ftcalopar1 = 0ULL;    calopar3 = true;
70    ttcalopar1 = 0ULL;    crosst = true;
71    ftcalopar2 = 0ULL;    ftcalopar1 = 0;
72    ttcalopar2 = 0ULL;    ttcalopar1 = 0;
73      ftcalopar2 = 0;
74      ttcalopar2 = 0;
75      ftcalopar3 = 0;
76      ttcalopar3 = 0;
77  }  }
78    
79    void CaloProcessing::SetCrossTalk(Bool_t ct){
80      crosst = ct;
81    };
82    
83  /**  /**
84   * Initialize CaloProcessing object   * Initialize CaloProcessing object
85  **/  **/
86  void CaloProcessing::ProcessingInit(TSQLServer *dbc, ULong64_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){  void CaloProcessing::ProcessingInit(TSQLServer *dbc, UInt_t hs, Int_t &sgnl, TTree *l0tree, Bool_t isdeb, Bool_t isverb){
87    //    //
88    debug = isdeb;    debug = isdeb;
89    verbose = isverb;    verbose = isverb;
# Line 92  void CaloProcessing::ProcessingInit(TSQL Line 99  void CaloProcessing::ProcessingInit(TSQL
99    GL_CALO_CALIB *glcalo = new GL_CALO_CALIB();    GL_CALO_CALIB *glcalo = new GL_CALO_CALIB();
100    //    //
101    sgnl = 0;    sgnl = 0;
102      UInt_t uptime = 0;
103    //    //
104    for (Int_t s = 0; s < 4; s++){    for (Int_t s = 0; s < 4; s++){
105      idcalib[s] = 0ULL;      idcalib[s] = 0;
106      fromtime[s] = 0ULL;      fromtime[s] = 0;
107      totime[s] = 0ULL;      totime[s] = 0;
108      calibno[s] = 0;      calibno[s] = 0;
109      ClearCalibVals(s);      ClearCalibVals(s);
110  //      //
111      sgnl = glcalo->Query_GL_CALO_CALIB(hs,s,dbc);      sgnl = glcalo->Query_GL_CALO_CALIB(hs,uptime,s,dbc);
112      if ( sgnl < 0 ){      if ( sgnl < 0 ){
113          if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");          if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
114          return;          return;
115      };      };
116  //        //  
117      idcalib[s] = glcalo->ID_REG_CALIBCALPED;      idcalib[s] = glcalo->ID_ROOT_L0;
118      fromtime[s] = glcalo->FROM_TIME;      fromtime[s] = glcalo->FROM_TIME;
119      totime[s] = glcalo->TO_TIME;      if ( glcalo->TO_TIME < hs ){ // calibration is corrupted and we are using the one that preceed the good one
120      calibno[s] = glcalo->EV_REG_CALIBCALPED;        totime[s] = uptime;
121  //      } else {
122      if ( totime[s] == 0ULL){        totime[s] = glcalo->TO_TIME;
123        };
124        calibno[s] = glcalo->EV_ROOT;
125        //
126        if ( totime[s] == 0 ){
127        if ( verbose ) printf(" CALORIMETER - WARNING: data with no associated calibration\n");        if ( verbose ) printf(" CALORIMETER - WARNING: data with no associated calibration\n");
128        ClearCalibVals(s);        ClearCalibVals(s);
129        sgnl = 100;              sgnl = 100;      
# Line 124  void CaloProcessing::ProcessingInit(TSQL Line 136  void CaloProcessing::ProcessingInit(TSQL
136    if ( verbose ) printf("\n");    if ( verbose ) printf("\n");
137    for (Int_t s = 0; s < 4; s++){    for (Int_t s = 0; s < 4; s++){
138      if ( verbose ) printf(" ** SECTION %i **\n",s);      if ( verbose ) printf(" ** SECTION %i **\n",s);
139      if ( totime[s] > 0ULL ){      if ( totime[s] > 0 ){
140  //        //
141        sgnl = glroot->Query_GL_ROOT(idcalib[s],dbc);        sgnl = glroot->Query_GL_ROOT(idcalib[s],dbc);
142        if ( sgnl < 0 ){        if ( sgnl < 0 ){
143          if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");          if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
144          return;          return;
145        };        };
146  //              //        
147        stringstream name;        stringstream name;
148        name.str("");        name.str("");
149        name << glroot->PATH.Data() << "/";        name << glroot->PATH.Data() << "/";
150        name << glroot->NAME.Data();        name << glroot->NAME.Data();
151        //        //
152        fcalname[s] = (TString)name.str().c_str();        fcalname[s] = (TString)name.str().c_str();
153        if ( verbose ) printf(" - runheader at time %llu. From time %llu to time %llu \n   use file %s \n   calibration at entry %i \n\n",hs,fromtime[s],totime[s],fcalname[s].Data(),calibno[s]);        if ( verbose ) printf(" - runheader at time %u. From time %u to time %u \n   use file %s \n   calibration at entry %i \n\n",hs,fromtime[s],totime[s],fcalname[s].Data(),calibno[s]);
154      } else {      } else {
155        if ( verbose ) printf(" - runheader at time %llu. NO CALIBRATION INCLUDE THE RUNHEADER! ",hs);        if ( verbose ) printf(" - runheader at time %u. NO CALIBRATION INCLUDE THE RUNHEADER! ",hs);
156      };      };
157      sgnl = LoadCalib(s);      sgnl = LoadCalib(s);
158      if ( sgnl ) break;      if ( sgnl ) break;
# Line 153  void CaloProcessing::ProcessingInit(TSQL Line 165  void CaloProcessing::ProcessingInit(TSQL
165    //    //
166  }  }
167    
168  Int_t CaloProcessing::ChkCalib(TSQLServer *dbc, ULong64_t atime){  Int_t CaloProcessing::ChkCalib(TSQLServer *dbc, UInt_t atime){
169    Int_t sgnl = 0;    Int_t sgnl = 0;
170    for ( Int_t s = 0; s < 4; s++){    for ( Int_t s = 0; s < 4; s++){
171      if ( atime > totime[s] ){      if ( atime > totime[s] ){
172          if ( !dbc->IsConnected() ) throw -116;
173        sgnl = Update(dbc,atime,s);        sgnl = Update(dbc,atime,s);
174        if ( sgnl < 0 ) return(sgnl);        if ( sgnl < 0 ) return(sgnl);
175      };      };
# Line 164  Int_t CaloProcessing::ChkCalib(TSQLServe Line 177  Int_t CaloProcessing::ChkCalib(TSQLServe
177    return(sgnl);    return(sgnl);
178  }  }
179    
180  Int_t CaloProcessing::ChkParam(TSQLServer *dbc, ULong64_t runheader){  Int_t CaloProcessing::ChkParam(TSQLServer *dbc, UInt_t runheader){
181    stringstream calfile;    stringstream calfile;
182      stringstream bmfile;
183    stringstream aligfile;    stringstream aligfile;
184    Int_t error = 0;    Int_t error = 0;
185    FILE *f = 0;    FILE *f = 0;
186      ifstream badfile;
187    GL_PARAM *glparam = new GL_PARAM();    GL_PARAM *glparam = new GL_PARAM();
188    //    //
189    if ( calopar1 || ( ttcalopar1 != 0 && ttcalopar1 < runheader ) ){    if ( calopar1 || ( ttcalopar1 != 0 && ttcalopar1 < runheader ) ){
# Line 179  Int_t CaloProcessing::ChkParam(TSQLServe Line 194  Int_t CaloProcessing::ChkParam(TSQLServe
194      if ( verbose ) printf(" Querying DB for calorimeter parameters files...\n");      if ( verbose ) printf(" Querying DB for calorimeter parameters files...\n");
195      //      //
196      error = 0;      error = 0;
197      error = glparam->Query_GL_PARAM(runheader,"Calorimeter ADC to MIP",dbc);      error = glparam->Query_GL_PARAM(runheader,101,dbc);
198      if ( error < 0 ) return(error);      if ( error < 0 ) return(error);
199      //      //
200      calfile.str("");      calfile.str("");
# Line 212  Int_t CaloProcessing::ChkParam(TSQLServe Line 227  Int_t CaloProcessing::ChkParam(TSQLServe
227      //      //
228      //      //
229      error = 0;      error = 0;
230      error = glparam->Query_GL_PARAM(runheader,"Calorimeter alignement",dbc);      error = glparam->Query_GL_PARAM(runheader,102,dbc);
231      if ( error < 0 ) return(error);      if ( error < 0 ) return(error);
232      //      //
233      aligfile.str("");      aligfile.str("");
# Line 221  Int_t CaloProcessing::ChkParam(TSQLServe Line 236  Int_t CaloProcessing::ChkParam(TSQLServe
236      ftcalopar2 = glparam->FROM_TIME;      ftcalopar2 = glparam->FROM_TIME;
237      ttcalopar2 = glparam->TO_TIME;      ttcalopar2 = glparam->TO_TIME;
238      //      //
239      if ( verbose ) printf("\n Using alignment file: \n %s \n\n",aligfile.str().c_str());      if ( verbose ) printf("\n Using alignment file: \n %s \n",aligfile.str().c_str());
240      f = fopen(aligfile.str().c_str(),"rb");      f = fopen(aligfile.str().c_str(),"rb");
241      if ( !f ){      if ( !f ){
242        if ( verbose ) printf(" CALORIMETER - ERROR: no alignement file!\n");        if ( verbose ) printf(" CALORIMETER - ERROR: no alignement file!\n");
# Line 240  Int_t CaloProcessing::ChkParam(TSQLServe Line 255  Int_t CaloProcessing::ChkParam(TSQLServe
255      fclose(f);      fclose(f);
256    };    };
257    //    //
258      // Load offline bad strip mask
259      //
260      if ( calopar3 || ( ttcalopar3 != 0 && ttcalopar3 < runheader ) ){
261        calopar3 = false;
262        //
263        // determine where I can find calorimeter alignment file  
264        //
265        //
266        error = 0;
267        error = glparam->Query_GL_PARAM(runheader,103,dbc);
268        if ( error < 0 ) return(error);
269        //
270        bmfile.str("");
271        bmfile << glparam->PATH.Data() << "/";
272        bmfile << glparam->NAME.Data();
273        ftcalopar3 = glparam->FROM_TIME;
274        ttcalopar3 = glparam->TO_TIME;
275        //
276        if ( verbose ) printf("\n Using bad strip offline mask file: \n %s \n\n",bmfile.str().c_str());
277        badfile.open(bmfile.str().c_str());
278        if ( !badfile ){
279          if ( verbose ) printf(" CALORIMETER - ERROR: no bad strip offline mask file!\n");
280          return(-115);
281        };
282        //
283        Bool_t isdone = false;
284        Int_t bad = 0;
285        Int_t view = 1;
286        Int_t strip = 0;
287        Int_t plane = 21;
288        while ( !isdone ) {
289          badfile >> bad;
290          obadmask[view][plane][strip] = bad;
291          if ( debug && bad ) printf(" SETTING view %i plane %i strip %i  BAD = %i \n",view,plane,strip,bad);
292          strip++;
293          if ( strip > 95 ){
294            strip = 0;
295            plane--;
296            if ( plane < 0 ){
297              plane = 21;
298              view--;
299            };
300            if ( view < 0 ) isdone = true;
301          };
302        };
303        //
304        badfile.close();
305      };
306      //
307    delete glparam;    delete glparam;
   //  delete f;  
308    //    //
309    return(0);    return(0);
310  }  }
# Line 253  void CaloProcessing::FindBaseRaw(Int_t l Line 316  void CaloProcessing::FindBaseRaw(Int_t l
316      Float_t rms = 0.;      Float_t rms = 0.;
317      base[l][m][pre] = 0.;      base[l][m][pre] = 0.;
318      for (Int_t e = pre*16; e < (pre+1)*16 ; e++){      for (Int_t e = pre*16; e < (pre+1)*16 ; e++){
319          if ( calgood[l][m][e] == 0. &&  dexy[l][m][e]-calped[l][m][e] < minstrip &&  dexy[l][m][e] > 0.) {          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.) {
320              minstrip = dexy[l][m][e]-calped[l][m][e];              minstrip = dexy[l][m][e]-calped[l][m][e];
321              rms = calthr[l][m][pre];              rms = calthr[l][m][pre];
322          };          };
# Line 305  Int_t CaloProcessing::Calibrate(Int_t ei Line 368  Int_t CaloProcessing::Calibrate(Int_t ei
368    Int_t val = 0;    Int_t val = 0;
369    Int_t del = 1100;    Int_t del = 1100;
370    if ( clevel2->trigty != 2. ){    if ( clevel2->trigty != 2. ){
371        Bool_t ck = false;
372      for (Int_t sec = 0; sec < 4; sec++){      for (Int_t sec = 0; sec < 4; sec++){
373        val = (Int_t)de->calselftrig[sec][6];        val = (Int_t)de->calselftrig[sec][6];
374        del = delay(val);        del = delay(val);
375        if ( del < 1100 ){        if ( del < 1100 ){
376            clevel2->wartrig = 0.;      
377          clevel2->trigty = 3.;          clevel2->trigty = 3.;
378            ck = true;
379          break;          break;
380        };        };
381      };      };
382        if ( !ck ) clevel2->wartrig = 100.;      
383      } else {
384        Bool_t ck = false;
385        for (Int_t sec = 0; sec < 4; sec++){
386          val = (Int_t)de->calselftrig[sec][6];
387          del = delay(val);
388          if ( del < 1100 ){
389            clevel2->wartrig = 0.;      
390            ck = true;
391          };
392        };
393        if ( !ck ) clevel2->wartrig = 100.;      
394    };    };
395    //    //
396    Int_t se = 5;    Int_t se = 5;
# Line 336  Int_t CaloProcessing::Calibrate(Int_t ei Line 414  Int_t CaloProcessing::Calibrate(Int_t ei
414    Int_t chdone[4] = {0,0,0,0};    Int_t chdone[4] = {0,0,0,0};
415    Int_t pe = 0;    Int_t pe = 0;
416    //    //
417      Float_t ener0 = 0.;
418      Float_t cbase0 = 0.;
419      Bool_t pproblem = false;
420      //
421      Float_t tim = 0.;
422      Int_t plo = 0;
423      Int_t fbi = 0;
424      Int_t cle = 0;
425      //
426    // run over views and planes    // run over views and planes
427    //    //
428    for (Int_t l = 0; l < 2; l++){    for (Int_t l = 0; l < 2; l++){
# Line 392  Int_t CaloProcessing::Calibrate(Int_t ei Line 479  Int_t CaloProcessing::Calibrate(Int_t ei
479          // run over preamplifiers          // run over preamplifiers
480          //          //
481          pre = -1;          pre = -1;
482            cbase0 = 0.;
483          for (Int_t i = 0; i < 3; i++){          for (Int_t i = 0; i < 3; i++){
484            for (Int_t j = 0; j < 2; j++){            for (Int_t j = 0; j < 2; j++){
485              pre = j + i*2;              pre = j + i*2;
# Line 400  Int_t CaloProcessing::Calibrate(Int_t ei Line 488  Int_t CaloProcessing::Calibrate(Int_t ei
488              //              //
489              if ( !isRAW ) {              if ( !isRAW ) {
490                base[l][m][pre] = de->base[l][m][pre] ;                  base[l][m][pre] = de->base[l][m][pre] ;  
491                  cbase0 += base[l][m][pre];
492              } else {              } else {
493                //                //
494                // if it is a raw event and we haven't checked                // if it is a raw event and we haven't checked
495                // yet, calculate the baseline.                // yet, calculate the baseline.
496                //                //
497                FindBaseRaw(l,m,pre);                FindBaseRaw(l,m,pre);
498                  cbase0 += base[l][m][pre];
499              };              };
500            };            };
501          };          };
# Line 413  Int_t CaloProcessing::Calibrate(Int_t ei Line 503  Int_t CaloProcessing::Calibrate(Int_t ei
503          // run over strips          // run over strips
504          //          //
505          pre = -1;          pre = -1;
506            ener0 = 0.;
507          for (Int_t i = 0 ; i < 3 ; i++){          for (Int_t i = 0 ; i < 3 ; i++){
508            ip[i] = 0;            ip[i] = 0;
509            for (Int_t n = i*32 ; n < (i+1)*32 ; n++){                            for (Int_t n = i*32 ; n < (i+1)*32 ; n++){                
# Line 473  Int_t CaloProcessing::Calibrate(Int_t ei Line 564  Int_t CaloProcessing::Calibrate(Int_t ei
564                doneb = 1;                doneb = 1;
565              };              };
566              ener = dexyc[l][m][n];              ener = dexyc[l][m][n];
567                ener0 += ener;
568              clevel1->estrip[n][m][l] = 0.;              clevel1->estrip[n][m][l] = 0.;
569              if ( base0>0 && base0 < 30000. ){              if ( base0>0 && base0 < 30000. ){
570                if ( !donec && (base0 - base1 + base2) != 0. ){                if ( !donec && (base0 - base1 + base2) != 0. ){
# Line 488  Int_t CaloProcessing::Calibrate(Int_t ei Line 580  Int_t CaloProcessing::Calibrate(Int_t ei
580                };                };
581              };              };
582            };            };
583            if (ck == 1){            if ( crosst ){
584              if (ip[i]%2 == 0) {              if (ck == 1){
585                ipre = ip[i] + 1;                if (ip[i]%2 == 0) {
586              } else {                  ipre = ip[i] + 1;
587                ipre = ip[i] - 1;                } else {
588              };                  ipre = ip[i] - 1;
589              for (Int_t j = ipre*16 ; j < (ipre+1)*16 ; j++){                };
590                clevel1->estrip[j][m][l] += (qpre[ipre] - qpre[ip[i]]) * 0.00478;                for (Int_t j = ipre*16 ; j < (ipre+1)*16 ; j++){
591                    clevel1->estrip[j][m][l] += (qpre[ipre] - qpre[ip[i]]) * 0.00478;
592                  };
593              };              };
594            };              if (ck == 2){
595            if (ck == 2){                for (Int_t j = i*32 ; j < (i+1)*32 ; j++){
596              for (Int_t j = i*32 ; j < (i+1)*32 ; j++){                  ipre = j/16 + 1;
597                ipre = j/16 + 1;                  clevel1->estrip[j][m][l] +=  qpre[ipre] * 0.00478;
598                clevel1->estrip[j][m][l] +=  qpre[ipre] * 0.00478;                };
599              };              };
600            };            };
601          };          };
602            //
603            if ( ener0 == 0. && cbase0 == 0. && !pproblem && clevel2->perr[se] == 0){
604              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);
605              pproblem = true;
606              pe++;
607            };
608          //          //
609          Int_t j4 = -4;          Int_t j4 = -4;
610          Int_t jjj = -3;          Int_t jjj = -3;
# Line 514  Int_t CaloProcessing::Calibrate(Int_t ei Line 614  Int_t CaloProcessing::Calibrate(Int_t ei
614            jjj++;            jjj++;
615            j4++;            j4++;
616            if ( j < 96 ) ene[j] = clevel1->estrip[j][m][l];            if ( j < 96 ) ene[j] = clevel1->estrip[j][m][l];
617            if ( jj >= 0 && jj < 96 ){            if ( crosst ){
618              if ( jj != 0 && jj != 32 && jj != 64 ) ene[jj-1] += -clevel1->estrip[jj][m][l] * 0.01581;              if ( jj >= 0 && jj < 96 ){
619              if ( jj != 31 && jj != 63 && jj != 95 ) ene[jj+1] += -clevel1->estrip[jj][m][l] * 0.01581;                                  if ( jj != 0 && jj != 32 && jj != 64 ) ene[jj-1] += -clevel1->estrip[jj][m][l] * 0.01581;
620            };                if ( jj != 31 && jj != 63 && jj != 95 ) ene[jj+1] += -clevel1->estrip[jj][m][l] * 0.01581;                        
621            if ( jjj >= 0 && jjj < 96 ){              };
622              if ( jjj != 0 && jjj != 32 && jjj != 64 ) clevel1->estrip[jjj-1][m][l] +=  -ene[jjj] * 0.01581;              if ( jjj >= 0 && jjj < 96 ){
623              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] +=  -ene[jjj] * 0.01581;
624                  if ( jjj != 31 && jjj != 63 && jjj != 95 ) clevel1->estrip[jjj+1][m][l] +=  -ene[jjj] * 0.01581;
625                };
626            };            };
627            if ( j4 >= 0 && j4 < 96 ){            if ( j4 >= 0 && j4 < 96 ){
628              //              //
629              // NOTICE: THE FOLLOWING LINE EXCLUDE ALL STRIPS FOR WHICH THE RMS*4 IS GREATER THAN 26 !!! <===V============ IMPORTANT! =================>              // NOTICE: THE FOLLOWING LINE EXCLUDE ALL STRIPS FOR WHICH THE RMS*4 IS GREATER THAN 26 !!! <=============== IMPORTANT! =================>
630              //              //
631              if ( clevel1->estrip[j4][m][l]!=0. && ( clevel1->estrip[j4][m][l] < clevel1->emin || calrms[l][m][j4] > 26 )){              if ( obadmask[l][m][j4] == 1 || clevel1->estrip[j4][m][l] <= clevel1->emin || calrms[l][m][j4] > 26 ){
632                clevel1->estrip[j4][m][l] = 0.;                clevel1->estrip[j4][m][l] = 0.;
633              };              };
634                //
635                // code and save the energy for each strip in svstrip
636                //
637              if ( clevel1->estrip[j4][m][l] > clevel1->emin ){              if ( clevel1->estrip[j4][m][l] > clevel1->emin ){
638                  //
639                  tim = 100000.;
640                  plo = m;
641                  fbi = 0;
642                  if ( clevel1->estrip[j4][m][l] > 0.99995 ){
643                    tim = 10000.;
644                    plo = m;
645                    fbi = 1;
646                  };
647                  if ( clevel1->estrip[j4][m][l] > 9.9995 ){
648                    tim = 1000.;
649                    plo = 22 + m;
650                    fbi = 1;
651                  };
652                  if ( clevel1->estrip[j4][m][l] > 99.995 ){
653                    tim = 100.;
654                    plo = 22 + m;
655                    fbi = 0;
656                  };
657                  if ( clevel1->estrip[j4][m][l] > 999.95 ){
658                    tim = 10.;
659                    plo = 44 + m;
660                    fbi = 0;
661                  };
662                  if ( clevel1->estrip[j4][m][l] > 9999.5 ){
663                    tim = 1.;
664                    plo = 66 + m;
665                    fbi = 0;
666                  };
667                  //
668                  cle = (Int_t)lroundf(tim*clevel1->estrip[j4][m][l]);
669                  //
670                if ( l == 0 ){                if ( l == 0 ){
671                  //                  //
672                  // +-PPSSmmmm.mmmm                  // +-PPSSmmmm.mmmm
673                  //                  //
674                  svstrip[istrip] = ((Float_t)m)*1000000. + ((Float_t)j4)*10000. + clevel1->estrip[j4][m][l];                  svstrip[istrip] = fbi*1000000000 + plo*10000000 + j4*100000 + cle;
675                } else {                } else {
676                  svstrip[istrip] = -(((Float_t)m)*1000000. + ((Float_t)j4)*10000. + clevel1->estrip[j4][m][l]);                  svstrip[istrip] = -(fbi*1000000000 + plo*10000000 + j4*100000 + cle);
677                };                };
678                  //
679                  //              if ( ei >= -770 ) printf(" j %i l %i m %i estrip %f \n",j4,l,m,clevel1->estrip[j4][m][l]);
680                  //              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);
681                  //              if ( ei >= -770 ) printf(" svstrip %i \n",svstrip[istrip]);
682                  //
683                istrip++;                istrip++;
684              };              };
685            };            };
# Line 591  void CaloProcessing::FillTrkVar(CaloLeve Line 733  void CaloProcessing::FillTrkVar(CaloLeve
733    t_ca->qlow = clevel2->qlow;    t_ca->qlow = clevel2->qlow;
734    t_ca->nlow = (Int_t)clevel2->nlow;    t_ca->nlow = (Int_t)clevel2->nlow;
735    //    //
   memcpy(t_ca->tibar,clevel2->tibar,sizeof(clevel2->tibar));  
   memcpy(t_ca->tbar,clevel2->tbar,sizeof(clevel2->tbar));  
   //  
736    if ( trkseqno == -1 ){    if ( trkseqno == -1 ){
737      ca->impx = clevel2->impx;      //    ca->impx = clevel2->impx;
738      ca->impy = clevel2->impy;      //    ca->impy = clevel2->impy;
739      ca->tanx = clevel2->tanx;      ca->tanx[1] = clevel2->tanx;
740      ca->tany = clevel2->tany;      ca->tany[1] = clevel2->tany;
741      ca->elen = clevel2->elen;      ca->elen = clevel2->elen;
742      ca->selen = clevel2->selen;      ca->selen = clevel2->selen;
743      memcpy(ca->cibar,clevel2->cibar,sizeof(clevel2->cibar));      //    memcpy(ca->cibar,clevel2->cibar,sizeof(clevel2->cibar));
744      memcpy(ca->cbar,clevel2->cbar,sizeof(clevel2->cbar));      //    memcpy(ca->cbar,clevel2->cbar,sizeof(clevel2->cbar));
745        memcpy(t_ca->tibar,clevel2->cibar,sizeof(clevel2->cibar));
746        memcpy(t_ca->tbar,clevel2->cbar,sizeof(clevel2->cbar));
747      memcpy(ca->planemax,clevel2->planemax,sizeof(clevel2->planemax));      memcpy(ca->planemax,clevel2->planemax,sizeof(clevel2->planemax));
748      memcpy(ca->varcfit,clevel2->varcfit,sizeof(clevel2->varcfit));      ca->varcfit[2] = clevel2->varcfit[0];
749      memcpy(ca->npcfit,clevel2->npcfit,sizeof(clevel2->npcfit));      ca->varcfit[3] = clevel2->varcfit[1];
750        ca->npcfit[2] = clevel2->npcfit[0];
751        ca->npcfit[3] = clevel2->npcfit[1];    
752        //    memcpy(ca->varcfit,clevel2->varcfit,sizeof(clevel2->varcfit));
753        //    memcpy(ca->npcfit,clevel2->npcfit,sizeof(clevel2->npcfit));
754      } else {
755        memcpy(t_ca->tibar,clevel2->tibar,sizeof(clevel2->tibar));
756        memcpy(t_ca->tbar,clevel2->tbar,sizeof(clevel2->tbar));
757    };    };
758      //
759    //    //
760      if ( !(ca->CaloTrk) ) ca->CaloTrk = new TClonesArray("CaloTrkVar",1); //ELENA
761    TClonesArray &t = *ca->CaloTrk;    TClonesArray &t = *ca->CaloTrk;
762    new(t[nutrk]) CaloTrkVar(*t_ca);    new(t[nutrk]) CaloTrkVar(*t_ca);
763    //    //
# Line 620  void CaloProcessing::GetCommonVar(){ Line 770  void CaloProcessing::GetCommonVar(){
770    calol2cm();    calol2cm();
771  }  }
772    
773  void CaloProcessing::FillCommonVar(CaloLevel2 *ca){  void CaloProcessing::FillCommonVar(CaloLevel1 *c1, CaloLevel2 *ca){
774    //    //
775    ca->good = clevel2->good;    ca->good = clevel2->good;
776    if ( clevel2->trigty == 2. ){    if ( clevel2->trigty == 2. ){
# Line 628  void CaloProcessing::FillCommonVar(CaloL Line 778  void CaloProcessing::FillCommonVar(CaloL
778    } else {    } else {
779      ca->selftrigger = 0;      ca->selftrigger = 0;
780    };    };
781      //
782      ca->selftrigger += (Int_t)clevel2->wartrig;
783      //
784    memcpy(ca->perr,clevel2->perr,sizeof(clevel2->perr));    memcpy(ca->perr,clevel2->perr,sizeof(clevel2->perr));
785    memcpy(ca->swerr,clevel2->swerr,sizeof(clevel2->swerr));    memcpy(ca->swerr,clevel2->swerr,sizeof(clevel2->swerr));
786    memcpy(ca->crc,clevel2->crc,sizeof(clevel2->crc));    memcpy(ca->crc,clevel2->crc,sizeof(clevel2->crc));
   ca->estrip = TArrayF(0,svstrip);  
787    ca->nstrip = (Int_t)clevel2->nstrip;    ca->nstrip = (Int_t)clevel2->nstrip;
788    ca->qtot = clevel2->qtot;    ca->qtot = clevel2->qtot;
789    ca->impx = clevel2->impx;    //  ca->impx = clevel2->impx;
790    ca->impy = clevel2->impy;    //  ca->impy = clevel2->impy;
791    ca->tanx = clevel2->tanx;    ca->tanx[0] = clevel2->tanx;
792    ca->tany = clevel2->tany;    ca->tany[0] = clevel2->tany;
793    ca->nx22 = (Int_t)clevel2->nx22;    ca->nx22 = (Int_t)clevel2->nx22;
794    ca->qx22 = clevel2->qx22;    ca->qx22 = clevel2->qx22;
795    ca->qmax = clevel2->qmax;    ca->qmax = clevel2->qmax;
796    ca->elen = clevel2->elen;    ca->elen = clevel2->elen;
797    ca->selen = clevel2->selen;    ca->selen = clevel2->selen;
   ca->estrip = TArrayF(ca->nstrip,svstrip);  
798    memcpy(ca->qq,clevel2->qq,sizeof(clevel2->qq));    memcpy(ca->qq,clevel2->qq,sizeof(clevel2->qq));
799    memcpy(ca->planemax,clevel2->planemax,sizeof(clevel2->planemax));    memcpy(ca->planemax,clevel2->planemax,sizeof(clevel2->planemax));
800    memcpy(ca->varcfit,clevel2->varcfit,sizeof(clevel2->varcfit));    ca->varcfit[0] = clevel2->varcfit[0];
801    memcpy(ca->npcfit,clevel2->npcfit,sizeof(clevel2->npcfit));    ca->varcfit[1] = clevel2->varcfit[1];
802      ca->npcfit[0] = clevel2->npcfit[0];
803      ca->npcfit[1] = clevel2->npcfit[1];
804      ca->fitmode[0] = clevel2->fmode[0];
805      ca->fitmode[1] = clevel2->fmode[1];
806      //  memcpy(ca->varcfit,clevel2->varcfit,sizeof(clevel2->varcfit));
807      //  memcpy(ca->npcfit,clevel2->npcfit,sizeof(clevel2->npcfit));
808    memcpy(ca->cibar,clevel2->cibar,sizeof(clevel2->cibar));    memcpy(ca->cibar,clevel2->cibar,sizeof(clevel2->cibar));
809    memcpy(ca->cbar,clevel2->cbar,sizeof(clevel2->cbar));    memcpy(ca->cbar,clevel2->cbar,sizeof(clevel2->cbar));
810    //    //
811      if ( c1 ){
812        c1->istrip = istrip;
813        c1->estrip = TArrayI(istrip,svstrip);
814      };
815      //
816  }  }
817    
818  void CaloProcessing::ClearStructs(){  void CaloProcessing::ClearStructs(){
# Line 707  void CaloProcessing::ClearTrkVar(){ Line 869  void CaloProcessing::ClearTrkVar(){
869  void CaloProcessing::ClearCommonVar(){  void CaloProcessing::ClearCommonVar(){
870    istrip = 0;    istrip = 0;
871    clevel2->trigty = -1.;    clevel2->trigty = -1.;
872      clevel2->wartrig = 0.;
873    clevel2->good = 0;    clevel2->good = 0;
874    clevel2->nstrip = 0.;    clevel2->nstrip = 0.;
875    clevel2->qtot = 0.;    clevel2->qtot = 0.;
876    clevel2->impx = 0.;    //  clevel2->impx = 0.;
877    clevel2->impy = 0.;    //  clevel2->impy = 0.;
878    clevel2->tanx = 0.;    clevel2->tanx = 0.; // this is correct since it refers to the fortran structure
879    clevel2->tany = 0.;    clevel2->tany = 0.; // this is correct since it refers to the fortran structure
880    clevel2->qmax = 0.;    clevel2->qmax = 0.;
881    clevel2->nx22 = 0.;    clevel2->nx22 = 0.;
882    clevel2->qx22 = 0.;    clevel2->qx22 = 0.;
# Line 721  void CaloProcessing::ClearCommonVar(){ Line 884  void CaloProcessing::ClearCommonVar(){
884    memset(clevel2->swerr, 0, 4*sizeof(Int_t));    memset(clevel2->swerr, 0, 4*sizeof(Int_t));
885    memset(clevel2->crc, 0, 4*sizeof(Int_t));    memset(clevel2->crc, 0, 4*sizeof(Int_t));
886    memset(clevel2->qq, 0, 4*sizeof(Int_t));    memset(clevel2->qq, 0, 4*sizeof(Int_t));
887    memset(clevel2->varcfit, 0, 2*sizeof(Float_t));    memset(clevel2->varcfit, 0, 4*sizeof(Float_t));
888    memset(clevel2->npcfit, 0, 2*sizeof(Int_t));    memset(clevel2->npcfit, 0, 4*sizeof(Int_t));
889    memset(clevel2->planemax, 0, 2*sizeof(Int_t));    memset(clevel2->planemax, 0, 2*sizeof(Int_t));
890      memset(clevel2->fmode, 0, 2*sizeof(Int_t));
891    memset(clevel2->cibar, 0, 2*22*sizeof(Int_t));    memset(clevel2->cibar, 0, 2*22*sizeof(Int_t));
892    memset(clevel2->cbar, 0, 2*22*sizeof(Float_t));    memset(clevel2->cbar, 0, 2*22*sizeof(Float_t));
893  }  }
# Line 779  void CaloProcessing::ClearCalibVals(Int_ Line 943  void CaloProcessing::ClearCalibVals(Int_
943    return;    return;
944  }  }
945    
946  Int_t CaloProcessing::Update(TSQLServer *dbc, ULong64_t atime, Int_t s){  Int_t CaloProcessing::Update(TSQLServer *dbc, UInt_t atime, Int_t s){
947    //    //
948    Int_t sgnl = 0;    Int_t sgnl = 0;
949    //    //
# Line 787  Int_t CaloProcessing::Update(TSQLServer Line 951  Int_t CaloProcessing::Update(TSQLServer
951    //    //
952    sgnl = 0;    sgnl = 0;
953    //    //
954    idcalib[s] = 0ULL;    idcalib[s] = 0;
955    fromtime[s] = 0ULL;    fromtime[s] = 0;
956    totime[s] = 0ULL;    totime[s] = 0;
957    calibno[s] = 0;    calibno[s] = 0;
958    ClearCalibVals(s);    ClearCalibVals(s);
959    //    //
960    sgnl = glcalo->Query_GL_CALO_CALIB(atime,s,dbc);    UInt_t uptime = 0;
961      //
962      sgnl = glcalo->Query_GL_CALO_CALIB(atime,uptime,s,dbc);
963    if ( sgnl < 0 ){    if ( sgnl < 0 ){
964      if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");      if ( verbose ) printf(" CALORIMETER - ERROR: error from GLTables\n");
965      return(sgnl);      return(sgnl);
966    };    };
967    //      //  
968    idcalib[s] = glcalo->ID_REG_CALIBCALPED;    idcalib[s] = glcalo->ID_ROOT_L0;
969    fromtime[s] = glcalo->FROM_TIME;    fromtime[s] = glcalo->FROM_TIME;
970    totime[s] = glcalo->TO_TIME;    if ( glcalo->TO_TIME < atime ){ // calibration is corrupted and we are using the one that preceed the good one
971    calibno[s] = glcalo->EV_REG_CALIBCALPED;      totime[s] = uptime;
972      } else {
973        totime[s] = glcalo->TO_TIME;
974      };
975      //  totime[s] = glcalo->TO_TIME;
976      calibno[s] = glcalo->EV_ROOT;
977    //    //
978    if ( totime[s] == 0ULL){    if ( totime[s] == 0 ){
979      if ( verbose ) printf(" CALORIMETER - WARNING: data with no associated calibration\n");      if ( verbose ) printf(" CALORIMETER - WARNING: data with no associated calibration\n");
980      ClearCalibVals(s);      ClearCalibVals(s);
981      sgnl = 100;            sgnl = 100;      
# Line 828  Int_t CaloProcessing::Update(TSQLServer Line 999  Int_t CaloProcessing::Update(TSQLServer
999    name << glroot->NAME.Data();    name << glroot->NAME.Data();
1000    //    //
1001    fcalname[s] = (TString)name.str().c_str();    fcalname[s] = (TString)name.str().c_str();
1002    if ( verbose ) printf(" - event at time %llu. From time %llu to time %llu \n   use file %s \n   calibration at entry %i \n\n",atime,fromtime[s],totime[s],fcalname[s].Data(),calibno[s]);    if ( verbose ) printf(" - event at time %u. From time %u to time %u \n   use file %s \n   calibration at entry %i \n\n",atime,fromtime[s],totime[s],fcalname[s].Data(),calibno[s]);
1003    //    //
1004    sgnl = LoadCalib(s);    sgnl = LoadCalib(s);
1005    //    //
# Line 854  Int_t CaloProcessing::LoadCalib(Int_t s) Line 1025  Int_t CaloProcessing::LoadCalib(Int_t s)
1025    TTree *tr = (TTree*)File->Get("CalibCalPed");    TTree *tr = (TTree*)File->Get("CalibCalPed");
1026    if ( !tr ) return(-109);    if ( !tr ) return(-109);
1027    //    //
   TBranch *registry = tr->GetBranch("Registry");  
1028    TBranch *calo = tr->GetBranch("CalibCalPed");    TBranch *calo = tr->GetBranch("CalibCalPed");
1029    //    //
   pamela::RegistryEvent *reg = 0;  
1030    pamela::CalibCalPedEvent *ce = 0;    pamela::CalibCalPedEvent *ce = 0;
1031    tr->SetBranchAddress("CalibCalPed", &ce);    tr->SetBranchAddress("CalibCalPed", &ce);
   tr->SetBranchAddress("Registry", &reg);  
1032    //    //
1033    Long64_t ncalibs = registry->GetEntries();    Long64_t ncalibs = calo->GetEntries();
1034    //    //
1035    if ( !ncalibs ) return(-110);    if ( !ncalibs ) return(-110);
1036    //    //
1037    registry->GetEntry(calibno[s]);    calo->GetEntry(calibno[s]);
   //  
   calo->GetEntry(reg->event);  
1038    //    //
1039    if (ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {    if (ce->cstwerr[s] != 0 && ce->cperror[s] == 0 ) {
1040      for ( Int_t d=0 ; d<11 ;d++  ){      for ( Int_t d=0 ; d<11 ;d++  ){

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.23