1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
21 #include "AliMUONSegmentationV0.h"
22 #include "AliMUONChamber.h"
27 ClassImp(AliMUONSegmentationV0)
29 AliMUONSegmentationV0::AliMUONSegmentationV0()
36 AliMUONSegmentationV0::AliMUONSegmentationV0(const AliMUONSegmentationV0& segmentation)
37 : AliSegmentation(segmentation)
39 // Protected copy constructor
41 AliFatal("Not implemented.");
46 // Commented out - not used
48 void AliMUONSegmentationV0::Init(Int_t chamber)
50 // Initialises member data of the segmentation from geometry data
54 AliMUON *pMUON = (AliMUON *) gAlice->GetModule("MUON");
55 fChamber=&(pMUON->Chamber(chamber));
57 // Initialise maximum number of pads in x ans y
58 fNpx=(Int_t) (fChamber->ROuter()/fDpx+1);
59 fNpy=(Int_t) (fChamber->ROuter()/fDpy+1);
60 // Initialize inner and outer radius of the sensitive region
61 fRmin=fChamber->RInner();
62 fRmax=fChamber->ROuter();
69 Float_t AliMUONSegmentationV0::GetAnod(Float_t xhit) const
71 // Returns for a hit position xhit the position of the nearest anode wire
72 Float_t wire= (xhit>0)? Int_t(xhit/fWireD)+0.5:Int_t(xhit/fWireD)-0.5;
75 //____________________________________________________________________________
76 void AliMUONSegmentationV0::GetNParallelAndOffset(Int_t /*iX*/, Int_t /*iY*/, Int_t *Nparallel, Int_t *Offset)
83 //____________________________________________________________________________
84 void AliMUONSegmentationV0::GetPadI(Float_t x, Float_t y , Float_t /*z*/, Int_t &ix, Int_t &iy)
86 GetPadI(x, y, ix, iy);
88 //____________________________________________________________________________
89 void AliMUONSegmentationV0::SetCorrFunc(Int_t /*dum*/, TF1* func)
93 //____________________________________________________________________________
94 Int_t AliMUONSegmentationV0::Sector(Int_t /*ix*/, Int_t /*iy*/)
98 //____________________________________________________________________________
99 Int_t AliMUONSegmentationV0::Sector(Float_t /*x*/, Float_t /*y*/)
103 //____________________________________________________________________________
104 void AliMUONSegmentationV0::SetPadSize(Float_t p1, Float_t p2)
112 void AliMUONSegmentationV0::
113 GetPadI(Float_t x, Float_t y, Int_t &ix, Int_t &iy)
115 // Returns pad coordinates (ix,iy) for given real coordinates (x,y)
117 ix = (x>0)? Int_t(x/fDpx)+1 : Int_t(x/fDpx)-1;
118 iy = (y>0)? Int_t(y/fDpy)+1 : Int_t(y/fDpy)-1;
119 if (iy > fNpy) iy= fNpy;
120 if (iy < -fNpy) iy=-fNpy;
121 if (ix > fNpx) ix= fNpx;
122 if (ix < -fNpx) ix=-fNpx;
125 void AliMUONSegmentationV0::
126 GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y)
128 // Returns real coordinates (x,y) for given pad coordinates (ix,iy)
130 // Comments and Critics:
132 // The Pad(0,0) does not exist, this causes in the present version errors
133 // during iteration when used with hits close to zero.
134 // Since we have frame crosses at x=0 or y=0 this does not cause any problems
135 // Nevertheless, should be corrected in the next version !!
136 // The name fRmin is misleading although we use this version with
137 // a circular chamber geometry.
139 x = (ix>0) ? Float_t(ix*fDpx)-fDpx/2. : Float_t(ix*fDpx)+fDpx/2.;
140 y = (iy>0) ? Float_t(iy*fDpy)-fDpy/2. : Float_t(iy*fDpy)+fDpy/2.;
142 //______________________________________________________________________
143 void AliMUONSegmentationV0::SetHit(Float_t xhit, Float_t yhit)
146 // Sets virtual hit position, needed for evaluating pad response
147 // outside the tracking program
151 //_______________________________________________________________________
152 void AliMUONSegmentationV0::SetHit(Float_t xhit, Float_t yhit, Float_t /*zhit*/)
156 //_______________________________________________________________________
159 void AliMUONSegmentationV0::
160 SetPad(Int_t ix, Int_t iy)
163 // Sets virtual pad coordinates, needed for evaluating pad response
164 // outside the tracking program
165 GetPadC(ix,iy,fX,fY);
167 //____________________________________________________________________________________
168 void AliMUONSegmentationV0::FirstPad(Float_t xhit, Float_t yhit, Float_t dx, Float_t dy)
170 // Initialises iteration over pads for charge distribution algorithm
173 // Find the wire position (center of charge distribution)
174 Float_t x0a=GetAnod(xhit);
178 // and take fNsigma*sigma around this center
179 Float_t x01=x0a - dx;
180 Float_t x02=x0a + dx;
181 Float_t y01=yhit - dy;
182 Float_t y02=yhit + dy;
184 // find the pads over which the charge distributes
185 GetPadI(x01,y01,fIxmin,fIymin);
186 GetPadI(x02,y02,fIxmax,fIymax);
188 // Set current pad to lower left corner
191 GetPadC(fIx,fIy,fX,fY);
193 //________________________________________________________________________
194 void AliMUONSegmentationV0::FirstPad(Float_t xhit, Float_t yhit, Float_t /*zhit*/, Float_t dx, Float_t dy)
195 {FirstPad(xhit, yhit, dx, dy);}
198 void AliMUONSegmentationV0::NextPad()
200 // Stepper for the iteration over pads
202 // Comments and Critics:
203 // Boundary crossing at x=0 or y=0 not correctly handled !
204 // Step to next pad in the integration region
208 } else if (fIy != fIymax) {
213 printf("\n Error: Stepping outside integration region\n ");
215 GetPadC(fIx,fIy,fX,fY);
218 Int_t AliMUONSegmentationV0::MorePads()
220 // Stopping condition for the iterator over pads
222 // Are there more pads in the integration region ?
224 if (fIx == fIxmax && fIy == fIymax) {
232 void AliMUONSegmentationV0::SigGenInit(Float_t x,Float_t y,Float_t /*z*/)
235 // Initialises pad and wire position during stepping
238 GetPadI(x,y,fIxt,fIyt);
239 fIwt= (x>0) ? Int_t(x/fWireD)+1 : Int_t(x/fWireD)-1 ;
242 Int_t AliMUONSegmentationV0::SigGenCond(Float_t x,Float_t y,Float_t /*z*/)
244 // Signal generation condition during stepping
245 // 0: don't generate signal
246 // 1: generate signal
247 // Comments and critics:
249 // Crossing of pad boundary and mid plane between neighbouring wires is checked.
250 // To correctly simulate the dependence of the spatial resolution on the angle
251 // of incidence signal must be generated for constant steps on
252 // the projection of the trajectory along the anode wire.
255 // Signal will be generated if particle crosses pad boundary or
256 // boundary between two wires.
258 GetPadI(x,y,ixt,iyt);
259 Int_t iwt=(x>0) ? Int_t(x/fWireD)+1 : Int_t(x/fWireD)-1;
260 if ((ixt != fIxt) || (iyt !=fIyt) || (iwt != fIwt)) {
266 void AliMUONSegmentationV0::
267 IntegrationLimits(Float_t& x1,Float_t& x2,Float_t& y1, Float_t& y2)
269 // Returns integration limits for current pad
277 void AliMUONSegmentationV0::
278 Neighbours(Int_t iX, Int_t iY, Int_t* Nlist, Int_t Xlist[10], Int_t Ylist[10])
280 // Returns list of next neighbours for given Pad (iX, iY)
282 // Comments and critics
283 // "Diagonal" neighbours are not passed
284 // Is this ok when we search for local maxima ??
285 // No test whether neighbours have valid indices id performed
287 Xlist[0]=Xlist[1]=iX;
292 Ylist[2]=Ylist[3]=iY;
295 Float_t AliMUONSegmentationV0::Distance2AndOffset(Int_t iX, Int_t iY, Float_t X, Float_t Y
298 // Returns the square of the distance between 1 pad
299 // labelled by its Channel numbers and a coordinate
303 return (x-X)*(x-X) + (y-Y)*(y-Y);
307 void AliMUONSegmentationV0::GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) const
309 // Returns test point on the pad plane.
310 // Used during determination of the segmoid correction of the COG-method
312 x[0]=(fRmax+fRmin)/2/TMath::Sqrt(2.);
317 // Commented out - not used
319 void AliMUONSegmentationV0::Draw(const char *)
321 // Draws the segmentation zones
324 Float_t scale=0.95/fRmax/2.;
327 circle = new TArc(0.5,0.5,fRmax*scale,0.,360.);
328 circle->SetFillColor(2);
331 circle = new TArc(0.5,0.5,fRmin*scale,0.,360.);
332 circle->SetFillColor(1);
337 AliMUONSegmentationV0&
338 AliMUONSegmentationV0::operator =(const AliMUONSegmentationV0 & rhs)
340 // Protected assignement operator
342 if (this == &rhs) return *this;
344 AliFatal("Not implemented.");