]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONResponseTriggerV1.cxx
Added fit macro from M. Putis
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseTriggerV1.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //-----------------------------------------------------------------------------
19 // Class AliMUONTriggerResponseV1
20 // ------------------
21 // Trigger chamber response 
22 // with cluster size activated
23 //-----------------------------------------------------------------------------
24
25 #include "AliMUONResponseTriggerV1.h"
26 #include "AliMUON.h"
27 #include "AliMUONDigit.h"
28 #include "AliMUONGeometryTransformer.h"
29 #include "AliMUONConstants.h"
30
31 #include "AliMpPad.h"
32 #include "AliMpSegmentation.h"
33 #include "AliMpVSegmentation.h"
34 #include "AliMpCathodType.h"
35
36 #include "AliRun.h"
37
38 #include <TMath.h>
39 #include <TRandom.h>
40
41 /// \cond CLASSIMP
42 ClassImp(AliMUONResponseTriggerV1)
43 /// \endcond
44
45 namespace
46 {
47   AliMUON* muon()
48   {
49     return static_cast<AliMUON*>(gAlice->GetModule("MUON"));
50   }
51
52   void Global2Local(Int_t detElemId, Double_t xg, Double_t yg, Double_t zg,
53                   Double_t& xl, Double_t& yl, Double_t& zl)
54   {  
55   // ideally should be : 
56   // Double_t x,y,z;
57   // AliMUONGeometry::Global2Local(detElemId,xg,yg,zg,x,y,z);
58   // but while waiting for this geometry singleton, let's go through
59   // AliMUON still.
60   
61     const AliMUONGeometryTransformer* transformer = muon()->GetGeometryTransformer();
62     transformer->Global2Local(detElemId,xg,yg,zg,xl,yl,zl);
63   }
64
65 }
66
67 //------------------------------------------------------------------   
68 AliMUONResponseTriggerV1::AliMUONResponseTriggerV1()
69     : AliMUONResponseTrigger(),
70       fGenerCluster(0),
71       fA(0),
72       fB(0),       
73       fC(0)
74 {
75 /// default constructor 
76   Float_t hv=9.2;
77   SetParameters(hv);
78 }
79
80 //------------------------------------------------------------------   
81 AliMUONResponseTriggerV1::AliMUONResponseTriggerV1(Float_t hv)
82     : AliMUONResponseTrigger(),
83       fGenerCluster(0),
84       fA(0),
85       fB(0),       
86       fC(0)
87 {
88 /// Constructor 
89   SetParameters(hv);
90 }
91
92 //------------------------------------------------------------------   
93 AliMUONResponseTriggerV1::~AliMUONResponseTriggerV1()
94 {
95 /// destructor 
96 }
97
98 //------------------------------------------------------------------   
99 void AliMUONResponseTriggerV1::SetParameters(Float_t hv)
100 {
101 /// initialize parameters accoring to HV
102 /// (see V.Barret B.Espagnon and P.Rosnet Alice/note xxx)
103 /// this parametrisation is valid only for the "streamer" mode
104   fA = 6.089 * hv - 52.70;
105   fB = 2.966;
106   fC = 4.3e-4 * hv - 3.5e-3;
107 }
108
109 //------------------------------------------------------------------   
110 Int_t AliMUONResponseTriggerV1::SetGenerCluster()
111 {
112 /// Set the GenerCluster parameter and return 1
113   fGenerCluster = gRandom->Rndm();
114   return 1;
115 }
116
117 //------------------------------------------------------------------   
118 Float_t AliMUONResponseTriggerV1::FireStripProb(Float_t x4, Float_t theta)
119 const
120 {
121 /// parametrisation of the probability that a strip neighbour of the main 
122 /// strip is fired (V.Barret B.Espagnon and P.Rosnet INT/DIM/01-04 (2001)
123 /// WARNING : need to convert x4 from cm to mm
124 /// this parametrisation is valid only for the "streamer" mode
125
126  return 
127      (TMath::Cos(theta)*fA/(fA+TMath::Cos(theta)*TMath::Power(x4*10.,fB))+fC)/
128      (TMath::Cos(theta)+fC);
129 }
130
131 //------------------------------------------------------------------  
132 void AliMUONResponseTriggerV1::DisIntegrate(const AliMUONHit& hit, TList& digits, Float_t /*timeDif*/)
133 {
134   /// Generate digits (on each cathode) from 1 hit, with cluster-size
135   /// generation.
136   
137   digits.Clear();
138   
139   Float_t xhit = hit.X();
140   Float_t yhit = hit.Y();
141   Float_t zhit = hit.Z();
142   Int_t detElemId = hit.DetElemId();  
143   
144   Double_t x,y,z;
145   Global2Local(detElemId,xhit,yhit,zhit,x,y,z);
146   
147   Float_t tof = hit.Age();
148   Int_t twentyNano(100);
149   if (tof<AliMUONConstants::TriggerTofLimit())
150   {
151     twentyNano=1;
152   }
153
154   Bool_t isTrig[2]={kTRUE, kTRUE};
155
156   for ( Int_t cath = AliMp::kCath0; cath <= AliMp::kCath1; ++cath )
157   {
158     const AliMpVSegmentation* seg 
159       = AliMpSegmentation::Instance()
160         ->GetMpSegmentation(detElemId,AliMp::GetCathodType(cath));
161
162     AliMpPad pad = seg->PadByPosition(x,y,kFALSE);
163     Int_t ix = pad.GetIx();
164     Int_t iy = pad.GetIy();
165     
166     AliDebug(1,Form("xhit,yhit=%e,%e lx,ly,lz=%e,%e,%e ix,iy=%d,%d",
167                     xhit,yhit,x,y,z,ix,iy));
168     
169     if ( !pad.IsValid() )
170     {
171       AliWarning(Form("hit w/o strip %d-%d xhit,yhit=%e,%e local x,y,z "
172                       "%e,%e,%e ix,iy=%d,%d",detElemId,
173                       cath,
174                       xhit,yhit,x,y,z,ix,iy));
175       continue;
176     }
177     AliMUONDigit* d = new AliMUONDigit(detElemId,pad.GetLocalBoardId(0),
178                                        pad.GetLocalBoardChannel(0),
179                                        cath);
180     d->SetPadXY(ix,iy);
181
182     d->SetCharge(twentyNano);
183
184     if(fTriggerEfficiency){
185       if(cath==0){
186         Int_t nboard = pad.GetLocalBoardId(0);
187         fTriggerEfficiency->IsTriggered(detElemId, nboard, 
188                                         isTrig[0], isTrig[1]);
189       }
190       if(!isTrig[cath]) continue;
191     }
192
193     digits.Add(d);
194
195     SetGenerCluster(); // 1 randum number per cathode (to be checked)
196
197     Int_t xList[10], yList[10];
198     Neighbours(cath,ix,iy,xList,yList);
199     
200 //    cout << " detElemId cath ix iy = " << detElemId << " " << cath 
201 //       << " " << ix << " " << iy << "\n";
202 //    for (Int_t i=0; i<10; i++) cout << " " << xList[i] << " " << yList[i];
203 //    cout << "\n";
204
205     Int_t qp = 0; // fired/no-fired strip = 1/0
206     for (Int_t i=0; i<10; i++) { // loop on neighbors
207         if (i==0||i==5||qp!=0) { // built-up cluster
208             
209             // need to iterate in iy/ix for bending/non-bending plane
210             Int_t ixNeigh = ( cath == 0 ) ? ix : xList[i];
211             Int_t iyNeigh = ( cath == 0 ) ? yList[i] : iy;
212             
213             AliMpPad padNeigh = seg->PadByIndices(ixNeigh,iyNeigh,kFALSE);
214             if(padNeigh.IsValid()){ // existing neighbourg              
215                 
216                 Int_t dix=-(ixNeigh-ix);
217                 Int_t diy=-(iyNeigh-iy);
218                 Float_t xlocalNeigh = padNeigh.GetPositionX();
219                 Float_t ylocalNeigh = padNeigh.GetPositionY();
220                 Float_t dpx = padNeigh.GetDimensionX();
221                 Float_t dpy = padNeigh.GetDimensionY();
222                 Float_t distX = TMath::Abs((Float_t)dix) * ((Float_t)dix * dpx + xlocalNeigh - x);
223                 Float_t distY = TMath::Abs((Float_t)diy) * ((Float_t)diy * dpy + ylocalNeigh - y);
224                 Float_t dist = TMath::Sqrt(distX*distX+distY*distY);
225                 
226 //              cout << " here " << dist << " " << fGenerCluster << " " << FireStripProb(dist,0) << "\n";
227                 
228                 if (fGenerCluster<FireStripProb(dist,0)) qp = 1;
229                 else qp = 0;
230                 
231                 if (qp == 1) { // this digit is fired    
232                     AliMUONDigit* dNeigh = new AliMUONDigit(detElemId,padNeigh.GetLocalBoardId(0),
233                                                 padNeigh.GetLocalBoardChannel(0),
234                                                 cath);
235                     
236                     dNeigh->SetPadXY(ixNeigh,iyNeigh);      
237                     dNeigh->SetCharge(twentyNano);
238                     digits.Add(dNeigh);
239                 } // digit fired                
240             } // pad is valid
241         } // built-up cluster
242     } // loop on neighbors
243   } // loop on cathode
244 }
245
246 //------------------------------------------------------------------  
247 void AliMUONResponseTriggerV1::Neighbours(const Int_t cath, 
248                                           const Int_t ix, const Int_t iy, 
249                                           Int_t Xlist[10], Int_t Ylist[10]) const
250 {
251     ///-----------------BENDING-----------------------------------------      /n
252     /// Returns list of 10 next neighbours for given X strip (ix, iy)         /n
253     /// neighbour number 4 in the list -                                      /n    
254     /// neighbour number 3 in the list  |                                     /n   
255     /// neighbour number 2 in the list  |_ Upper part                         /n         
256     /// neighbour number 1 in the list  |                                     /n    
257     /// neighbour number 0 in the list -                                      /n   
258     ///      X strip (ix, iy)                                                 /n
259     /// neighbour number 5 in the list -                                      /n
260     /// neighbour number 6 in the list  | _ Lower part                        /n
261     /// neighbour number 7 in the list  |                                     /n
262     /// neighbour number 8 in the list  |                                     /n
263     /// neighbour number 9 in the list -                                      /n
264     ///                                                                       /n
265     ///-----------------NON-BENDING-------------------------------------      /n
266     /// Returns list of 10 next neighbours for given Y strip (ix, iy)         /n 
267     /// neighbour number 9 8 7 6 5 (Y strip (ix, iy)) 0 1 2 3 4 in the list   /n 
268     ///                  |_______|                    |_______/               /n 
269
270     ///                    left                         right                 /n
271     
272     for (Int_t i=0; i<10; i++) {
273         Xlist[i]=-1;
274         Ylist[i]=-1;
275     }
276     
277     Int_t iList[10]={9,8,7,6,5, 0,1,2,3,4};
278
279     // need to iterate in iy/ix for bending/non-bending plane
280     Int_t iNeigh = ( cath == 0 ) ? iy : ix;
281     
282     Int_t i=0;
283     for (Int_t j=iNeigh-5; j<=iNeigh+5; j++){
284         if (j == iNeigh) continue;
285         // need to iterate in iy/ix for bending/non-bending plane
286         Int_t ixNeigh = ( cath == 0 ) ? ix : j;
287         Int_t iyNeigh = ( cath == 0 ) ? j : iy;
288         
289 //      cout << " " << cath << " " << ix << " " << iy 
290 //           << " "  << ixNeigh << " " << iyNeigh << "\n";
291         
292         Xlist[iList[i]]=ixNeigh;        
293         Ylist[iList[i]]=iyNeigh;        
294         i++;
295     } 
296 }
297