]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDDigit.h
Coding violations
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDDigit.h
1 #ifndef AliHMPIDDigit_h
2 #define AliHMPIDDigit_h
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 // Class of HMPID to manage digits ---> pads
7 //.
8 //.
9 //.
10
11 #include <AliDigit.h>      //base class  
12 #include "TMath.h"         //Mathieson()
13 #include <AliBitPacking.h> //Raw()
14
15
16 class TClonesArray;        //Hit2Sdi()
17   
18 class AliHMPIDDigit :public AliDigit //TObject-AliDigit-AliHMPIDDigit
19 {
20 public:
21   enum EChamberData{kMinCh=0,kMaxCh=6,kMinPc=0,kMaxPc=5};      //Segmenation     
22   enum EPadxData{kPadPcX=80,kMinPx=0,kMaxPx=79,kMaxPcx=159};   //Segmentation structure along x
23   enum EPadyData{kPadPcY=48,kMinPy=0,kMaxPy=47,kMaxPcy=143};   //Segmentation structure along y
24 //ctor&dtor    
25   AliHMPIDDigit(                          ):AliDigit( ),fPad(Abs(-1,-1,-1,-1)),fQ(-1)  {}                         //default ctor
26   AliHMPIDDigit(Int_t pad,Int_t q,Int_t *t):AliDigit(t),fPad(pad             ),fQ(q )  {}                         //digit ctor
27   AliHMPIDDigit(const AliHMPIDDigit &d    ):AliDigit(d),fPad(d.fPad),fQ(d.fQ)          {}                         //copy ctor
28   virtual ~AliHMPIDDigit()                                                             {}                         //dtor   
29 //framework part    
30          Bool_t  IsSortable  (                               )const{return kTRUE;}                                                     //provision to use TObject::Sort() 
31   inline Int_t   Compare     (const TObject *pObj            )const;                                                                   //provision to use TObject::Sort()
32          void    Draw        (Option_t *opt=""               );                                                                        //TObject::Draw() overloaded
33          void    Print       (Option_t *opt=""               )const;                                                                   //TObject::Print() overloaded
34 //private part  
35   static Int_t   Abs         (Int_t ch,Int_t pc,Int_t x,Int_t y)   {return ch*100000000+pc*1000000+x*1000+y;                         } //(ch,pc,padx,pady)-> abs pad
36   static Int_t   A2C         (Int_t pad                      )     {return pad/100000000;                                            } //abs pad -> chamber
37   static Int_t   A2P         (Int_t pad                      )     {return pad%100000000/1000000;                                    } //abs pad -> pc
38   static Int_t   A2X         (Int_t pad                      )     {return pad%1000000/1000;                                         } //abs pad -> pad X 
39   static Int_t   A2Y         (Int_t pad                      )     {return pad%1000;                                                 } //abs pad -> pad Y 
40          void    AddTidOffset(Int_t offset                   )     {for (Int_t i=0; i<3; i++) if (fTracks[i]>0) fTracks[i]+=offset;  } //needed for merging
41          Int_t   Ch          (                               )const{return A2C(fPad);                                                } //chamber number
42   static Bool_t  IsOverTh    (Float_t q                      )     {return q >= fgSigmas;                                            } //is digit over threshold????
43   static Bool_t  IsInside    (Float_t x,Float_t y,Float_t margin=0){return x>-margin&&y>-margin&&x<SizeAllX()+margin&&y<SizeAllY()+margin;} //is point inside chamber boundary?
44          Float_t LorsX       (                               )const{return LorsX(A2P(fPad),A2X(fPad));                               } //center of the pad x, [cm]
45   static Float_t LorsX       (Int_t pc,Int_t padx            )     {return (padx    +0.5)*SizePadX()+(pc  %2)*(SizePcX()+SizeDead());} //center of the pad x, [cm]
46          Float_t LorsY       (                               )const{return LorsY(A2P(fPad),A2Y(fPad));                               } //center of the pad y, [cm]
47   static Float_t LorsY       (Int_t pc,Int_t pady            )     {return (pady    +0.5)*SizePadY()+(pc  /2)*(SizePcY()+SizeDead());} //center of the pad y, [cm]
48   inline Float_t IntMathieson(Float_t x,Float_t y            )const;                                                                   //Mathieson distribution 
49          Int_t   PadPcX      (                               )const{return A2X(fPad);}                                                 //pad pc x # 0..79
50          Int_t   PadPcY      (                               )const{return A2Y(fPad);}                                                 //pad pc y # 0..47
51          Int_t   PadChX      (                               )const{return (Pc()%2)*kPadPcX+PadPcX();}                                 //pad ch x # 0..159
52          Int_t   PadChY      (                               )const{return (Pc()/2)*kPadPcY+PadPcY();}                                 //pad ch y # 0..143
53          Int_t   Pad         (                               )const{return fPad;}                                                      //absolute id of this pad
54          Int_t   Pc          (                               )const{return A2P(fPad);}                                                 //PC position number
55          Float_t Q           (                               )const{return fQ;}                                                        //charge, [QDC]
56   inline void    Raw         (UInt_t &w32,Int_t &ddl,Int_t &r,Int_t &d,Int_t &a)const;                                                 //digit->(w32,ddl,r,d,a)
57   inline void    Raw         (UInt_t  w32,Int_t  ddl         );                                                                        //(w32,ddl)->digit
58   inline Bool_t  Set         (Int_t c,Int_t p,Int_t x,Int_t y,Int_t tid=0);                                                            //manual creation 
59          void    SetQ        (Float_t q                      )     {fQ=q;}                                                             //manual creation 
60          void    SetSigmas   (Int_t sigmas                   )     {fgSigmas=sigmas;}                                                  //manual creation 
61   static void    WriteRaw    (TObjArray *pDigLst             );                                                                        //write as raw stream     
62   
63   static Float_t CathAnoCath (                               )     {return 0.445;}                                                     //Cathode-Anode-cathode pitch
64   static Float_t MaxPcX      (Int_t iPc                      )     {return fgkMaxPcX[iPc];}                                            // PC limits
65   static Float_t MaxPcY      (Int_t iPc                      )     {return fgkMaxPcY[iPc];}                                            // PC limits
66   static Float_t MinPcX      (Int_t iPc                      )     {return fgkMinPcX[iPc];}                                            // PC limits
67   static Float_t MinPcY      (Int_t iPc                      )     {return fgkMinPcY[iPc];}                                            // PC limits
68   static Int_t   Sigmas      (                               )     {return fgSigmas;}                                                  // Getter n. sigmas for noise
69   static Float_t SizeAllX    (                               )     {return fgkMaxPcX[5];}                                              //all PCs size x, [cm]        
70   static Float_t SizeAllY    (                               )     {return fgkMaxPcY[5];}                                              //all PCs size y, [cm]    
71   static Float_t SizeArea    (                               )     {return SizePcX()*SizePcY()*(kMaxPc-kMinPc+1);}                     //sence area, [cm^2]  
72   static Float_t SizeDead    (                               )     {return 2.6;}                                                       //dead zone size x, [cm]         
73   static Float_t SizeGap     (                               )     {return 8;  }
74   static Float_t SizePadX    (                               )     {return 0.8;}                                                       //pad size x, [cm]  
75   static Float_t SizePadY    (                               )     {return 0.84;}                                                      //pad size y, [cm]  
76   static Float_t SizePcX     (                               )     {return fgkMaxPcX[0];}                                              //PC size x, [cm]        
77   static Float_t SizePcY     (                               )     {return fgkMaxPcY[0];}                                              //PC size y, [cm]    
78   static Float_t SizeWin     (                               )     {return 0.5;}                                                       //Quartz window width
79   static Float_t SizeRad     (                               )     {return 1.5;}                                                       //Rad width   
80   inline static Bool_t IsInDead(Float_t x,Float_t y        );                                                                          //is point in dead area?
81   inline static void   Lors2Pad(Float_t x,Float_t y,Int_t &pc,Int_t &px,Int_t &py);                                                    //(x,y)->(pc,px,py) 
82 protected:                                                                   //AliDigit has fTracks[3]
83   static Int_t fgSigmas;                                                                                                               //sigma cut on charge 
84   static const Float_t fgkMinPcX[6];                                                                                                   //limits PC
85   static const Float_t fgkMinPcY[6];                                                                                                   //limits PC
86   static const Float_t fgkMaxPcX[6];                                                                                                   //limits PC
87   static const Float_t fgkMaxPcY[6];                                                                                                   //limits PC
88   static const Float_t fgk1;                                                                                                           //Mathieson parameters
89   static const Float_t fgk2;                                                                                                           //...
90   static const Float_t fgkSqrtK3;                                                                                                      //...
91   static const Float_t fgk4;                                                                                                           //...
92   Int_t    fPad;                                                                                                                       //absolute pad number
93   Float_t  fQ;                                                               //QDC value, fractions are permitted for summable procedure  
94   ClassDef(AliHMPIDDigit,4)                                                  //HMPID digit class       
95 };//class AliHMPIDDigit
96
97 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
98 void AliHMPIDDigit::Lors2Pad(Float_t x,Float_t y,Int_t &pc,Int_t &px,Int_t &py)
99 {
100 // Check the pad of given position
101 // Arguments: x,y- position [cm] in LORS; pc,px,py- pad where to store the result
102 //   Returns: none
103   pc=px=py=-1;
104   if     (x>=          0          && x<=  SizePcX()            ) {pc=0; px=Int_t( x                           / SizePadX());}//PC 0 or 2 or 4
105   else if(x>=SizePcX()+SizeDead() && x<=  SizeAllX()           ) {pc=1; px=Int_t((x-  SizePcX()-  SizeDead()) / SizePadX());}//PC 2 or 4 or 6
106   else return;
107   if     (y>=          0          && y<=  SizePcY()            ) {      py=Int_t( y                           / SizePadY());}//PC 0 or 1
108   else if(y>=SizePcY()+SizeDead() && y<=2*SizePcY()+SizeDead() ) {pc+=2;py=Int_t((y-  SizePcY()-  SizeDead()) / SizePadY());}//PC 2 or 3
109   else if(y>=SizeAllY()-SizePcY() && y<=  SizeAllY()           ) {pc+=4;py=Int_t((y-2*SizePcY()-2*SizeDead()) / SizePadY());}//PC 4 or 5
110   else return;
111 }
112 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
113 Int_t AliHMPIDDigit::Compare(const TObject *pObj) const
114 {
115 // Used in Sort() method to compare to objects. Note that abs pad structure is first x then y, hence will be sorted on column basis.
116 // This feature is used in digitizer to facilitate finding of sdigits for the same pad since they all will come together after sorting.
117 // Arguments: pObj - pointer to object to compare with
118 //   Retunrs: -1 if AbsPad less then in pObj, 1 if more and 0 if they are the same      
119   if     (fPad==((AliHMPIDDigit*)pObj)->Pad()) return  0;
120   else if(fPad >((AliHMPIDDigit*)pObj)->Pad()) return  1;
121   else                                         return -1;
122 }
123 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
124 Bool_t AliHMPIDDigit::IsInDead(Float_t x,Float_t y)
125 {
126 // Check is the current point is outside of sensitive area or in dead zones
127 // Arguments: x,y -position
128 //   Returns: 1 if not in sensitive zone           
129   if(x<0 || x>SizeAllX() || y<0 || y>SizeAllY()) return kTRUE; //out of pc 
130   
131   if(x>SizePcX()  && x<SizePcX()+SizeDead())   return kTRUE; //in dead zone along x  
132   
133   if(y>SizePcY()                       && y<SizePcY()+SizeDead())      return kTRUE; //in first dead zone along y   
134   if(y>SizeAllY()-SizePcY()-SizeDead() && y<SizeAllY()-SizePcY())      return kTRUE; //in second dead zone along y   
135   return kFALSE;
136 }
137 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
138 Float_t AliHMPIDDigit::IntMathieson(Float_t x,Float_t y)const
139 {
140 // Integration of Mathieson.
141 // This is the answer to electrostatic problem of charge distrubution in MWPC described elsewhere. (NIM A370(1988)602-603)
142 // Arguments: x,y- position of the center of Mathieson distribution
143 //  Returns: a charge fraction [0-1] imposed into the pad
144 //  K1    =0.28278796
145 //  K2    =0.96242952
146 //  SqrtK3=0.77459667
147 //  K4    =0.37932926
148
149   Float_t ux1=fgkSqrtK3*TMath::TanH(fgk2*(x-LorsX()+0.5*SizePadX())/CathAnoCath());
150   Float_t ux2=fgkSqrtK3*TMath::TanH(fgk2*(x-LorsX()-0.5*SizePadX())/CathAnoCath());
151   Float_t uy1=fgkSqrtK3*TMath::TanH(fgk2*(y-LorsY()+0.5*SizePadY())/CathAnoCath());
152   Float_t uy2=fgkSqrtK3*TMath::TanH(fgk2*(y-LorsY()-0.5*SizePadY())/CathAnoCath());
153   return 4*fgk4*(TMath::ATan(ux2)-TMath::ATan(ux1))*fgk4*(TMath::ATan(uy2)-TMath::ATan(uy1));
154 }
155 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
156 void AliHMPIDDigit::Raw(UInt_t &w32,Int_t &ddl,Int_t &r,Int_t &d,Int_t &a)const
157 {
158 // Convert digit structure to raw word format
159 // Arguments: w32,ddl,r,d,a where to write the results
160 //   Returns: none
161   Int_t y2a[6]={5,3,1,0,2,4};
162
163                                   ddl=2*Ch()+Pc()%2;                     //DDL# 0..13
164   Int_t tmp=1+Pc()/2*8+PadPcY()/6;  r=(Pc()%2)? 25-tmp:tmp;              //row r=1..24
165                                     d=1+PadPcX()/8;                      //DILOGIC# 1..10
166                                     a=y2a[PadPcY()%6]+6*(PadPcX()%8);    //ADDRESS 0..47        
167       
168   w32=0;    
169   AliBitPacking::PackWord((UInt_t)fQ,w32, 0,11);  // 0000 0rrr rrdd ddaa aaaa qqqq qqqq qqqq        Qdc               bits (00..11) counts (0..4095)
170   AliBitPacking::PackWord(        a ,w32,12,17);  // 3322 2222 2222 1111 1111 1000 0000 0000        DILOGIC address   bits (12..17) counts (0..47)
171   AliBitPacking::PackWord(        d ,w32,18,21);  // 1098 7654 3210 9876 5432 1098 7654 3210        DILOGIC number    bits (18..21) counts (1..10)
172   AliBitPacking::PackWord(        r ,w32,22,26);  //                                                Row number        bits (22..26) counts (1..24)  
173 }
174 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
175 void AliHMPIDDigit::Raw(UInt_t w32,Int_t ddl)
176 {
177 // Converts a given raw data word to a digit
178 // Arguments: w32 - 32 bits raw data word
179 //            ddl - DDL idx  0 1 2 3 4 ... 13
180 //   Returns: none
181   Int_t a2y[6]={3,2,4,1,5,0};//pady for a given address (for single DILOGIC chip)
182   Int_t r = AliBitPacking::UnpackWord(w32,22,26); assert(1<=r&&r<=24);   //                                         Row number      (1..24)    
183   Int_t d = AliBitPacking::UnpackWord(w32,18,21); assert(1<=d&&d<=10);   // 3322 2222 2222 1111 1111 1000 0000 0000 DILOGIC number  (1..10)
184   Int_t a = AliBitPacking::UnpackWord(w32,12,17); assert(0<=a&&a<=47);   // 1098 7654 3210 9876 5432 1098 7654 3210 DILOGIC address (0..47)  
185   Int_t q = AliBitPacking::UnpackWord(w32, 0,11); assert(0<=q&&q<=4095); // 0000 0rrr rrdd ddaa aaaa qqqq qqqq qqqq Qdc             (0..4095)   
186                                   Int_t ch=ddl/2;
187   Int_t tmp=(r-1)/8;              Int_t pc=(ddl%2)? 5-2*tmp:2*tmp; 
188                                   Int_t px=(d-1)*8+a/6;
189         tmp=(ddl%2)?(24-r):r-1;   Int_t py=6*(tmp%8)+a2y[a%6];
190   fPad=Abs(ch,pc,px,py);fQ=q;
191 }
192 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
193 Bool_t AliHMPIDDigit::Set(Int_t ch,Int_t pc,Int_t px,Int_t py,Int_t tid)
194 {
195 // Manual creation of digit
196 // Arguments: ch,pc,px,py,qdc,tid  
197 //   Returns: kTRUE if wrong digit
198   if(px<kMinPx || px>kMaxPx) return kTRUE;
199   if(py<kMinPy || py>kMaxPy) return kTRUE;
200
201   fPad=Abs(ch,pc,px,py);fTracks[0]=tid;
202   fQ=0;
203   return kFALSE;
204 }
205 #endif