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

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

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

revision 1.2 by mocchiut, Fri Jun 30 09:21:53 2006 UTC revision 1.10 by pam-fi, Thu Jan 11 09:32:54 2007 UTC
# Line 5  Line 5 
5  **/  **/
6  #include <TObject.h>  #include <TObject.h>
7  #include <CaloLevel2.h>  #include <CaloLevel2.h>
8    
9    //
10  ClassImp(CaloTrkVar);  ClassImp(CaloTrkVar);
11  ClassImp(CaloLevel2);  ClassImp(CaloLevel2);
12    
# Line 12  ClassImp(CaloLevel2); Line 14  ClassImp(CaloLevel2);
14   * CaloTrkVar constructor   * CaloTrkVar constructor
15  **/  **/
16  CaloTrkVar::CaloTrkVar() {  CaloTrkVar::CaloTrkVar() {
17      this->Clear();
18    };
19    
20    /**
21     * Clear variables
22    **/
23    void CaloTrkVar::Clear() {
24    trkseqno = 0;    trkseqno = 0;
25    noint = 0;    noint = 0;
26    ncore = 0;    ncore = 0;
# Line 36  CaloTrkVar::CaloTrkVar() { Line 45  CaloTrkVar::CaloTrkVar() {
45    qlow = 0.;    qlow = 0.;
46    nlow = 0;    nlow = 0;
47    dX0l = 0.;    dX0l = 0.;
48    for (Int_t i = 0; i<2 ; i++){    memset(tbar, 0, 2*22*sizeof(Float_t));
49      for ( Int_t j = 0; j<22; j++){    memset(tibar, 0, 2*22*sizeof(Int_t));
       tibar[j][i] = 0;            
       tbar[j][i] = 0.;      
     };  
   };  
50  }  }
51    
52  /**  /**
# Line 81  CaloTrkVar::CaloTrkVar(const CaloTrkVar Line 86  CaloTrkVar::CaloTrkVar(const CaloTrkVar
86  **/  **/
87  CaloLevel2::CaloLevel2() {      CaloLevel2::CaloLevel2() {    
88    //    //
89    CaloTrk = new TClonesArray("CaloTrkVar",1);  //  CaloTrk = new TClonesArray("CaloTrkVar",1); //ELENA
90      CaloTrk = 0; //ELENA
91      //
92      this->Clear();
93    //    //
   nstrip = 0;  
   qtot = 0.;  
   impx = 0.;  
   impy = 0.;  
   tanx = 0.;  
   tany = 0.;  
   qmax = 0.;  
   nx22 = 0;  
   qx22 = 0.;  
   elen = 0.;  
   selen = 0.;  
   for (Int_t i = 0; i<4 ; i++){  
     qq[i] = 0.;  
     perr[i] = 0;  
     swerr[i] = 0;  
     crc[i] = 0;  
     if ( i < 2 ){  
       planemax[i] = 0;  
       varcfit[i] = 0.;  
       npcfit[i] = 0;  
       for ( Int_t j = 0; j<22; j++){  
         cibar[j][i] = 0;  
         cbar[j][i] = 0.;  
       };  
     };  
   };  
   good = 0;  
   selftrigger = 0;  
   estrip = TArrayF(0,NULL);  
94  };  };
95    
96    /**
97     * Clear the CaloLevel2 object
98     **/
99  void CaloLevel2::Clear() {      void CaloLevel2::Clear() {    
100    //    //
101    CaloTrk->Clear();  //  CaloTrk->Clear(); //ELENA
102      if(CaloTrk)CaloTrk->Delete(); //ELENA
103    //    //
104    nstrip = 0;    nstrip = 0;
105    qtot = 0.;    qtot = 0.;
# Line 129  void CaloLevel2::Clear() {     Line 112  void CaloLevel2::Clear() {    
112    qx22 = 0.;    qx22 = 0.;
113    elen = 0.;    elen = 0.;
114    selen = 0.;    selen = 0.;
115    for (Int_t i = 0; i<4 ; i++){    memset(perr, 0, 4*sizeof(Int_t));
116      qq[i] = 0.;    memset(swerr, 0, 4*sizeof(Int_t));
117      perr[i] = 0;    memset(crc, 0, 4*sizeof(Int_t));
118      swerr[i] = 0;    memset(qq, 0, 4*sizeof(Int_t));
119      crc[i] = 0;    memset(varcfit, 0, 2*sizeof(Float_t));
120      if ( i < 2 ){    memset(npcfit, 0, 2*sizeof(Int_t));
121        planemax[i] = 0;    memset(planemax, 0, 2*sizeof(Int_t));
122        varcfit[i] = 0.;    memset(cibar, 0, 2*22*sizeof(Int_t));
123        npcfit[i] = 0;    memset(cbar, 0, 2*22*sizeof(Float_t));
       for ( Int_t j = 0; j<22; j++){  
         cibar[j][i] = 0;  
         cbar[j][i] = 0.;  
       };  
     };  
   };  
124    good = 0;    good = 0;
125    selftrigger = 0;    selftrigger = 0;
126    estrip = TArrayF(0,NULL);    //
127  };  };
128    
129  /**  /**
130   * Gives the detected energy for the given strip once loaded the event   * Delete the CaloLevel2 object
131  **/   **/
132  Float_t CaloLevel2::GetEstrip(Int_t view, Int_t plane, Int_t strip){  void CaloLevel2::Delete() {     //ELENA
133    Int_t splane = 0;    if(CaloTrk){ //ELENA
134    Int_t sstrip = 0;        CaloTrk->Delete(); //ELENA
135    //        delete CaloTrk; //ELENA
136    if ( nstrip == 0 ) return(0.);    }     //ELENA
137    //  } //ELENA
138    for (Int_t i = 0; i<nstrip; i++ ){  
139      if ( view == 0 ){  /**
140        if ( estrip.At(i) > 0. ){   * Fills a struct cCaloLevel2 with values from a CaloLevel2 object (to put data into a F77 common).
141          splane = (Int_t)trunc(estrip.At(i)/1000000.);   */
142          sstrip = (Int_t)trunc((estrip.At(i)-((Float_t)splane*1000000.))/10000.);  void CaloLevel2::GetLevel2Struct(cCaloLevel2 *l2) const {
143          if ( splane == plane && sstrip == strip ) return(estrip.At(i)-(Float_t)splane*1000000.-(Float_t)sstrip*10000.);  
144        };            l2->good = good;      
145      } else {    l2->selftrigger = selftrigger;
146        if ( estrip.At(i) < 0. ){    l2->nstrip = nstrip;    
147          splane = (Int_t)trunc(-estrip.At(i)/1000000.);    l2->nx22 = nx22;  
148          sstrip = (Int_t)trunc((-estrip.At(i)-((Float_t)splane*1000000.))/10000.);    l2->qtot = qtot;    
149          if ( splane == plane && sstrip == strip ) return(-estrip.At(i)-(Float_t)splane*1000000.-(Float_t)sstrip*10000.);            l2->qx22 = qx22;    
150        };            l2->qmax = qmax;    
151      };    l2->impx = impx;    
152    };    l2->impy = impy;    
153    return(0.);    l2->tanx = tanx;    
154  };    l2->tany = tany;  
155      l2->elen = elen;      
156      l2->selen = selen;
157            
158      for(Int_t i=0;i<2;i++){
159        l2->planemax[i] = planemax[i];      
160        l2->varcfit[i] = varcfit[i];
161        l2->npcfit[i] = npcfit[i];
162      }
163      for(Int_t i=0;i<4;i++){
164        l2->perr[i] = perr[i];  
165        l2->swerr[i] = swerr[i];  
166        l2->calcrc[i] = crc[i];    
167        l2->qq[i] = qq[i];  
168      }
169    
170  /**    if(CaloTrk){ //ELENA
171   * Given estrip entry returns energy and strip        l2->calntrk = CaloTrk->GetEntries();  
172  **/        for(Int_t i=0;i<l2->calntrk;i++){
173  Float_t CaloLevel2::DecodeEstrip(Int_t entry, Int_t &view, Int_t &plane, Int_t &strip){            l2->caltrkseqno[i] = ((CaloTrkVar *)CaloTrk->At(i))->trkseqno;  
174    if ( entry>nstrip ) return(0.);            l2->ncore[i] = ((CaloTrkVar *)CaloTrk->At(i))->ncore;    
175    //            l2->noint[i] = ((CaloTrkVar *)CaloTrk->At(i))->noint;    
176    if ( estrip.At(entry) > 0. ){            l2->ncyl[i] = ((CaloTrkVar *)CaloTrk->At(i))->ncyl;      
177      view = 0;            l2->nlast[i] = ((CaloTrkVar *)CaloTrk->At(i))->nlast;    
178      plane = (Int_t)trunc(estrip.At(entry)/1000000.);            l2->npre[i] = ((CaloTrkVar *)CaloTrk->At(i))->npre;      
179      strip = (Int_t)trunc((estrip.At(entry)-((Float_t)plane*1000000.))/10000.);            l2->npresh[i] = ((CaloTrkVar *)CaloTrk->At(i))->npresh;    
180      return(estrip.At(entry)-(Float_t)plane*1000000.-(Float_t)strip*10000.);            l2->ntr[i] = ((CaloTrkVar *)CaloTrk->At(i))->ntr;      
181    };            l2->planetot[i] = ((CaloTrkVar *)CaloTrk->At(i))->planetot;  
182    if ( estrip.At(entry) < 0. ){            l2->nlow[i] = ((CaloTrkVar *)CaloTrk->At(i))->nlow;      
183      view = 1;            l2->qcore[i] =((CaloTrkVar *)CaloTrk->At(i))->qcore ;  
184      plane = (Int_t)trunc(-estrip.At(entry)/1000000.);            l2->qcyl[i] = ((CaloTrkVar *)CaloTrk->At(i))->qcyl;    
185      strip = (Int_t)trunc((-estrip.At(entry)-((Float_t)plane*1000000.))/10000.);            l2->qlast[i] = ((CaloTrkVar *)CaloTrk->At(i))->qlast;  
186      return(-estrip.At(entry)-(Float_t)plane*1000000.-(Float_t)strip*10000.);                l2->qpre[i] = ((CaloTrkVar *)CaloTrk->At(i))->qpre;    
187    };                l2->qpresh[i] = ((CaloTrkVar *)CaloTrk->At(i))->qpresh;  
188    //            l2->qtr[i] = ((CaloTrkVar *)CaloTrk->At(i))->qtr;    
189    printf(" WARNING: problems decoding value %f at entry %i \n",estrip.At(entry),entry);            l2->qtrack[i] = ((CaloTrkVar *)CaloTrk->At(i))->qtrack;  
190    //            l2->qtrackx[i] = ((CaloTrkVar *)CaloTrk->At(i))->qtrackx;
191    view = -1;            l2->qtracky[i] = ((CaloTrkVar *)CaloTrk->At(i))->qtracky;
192    plane = -1;            l2->dxtrack[i] = ((CaloTrkVar *)CaloTrk->At(i))->dxtrack;
193    strip = -1;            l2->dytrack[i] = ((CaloTrkVar *)CaloTrk->At(i))->dytrack;
194    return(0.);              l2->qmean[i] = ((CaloTrkVar *)CaloTrk->At(i))->qmean;  
195              l2->qlow[i] = ((CaloTrkVar *)CaloTrk->At(i))->qlow;    
196              l2->dX0l[i] = ((CaloTrkVar *)CaloTrk->At(i))->dX0l;  
197              for (Int_t j=0; j<2; j++){
198                  for (Int_t k=0; k<22; k++){
199                      l2->tbar[i][k][j] = ((CaloTrkVar *)CaloTrk->At(i))->tbar[k][j];
200                  };
201              };
202          }  
203      } //ELENA
204  }  }
205    
206    /**
207     * Should return the energy in GeV if the particle would be an electron
208     * using a parametrization taken from Monte Carlo simulation
209    **/
210  void CaloLevel2::GetElectronEnergy(Float_t &energy, Float_t &sigma){  void CaloLevel2::GetElectronEnergy(Float_t &energy, Float_t &sigma){
211    if ( nstrip == 0 ) return;    if ( nstrip == 0 ) return;
212    energy = qtot * 40.82 * 0.000106;    energy = qtot * 40.82 * 0.000106;
# Line 221  CaloTrkVar *CaloLevel2::GetCaloTrkVar(In Line 225  CaloTrkVar *CaloLevel2::GetCaloTrkVar(In
225      printf("                   stored track related variables = %i \n",ntrk());      printf("                   stored track related variables = %i \n",ntrk());
226      return(NULL);      return(NULL);
227    }    }
228      if(!CaloTrk)return 0; //ELENA
229    TClonesArray &t = *(CaloTrk);    TClonesArray &t = *(CaloTrk);
230    CaloTrkVar *calotrack = (CaloTrkVar*)t[itrk];    CaloTrkVar *calotrack = (CaloTrkVar*)t[itrk];
231    return calotrack;    return calotrack;

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

  ViewVC Help
Powered by ViewVC 1.1.23