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