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 **************************************************************************/
18 //*********************************************************
19 // Segmentation classes for slat modules
20 // This class works with local coordinates
21 // of the slats via the class AliMUONGeometrySegmentation
22 // This class contains the size of the slats and the
23 // and the differents PCB densities.
24 // (from old AliMUONSegmentationSlatModule)
25 // Gines, Subatech, Nov04
26 //*********************************************************
30 #include "AliMUONSt345SlatSegmentation.h"
33 ClassImp(AliMUONSt345SlatSegmentation)
36 AliMUONSt345SlatSegmentation::AliMUONSt345SlatSegmentation()
37 : AliMUONVGeometryDESegmentation(),
60 // default constructor
64 //___________________________________________
65 AliMUONSt345SlatSegmentation::AliMUONSt345SlatSegmentation(Bool_t bending)
66 : AliMUONVGeometryDESegmentation(),
89 // Non default constructor
90 fNsec = 4; // 4 sector densities at most per slat
91 fNDiv = new TArrayI(fNsec);
92 fDpxD = new TArrayF(fNsec);
93 fDpyD = new TArrayF(fNsec);
94 (*fNDiv)[0]=(*fNDiv)[1]=(*fNDiv)[2]=(*fNDiv)[3]=0;
95 (*fDpxD)[0]=(*fDpxD)[1]=(*fDpxD)[2]=(*fDpxD)[3]=0;
96 (*fDpyD)[0]=(*fDpyD)[1]=(*fDpyD)[2]=(*fDpyD)[3]=0;
98 //----------------------------------------------------------------------
99 AliMUONSt345SlatSegmentation::AliMUONSt345SlatSegmentation(const AliMUONSt345SlatSegmentation& rhs)
100 : AliMUONVGeometryDESegmentation(rhs),
119 // default constructor
121 //----------------------------------------------------------------------
122 AliMUONSt345SlatSegmentation::~AliMUONSt345SlatSegmentation()
125 if (fNDiv) delete fNDiv;
126 if (fDpxD) delete fDpxD;
127 if (fDpyD) delete fDpyD;
129 //----------------------------------------------------------------------
130 AliMUONSt345SlatSegmentation& AliMUONSt345SlatSegmentation::operator=(const AliMUONSt345SlatSegmentation& rhs)
132 // Protected assignement operator
133 if (this == &rhs) return *this;
134 AliFatal("Not implemented.");
139 //------------------------------------------------------------------------
140 Float_t AliMUONSt345SlatSegmentation::Distance2AndOffset(Int_t iX, Int_t iY, Float_t X, Float_t Y, Int_t * /*dummy*/)
142 // Returns the square of the distance between 1 pad
143 // labelled by its Channel numbers and a coordinate
146 return (x-X)*(x-X) + (y-Y)*(y-Y);
148 //____________________________________________________________________________
149 Float_t AliMUONSt345SlatSegmentation::Dpx(Int_t isec) const
151 // Return x-strip width
152 return (*fDpxD)[isec];
155 //____________________________________________________________________________
156 Float_t AliMUONSt345SlatSegmentation::Dpy(Int_t isec) const
158 // Return y-strip width
159 return (*fDpyD)[isec];
161 //_____________________________________________________________________________
162 Float_t AliMUONSt345SlatSegmentation::GetAnod(Float_t xhit) const
164 // Returns for a hit position xhit the position of the nearest anode wire
165 Float_t wire= (xhit>0)? Int_t(xhit/fWireD)+0.5:Int_t(xhit/fWireD)-0.5;
171 //--------------------------------------------------------------------------------
172 void AliMUONSt345SlatSegmentation::GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y)
174 if (ix<1 || ix>Npx() || iy<1 || iy>Npy() ){
175 AliWarning(Form("ix or iy out of boundaries: Npx=%d and Npy=%d",Npx(),Npy()));
176 x=-99999.; y=-99999.;
179 // Returns real coordinates (x,y) for given pad coordinates (ix,iy)
181 Int_t isec = Sector(ix,iy);
182 if (isec == -1) AliWarning(Form("isector = %d with ix %d, iy %d", isec, ix, iy));
183 if (iy > fNpyS[isec]) {
184 x=-99999.; y=-99999.;
188 x = fCx[isec-1]+(ix-fNpxS[isec-1])*(*fDpxD)[isec];
189 x = x-(*fDpxD)[isec]/2;
190 y = Float_t(iy*(*fDpyD)[isec])-(*fDpyD)[isec]/2.- fCy; // !!!
198 //_____________________________________________________________________________
199 void AliMUONSt345SlatSegmentation::GetPadI(Float_t x, Float_t y, Int_t &ix, Int_t &iy)
201 // Returns pad coordinates (ix,iy) for given real coordinates (x,y)
205 for (Int_t i=fNsec-1; i > 0; i--) {
208 if (fCx[isec] == fCx[isec-1] && isec > 1) isec--;
212 if (isec == -1) AliWarning(Form("isector equal to %d with x %f, y %f", isec, x, y));
214 ix= Int_t((x-fCx[isec-1])/(*fDpxD)[isec])
216 iy= Int_t((y+fCy)/(*fDpyD)[isec])+1;
217 } else if (isec == 0) {
218 ix= Int_t(x/(*fDpxD)[isec])+1;
219 iy= Int_t((y+fCy)/(*fDpyD)[isec])+1;
225 //-------------------------------------------------------------------------
226 void AliMUONSt345SlatSegmentation::GetPadI(Float_t x, Float_t y , Float_t /*z*/, Int_t &ix, Int_t &iy)
228 GetPadI(x, y, ix, iy);
230 //_______________________________________________________________
231 void AliMUONSt345SlatSegmentation::SetPadDivision(Int_t ndiv[4])
233 // Defines the pad size perp. to the anode wire (y) for different sectors.
234 // Pad sizes are defined as integral fractions ndiv of a basis pad size
237 for (Int_t i=0; i<4; i++) {
242 //____________________________________________________________________________
243 void AliMUONSt345SlatSegmentation::SetPadSize(Float_t p1, Float_t p2)
249 //_______________________________________________________________
250 void AliMUONSt345SlatSegmentation::SetPcbBoards(Int_t n[4])
253 // Set PcbBoard segmentation zones for each density
254 // n[0] PcbBoards for maximum density sector fNDiv[0]
255 // n[1] PcbBoards for next density sector fNDiv[1] etc ...
256 for (Int_t i=0; i<4; i++) fPcbBoards[i]=n[i];
258 //-------------------------------------------------------------------------
259 void AliMUONSt345SlatSegmentation::SetPad(Int_t ix, Int_t iy)
262 // Sets virtual pad coordinates, needed for evaluating pad response
263 // outside the tracking program
264 GetPadC(ix,iy,fX,fY);
265 fSector=Sector(ix,iy);
267 //---------------------------------------------------------------------------
268 void AliMUONSt345SlatSegmentation::SetHit(Float_t x, Float_t y)
275 if (x < 0) fXhit = 0;
276 if (y < 0) fYhit = 0;
278 if (x >= fCx[fNsec-1]) fXhit = fCx[fNsec-1];
279 if (y >= fDyPCB) fYhit = fDyPCB;
282 //----------------------------------------------------------------------------
283 void AliMUONSt345SlatSegmentation::SetHit(Float_t xhit, Float_t yhit, Float_t /*zhit*/)
288 //----------------------------------------------------------
289 void AliMUONSt345SlatSegmentation::FirstPad(Float_t xhit, Float_t yhit, Float_t dx, Float_t dy)
291 // Initialises iteration over pads for charge distribution algorithm
294 // Find the wire position (center of charge distribution)
295 Float_t x0a=GetAnod(xhit);
299 // and take fNsigma*sigma around this center
300 Float_t x01=x0a - dx ;
301 Float_t x02=x0a + dx;
302 Float_t y01=yhit - dy;
303 Float_t y02=yhit + dy;
304 // if (x01 < 0) x01 = 0;
305 // if (y01 < 0) y01 = 0;
307 // if (x02 >= fCx[fNsec-1]) x02 = fCx[fNsec-1];
311 for (Int_t i=fNsec-1; i > 0; i--) {
312 if (x02 >= fCx[i-1]) {
314 if (fCx[isec] == fCx[isec-1] && isec > 1) isec--;
319 if (y02 >= fDyPCB) y02 = fDyPCB;
322 // find the pads over which the charge distributes
323 GetPadI(x01,y01,fIxmin,fIymin);
324 GetPadI(x02,y02,fIxmax,fIymax);
326 if (fIxmax > fNpx) fIxmax=fNpx;
327 if (fIymax > fNpyS[isec]) fIymax = fNpyS[isec];
335 // Set current pad to lower left corner
336 if (fIxmax < fIxmin) fIxmax=fIxmin;
337 if (fIymax < fIymin) fIymax=fIymin;
341 GetPadC(fIx,fIy,fX,fY);
342 fSector=Sector(fIx,fIy);
344 printf("\n \n First Pad: %d %d %f %f %d %d %d %f" ,
345 fIxmin, fIxmax, fXmin, fXmax, fNpx, fId, isec, Dpy(isec));
346 printf("\n \n First Pad: %d %d %f %f %d %d %d %f",
347 fIymin, fIymax, fYmin, fYmax, fNpyS[isec], fId, isec, Dpy(isec));
353 //----------------------------------------------------------------------
354 void AliMUONSt345SlatSegmentation::FirstPad(Float_t xhit, Float_t yhit, Float_t /*zhit*/, Float_t dx, Float_t dy)
356 FirstPad(xhit, yhit, dx, dy);
358 //----------------------------------------------------------------------
359 void AliMUONSt345SlatSegmentation::NextPad()
361 // Stepper for the iteration over pads
363 // Step to next pad in the integration region
364 // step from left to right
367 GetPadC(fIx,fIy,fX,fY);
368 fSector=Sector(fIx,fIy);
370 } else if (fIy != fIymax) {
373 GetPadC(fIx,fIy,fX,fY);
374 fSector=Sector(fIx,fIy);
380 // printf("\n Next Pad %d %d %f %f %d %d %d %d %d ",
382 //-------------------------------------------------------------------------
383 Int_t AliMUONSt345SlatSegmentation::MorePads()
385 // Stopping condition for the iterator over pads
387 // Are there more pads in the integration region
389 return (fIx != -1 || fIy != -1);
391 //--------------------------------------------------------------------------
392 Int_t AliMUONSt345SlatSegmentation::Sector(Int_t ix, Int_t iy)
395 // Determine segmentation zone from pad coordinates
398 for (Int_t i=0; i < fNsec; i++) {
399 if (ix <= fNpxS[i]) {
404 if (isec == -1) printf("\n Sector: Attention isec ! %d %d %d %d \n",
405 fId, ix, iy,fNpxS[3]);
410 //-----------------------------------------------------------------------------
411 void AliMUONSt345SlatSegmentation::
412 IntegrationLimits(Float_t& x1,Float_t& x2,Float_t& y1, Float_t& y2)
414 // Returns integration limits for current pad
416 x1=fXhit-fX-Dpx(fSector)/2.;
418 y1=fYhit-fY-Dpy(fSector)/2.;
420 // printf("\n Integration Limits %f %f %f %f %d %f", x1, x2, y1, y2, fSector, Dpx(fSector));
423 //-----------------------------------------------------------------------------
424 void AliMUONSt345SlatSegmentation::
425 Neighbours(Int_t iX, Int_t iY, Int_t* Nlist, Int_t Xlist[10], Int_t Ylist[10])
427 // Returns list of next neighbours for given Pad (iX, iY)
439 Int_t sector = Sector(iX,iY);
441 if (iY+1 <= fNpyS[sector]) {
453 //--------------------------------------------------------------------------
454 void AliMUONSt345SlatSegmentation::Init(Int_t detectionElementId)
457 // Fill the arrays fCx (x-contour) and fNpxS (ix-contour) for each sector
458 // These arrays help in converting from real to pad co-ordinates and
461 // Segmentation is defined by rectangular modules approximating
462 // concentric circles as shown below
464 // PCB module size in cm
465 // printf("\n Initialise Segmentation SlatModule \n");
468 // printf(" fBending: %d \n",fBending);
473 // Calculate padsize along x
474 (*fDpxD)[fNsec-1]=fDpx;
475 (*fDpyD)[fNsec-1]=fDpy;
477 for (Int_t i=fNsec-1; i>=0; i--){ // fNsec-2
480 (*fDpyD)[i]=(*fDpyD)[fNsec-1]/(*fNDiv)[i];
482 (*fDpxD)[i]=(*fDpxD)[fNsec-1]/(*fNDiv)[i];
488 // fill the arrays defining the pad segmentation boundaries
491 // Loop over sectors (isec=0 for secto close to the beam pipe)
492 Float_t totalLength = 0;
493 for (Int_t isec=0; isec<4; isec++) totalLength += fPcbBoards[isec]*fDxPCB; // !!!!
495 fNpy = 0; // maximum number of pads in y
496 for (Int_t isec=0; isec<4; isec++) {
500 fCx[0] = -totalLength/2;
502 fNpxS[isec] = fNpxS[isec-1] + fPcbBoards[isec]*Int_t(fDxPCB/(*fDpxD)[isec]);
503 fNpyS[isec] = Int_t(fDyPCB/(*fDpyD)[isec]);
504 if (fNpyS[isec] >= fNpy) fNpy = fNpyS[isec];
505 fCx[isec]= fCx[isec-1] + fPcbBoards[isec]*fDxPCB;
509 fNpx = fNpxS[3]; // maximum number of pads in x
512 fId = detectionElementId;