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

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

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

revision 1.1 by mocchiut, Wed Nov 22 08:31:10 2006 UTC revision 1.14 by mocchiut, Mon May 12 14:36:09 2008 UTC
# Line 3  Line 3 
3   * \author Emiliano Mocchiutti   * \author Emiliano Mocchiutti
4   *   *
5  **/  **/
 #include <TObject.h>  
6  #include <CaloLevel1.h>  #include <CaloLevel1.h>
   
7  //  //
8  ClassImp(CaloStrip);  ClassImp(CaloStrip);
9  ClassImp(CaloLevel1);  ClassImp(CaloLevel1);
10    
11    Float_t CaloStrip::UXal = CTX;
12    Float_t CaloStrip::UYal = CTY;
13    Float_t CaloStrip::UZal = CTZ;
14    Bool_t CaloStrip::paramload  = false;
15    
16  /**  /**
17   * CaloStrip default constructor   * CaloStrip default constructor
18  **/  **/
# Line 21  CaloStrip::CaloStrip() { Line 24  CaloStrip::CaloStrip() {
24  /**  /**
25   * CaloStrip default constructor   * CaloStrip default constructor
26  **/  **/
27    CaloStrip::CaloStrip(Bool_t mechalig) {
28      c1 = 0;
29      this->Clear();
30      if ( mechalig ){
31        ismech = true;
32        paramload = true;
33        UXal = MECHCTX;
34        UYal = MECHCTY;
35        UZal = MECHCTZ;
36      } else {
37        ismech = false;
38        UseStandardAlig();
39      };
40    };
41    
42    /**
43     * CaloStrip default constructor
44    **/
45  CaloStrip::CaloStrip(CaloLevel1 *calo) {  CaloStrip::CaloStrip(CaloLevel1 *calo) {
46    c1 = calo->GetCaloLevel1();    c1 = calo->GetCaloLevel1();
47    this->Clear();    this->Clear();
48      ismech = false;
49      UseStandardAlig();
50    };
51    
52    /**
53     * CaloStrip default constructor
54    **/
55    CaloStrip::CaloStrip(CaloLevel1 *calo, Bool_t mechalig) {
56      c1 = calo->GetCaloLevel1();
57      this->Clear();
58      if ( mechalig ){
59        ismech = true;
60        paramload = true;
61        UXal = MECHCTX;
62        UYal = MECHCTY;
63        UZal = MECHCTZ;
64      } else {
65        ismech = false;
66        UseStandardAlig();
67      };
68  };  };
69    
70  /**  /**
71   * Clear variables   * Clear variables
72  **/  **/
73  void CaloStrip::Clear() {  void CaloStrip::Clear(Option_t *t) {  
74    fE = 0.;    fE = 0.;
75    fX = 0.;    fX = 0.;
76    fY = 0.;    fY = 0.;
# Line 40  void CaloStrip::Clear() { Line 81  void CaloStrip::Clear() {
81  };  };
82    
83  /**  /**
84     * Connect to the DB and retrieve alignement parameters
85     **/
86    void CaloStrip::UseStandardAlig(){
87      //
88      if ( !paramload ){
89        //
90        paramload = true;
91        ismech = false;
92        //
93        stringstream aligfile;
94        Int_t error = 0;
95        FILE *f = 0;
96        ifstream badfile;
97        GL_PARAM *glparam = new GL_PARAM();
98        //
99        TString host = "mysql://localhost/pamelaprod";
100        TString user = "anonymous";
101        TString psw = "";
102        const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
103        const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
104        const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
105        if ( !pamdbhost ) pamdbhost = "";
106        if ( !pamdbuser ) pamdbuser = "";
107        if ( !pamdbpsw ) pamdbpsw = "";
108        if ( strcmp(pamdbhost,"") ) host = pamdbhost;
109        if ( strcmp(pamdbuser,"") ) user = pamdbuser;
110        if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
111        TSQLServer *dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
112        //
113        UXal = 0.;
114        UYal = 0.;
115        UZal = 0.;
116        //
117        if ( dbc ){
118          //
119          // determine where I can find calorimeter ADC to MIP conversion file  
120          //
121          printf(" Querying DB for calorimeter parameters files...\n");
122          //
123          //
124          //
125          error = 0;
126          error = glparam->Query_GL_PARAM(1000,102,dbc);
127          if ( error >= 0 ){
128            //
129            aligfile.str("");
130            aligfile << glparam->PATH.Data() << "/";
131            aligfile << glparam->NAME.Data();
132            //
133            printf("\n Using parameter file: \n %s \n",aligfile.str().c_str());
134            f = fopen(aligfile.str().c_str(),"rb");
135            if ( f ){
136              //
137              fread(&UXal,sizeof(UXal),1,f);
138              fread(&UYal,sizeof(UYal),1,f);
139              fread(&UZal,sizeof(UZal),1,f);
140              //
141              fclose(f);
142            };
143            //
144          };
145          dbc->Close();
146        };
147        if ( !UXal ){
148          //
149          printf(" No able to query DB for calorimeter parameters files\n Using hard-coded parameters \n");
150          UXal = CTX;
151          UYal = CTY;
152          UZal = CTZ;
153        };
154        //  
155      };
156      //
157    };
158    
159    /**
160   * Given a strip returns its position in the PAMELA reference system   * Given a strip returns its position in the PAMELA reference system
161  **/  **/
162  void CaloStrip::Set(Int_t view, Int_t plane, Int_t strip) {  void CaloStrip::Set(Int_t view, Int_t plane, Int_t strip) {
# Line 70  void CaloStrip::Set(Int_t view, Int_t pl Line 187  void CaloStrip::Set(Int_t view, Int_t pl
187    fView = view + 1;    fView = view + 1;
188    fPlane = plane + 1;    fPlane = plane + 1;
189    fStrip = strip + 1;    fStrip = strip + 1;
190      //
191    if ( fPlane%2 ){    if ( fPlane%2 ){
192      lShift = -0.5;      lShift = +0.5;
193    } else {    } else {
194      lShift = 0.5;      lShift = -0.5;
195    };    };
196    //    //
197    shift_.shift = lShift;    shift_.shift = lShift;
# Line 96  void CaloStrip::Set(Int_t view, Int_t pl Line 214  void CaloStrip::Set(Int_t view, Int_t pl
214      //      //
215      // X view      // X view
216      //      //
217      fX = (lPos - CTX)/10.;      fX = (lPos - UXal)/10.;
218      fY = 0.;      fY = 0.;
219      fZ = (zplane[fPlane-1] - 5.81 + CTZ)/10.;          fZ = (zplane[fPlane-1] - 5.81 + UZal)/10.;    
220    } else {      //
221       } else {
222      //      //
223      // Y view      // Y view
224      //      //
225      fX = 0;      fX = 0;
226      fY = (lPos - CTY)/10.;      fY = (lPos - UYal)/10.;
227      fZ = (zplane[fPlane-1] + CTZ)/10.;      fZ = (zplane[fPlane-1] + UZal)/10.;
228    };    };
229    //      //  
230  };  };
# Line 115  void CaloStrip::Set(Int_t view, Int_t pl Line 234  void CaloStrip::Set(Int_t view, Int_t pl
234  **/  **/
235  void CaloStrip::Set(Float_t X, Float_t Y, Float_t Z) {  void CaloStrip::Set(Float_t X, Float_t Y, Float_t Z) {
236    //    //
237  //   Float_t lShift = 0.;    fX = X;
238  //   Float_t lPos = 0.;    fY = Y;
239  //   extern struct shift shift;    fZ = Z;
240  //   //    //
241  //   fView = view++;    Float_t zplane[22];
242  //   fPlane = plane++;    zplane[0] = 0.;
243  //   fStrip = strip++;    Int_t ii = 0;
244  //   if ( fPlane%2 ){    for ( Int_t i = 2; i < 23; i++){
245  //     lShift = -0.5;      ii = i-1;
246  //   } else {      if ( i%2 ){
247  //     lShift = 0.5;        zplane[ii] = zplane[ii-1] - 10.09;
248  //   };      } else {
249  //   //        zplane[ii] = zplane[ii-1] - 8.09;
250  //   shift.shift = lShift;      };
251  //   //    };
252  //   Float_t zplane[22];    //
253  //   zplane[0] = 0.;    Float_t dzx[22];
254  //   Int_t ii = 0;    Float_t dzy[22];
255  //   for ( Int_t i = 2; i < 23; i++){    for ( Int_t i=0; i < 22; i++){
256  //     ii = i-1;      dzx[i] = fabs(fZ*10. - (zplane[i] - 5.81 + UZal));
257  //     if ( i%2 ){      dzy[i] = fabs(fZ*10. - (zplane[i] + UZal));    
258  //       zplane[ii] = zplane[ii-1] - 10.09 + CTZ;    };
259  //     } else {    //
260  //       zplane[ii] = zplane[ii-1] - 8.09 + CTZ;    Float_t minx = TMath::MinElement(22,dzx);
261  //     };    Float_t miny = TMath::MinElement(22,dzy);
262  //   };    //
263  //   //    // find view
264  //   millim_(&fStrip,&lPos);    //
265  //   //    if ( minx < miny ){
266  //   if ( fView == 1 ){      fView = 1;
267  //     //    } else {
268  //     // X view      fView = 2;
269  //     //    };
270  //     fX = lPos;    //
271  //     fY = 0.;    // find plane
272  //     fZ = zplane[fPlane-1] - 5.81;        //
273  //   } else {    Float_t pos = 0.;
274  //     //    //
275  //     // Y view    for ( Int_t i=0; i < 22; i++){
276  //     //      if ( fView == 1 ){
277  //     fX = 0.;        if ( dzx[i] == minx ){
278  //     fY = lPos;          fPlane = i+1;
279  //     fZ = zplane[fPlane-1];          pos = fX*10. + UXal;
280  //   };        };
281        } else {
282          if ( dzy[i] == miny ){
283            fPlane = i+1;
284            pos = fY*10. + UYal;
285        };
286        };
287      };
288      //
289      // find strip
290      //
291      Float_t dxy[96];
292      Float_t stpos = 0.;
293      //
294      CaloStrip *ca = new CaloStrip();
295      //
296      for ( Int_t i=0; i < 96; i++){
297        ca->Set(fView-1,fPlane-1,i);
298        if ( fView == 1 ){
299          stpos = ca->GetX()*10. + UXal;
300        } else {
301          stpos = ca->GetY()*10. + UYal;
302        };
303        dxy[i] = fabs(pos - stpos);
304      };
305      //
306      delete ca;
307    //      //  
308      Float_t mins =  TMath::MinElement(96,dxy);
309      //
310      for ( Int_t i=0; i < 96; i++){
311        if ( dxy[i] == mins ) fStrip = i+1;
312      };
313  };  };
 //                      DISTY = PIANO(I)                  
 //                      YY(I) = DISTY * TG(2) + CY  
 //                      BAR(M,I) = YY(I)  
 //                      CBAR(M,I) = (-YALIG + YY(I))/10.  
 // C      
 //                   ENDIF  
 //                   CALL LASTRISCIA(BAR(M,I),IBAR(M,I))  
 //                   CIBAR(M,I) = IBAR(M,I)  
 //                ENDDO              
 //             ENDIF  
 // C  
 //          ENDDO  
   
314    
315    /**
316     * Given a point in the space or a strip it returns the Silicon sensor number. Numbering goes like this:
317     *
318     * y ^
319     *   |
320     *   |    6 7 8
321     *   |    3 4 5  
322     *   |    0 1 2
323     *   | -----------> x
324     *
325    **/
326    Int_t CaloStrip::GetSiSensor() {
327      //
328      // fX fY fZ // fView fPlane
329      //
330      Float_t deadsi = 0.096;
331      Float_t dead = 0.05;
332      Float_t sidim = 8.00;
333      //  Float_t stripdim = 0.244;
334      Float_t sensitarea = 7.808;
335      //
336      Float_t xoffset = 0.;
337      Float_t yoffset = 0.;
338      //
339      if ( (fView-1) == 0 && !((fPlane-1)%2) ){
340        xoffset = +0.05;
341        yoffset = 0.0;
342      };
343      if ( (fView-1) == 0 && ((fPlane-1)%2) ){
344        xoffset = -0.05;
345        yoffset = -0.20;
346      };
347      if ( (fView-1) == 1 && !((fPlane-1)%2) ){
348        xoffset = +0.10;
349        yoffset = -0.05;
350      };
351      if ( (fView-1) == 1 && ((fPlane-1)%2) ){
352        xoffset = -0.10;
353        yoffset = -0.15;
354      };
355      //
356      Int_t iind = -1;
357      Int_t jind = -1;
358      //
359      for (Int_t i = 0; i < 3; i++){
360        if ( (fX+xoffset+12.1) >= (deadsi+(sidim+dead)*i) && (fX+xoffset+12.1) <= (sensitarea+deadsi+(sidim+dead)*i) ){
361          iind = i;
362          break;
363        };
364      };
365      //
366      for (Int_t j = 0; j < 3; j++){
367        if ( (fY+yoffset+12.1) >= (deadsi+(sidim+dead)*j) && (fY+yoffset+12.1) <= (sensitarea+deadsi+(sidim+dead)*j) ){
368          jind = j;
369          break;
370        };
371      };
372      //
373      Int_t sensor = -1;
374      if ( iind != -1 &&  jind != -1 ){
375        sensor = iind + jind * 3;
376      };
377      //
378      //  printf(" View %i Plane %i x %f y %f z %f xoffset %f yoffset %f iind %i jind %i \n",fView,fPlane,fX,fY,fZ,xoffset,yoffset,iind,jind);
379      //
380      return(sensor);
381      //
382    };
383    
384  /**  /**
385   * CaloLevel1 constructor   * CaloLevel1 constructor
# Line 190  CaloLevel1::CaloLevel1() {     Line 395  CaloLevel1::CaloLevel1() {    
395  /**  /**
396   * Clear the CaloLevel1 object   * Clear the CaloLevel1 object
397   **/   **/
398  void CaloLevel1::Clear() {      void CaloLevel1::Clear(Option_t *t) {    
399    //    //
400    istrip = 0;    istrip = 0;
401    estrip.Reset();    estrip.Reset();
# Line 228  Float_t CaloLevel1::GetEstrip(Int_t svie Line 433  Float_t CaloLevel1::GetEstrip(Int_t svie
433   * Given estrip entry returns energy plus view, plane and strip numbers   * Given estrip entry returns energy plus view, plane and strip numbers
434  **/  **/
435  Float_t CaloLevel1::DecodeEstrip(Int_t entry, Int_t &view, Int_t &plane, Int_t &strip){  Float_t CaloLevel1::DecodeEstrip(Int_t entry, Int_t &view, Int_t &plane, Int_t &strip){
436      Bool_t sat = false;
437      Float_t mip=this->DecodeEstrip(entry,view,plane,strip,sat);
438      return(mip);
439    };
440    
441    /**
442     * Given estrip entry returns energy plus view, plane, strip numbers and saturation info
443    **/
444    Float_t CaloLevel1::DecodeEstrip(Int_t entry, Int_t &view, Int_t &plane, Int_t &strip, Bool_t &saturated){
445    //    //
446    if ( entry>istrip ) return(0.);    if ( entry>istrip ){
447        //
448        printf(" ERROR: problems decoding entry %i, it seems that number of entries is %i\n",entry,istrip);
449        //
450        return(0.);
451      };
452    //    //
453    //  printf(" num lim %f \n",std::numeric_limits<Float_t>::max());    //  printf(" num lim %f \n",std::numeric_limits<Float_t>::max());
454    //  printf(" estrip.At(%i) = %i \n",entry,estrip.At(entry));    //  printf(" estrip.At(%i) = %i \n",entry,estrip.At(entry));
# Line 271  Float_t CaloLevel1::DecodeEstrip(Int_t e Line 490  Float_t CaloLevel1::DecodeEstrip(Int_t e
490    //    //
491    strip = (Int_t)truncf((Float_t)((eval - fbi*1000000000 -plom*10000000)/100000));    strip = (Int_t)truncf((Float_t)((eval - fbi*1000000000 -plom*10000000)/100000));
492    //    //
493    Float_t mip = ((Float_t)(eval - fbi*1000000000 -plom*10000000 -strip*100000))/tim;    Double_t mip = (Double_t)(((Float_t)(eval - fbi*1000000000 -plom*10000000 -strip*100000))/tim);
494    //    //
495    if ( mip > 0. && mip < 99999. ) return(mip);    saturated = false;
496      if ( mip > 5000. ){
497        mip -= 5000.;
498        saturated = true;
499      };
500      if ( mip > 0. && mip < 99999. ) return((Float_t)mip);
501    //    //
502    printf(" WARNING: problems decoding value %i at entry %i \n",estrip.At(entry),entry);    printf(" ERROR: problems decoding value %i at entry %i \n",estrip.At(entry),entry);
503    //    //
504    view = -1;    view = -1;
505    plane = -1;    plane = -1;
# Line 283  Float_t CaloLevel1::DecodeEstrip(Int_t e Line 507  Float_t CaloLevel1::DecodeEstrip(Int_t e
507    return(0.);      return(0.);  
508  }  }
509    
510    /*
511     * Returns energy released on plane nplane (where 0<= nplane <= 43, 0 = 1Y, 1 = 1X, 2 = 2Y, 3 = 2X, etc. etc.).
512     */
513    Float_t CaloLevel1::qtotpl(Int_t nplane){
514      Bool_t sat = false;
515      Float_t mip = this->qtotpl(nplane,sat);
516      return(mip);
517    };
518    
519    /*
520     * Returns energy released on plane nplane (where 0<= nplane <= 43, 0 = 1Y, 1 = 1X, 2 = 2Y, 3 = 2X, etc. etc.).
521     */
522    Float_t CaloLevel1::qtotpl(Int_t nplane, Bool_t &sat){
523      //
524      sat = false;
525      Int_t sview = 1;
526      if ( nplane%2 ) sview = 0;
527      //
528    //  Int_t splane = nplane-(sview+1)/2;
529      Int_t splane = (nplane+sview-1)/2;
530      //
531      Float_t totmip = qtotpl(sview,splane,sat);
532      //
533      return(totmip);
534      //
535    };
536    
537    /*
538     * Returns energy released on view "view" (0 = X, 1 = Y) and plane "plane" ( 0 <= plane <= 21 ).
539     */
540    Float_t CaloLevel1::qtotpl(Int_t sview, Int_t splane){
541      Bool_t sat = false;
542      Float_t mip = this->qtotpl(sview,splane,sat);
543      return(mip);
544    };
545    
546    /*
547     * Returns energy released on view "view" (0 = X, 1 = Y) and plane "plane" ( 0 <= plane <= 21 ).
548     */
549    Float_t CaloLevel1::qtotpl(Int_t sview, Int_t splane, Bool_t &sat){
550      //
551      Int_t view = -1;
552      Int_t plane = -1;
553      Int_t strip = -1;
554      Bool_t lsat = false;
555      sat = false;
556      //
557      Float_t mip = 0.;
558      Float_t totmip = 0.;
559      //
560      if ( istrip == 0 ) return(0.);
561      //
562      for (Int_t i = 0; i<istrip; i++ ){
563        //
564        mip = DecodeEstrip(i,view,plane,strip,lsat);
565        //
566        if ( view == sview && splane == plane ){
567          if ( lsat ) sat = true;
568          totmip += mip;
569          //printf(" totmip %f mip %f \n",totmip,mip);
570        };
571        //
572        // entry are ordered by strip, plane and view number. Go out if you pass the input strip
573        //
574        if ( view == sview && plane > splane ) return(totmip);
575        if ( view > sview ) return(totmip);
576        //
577      };
578      //
579      return(totmip);
580      //
581    };

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

  ViewVC Help
Powered by ViewVC 1.1.23