]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONSegmentationV01.cxx
Further development on Mapping and Segmentation. Waiting for a critical review
[u/mrichter/AliRoot.git] / MUON / AliMUONSegmentationV01.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 //  Segmentation and Response classes version 01   //
20 /////////////////////////////////////////////////////
21
22 #include <TBox.h> 
23 #include <TTUBE.h>
24 #include <TBRIK.h>
25 #include <TNode.h>  
26 #include <TGeometry.h>  
27 #include <TF1.h> 
28 #include <TVector3.h> 
29 #include <TObjArray.h>
30
31 #include "AliMUONSegmentationV01.h"
32 #include "AliMUON.h"
33 #include "AliMUONChamber.h"
34 #include "AliRun.h"
35
36
37
38 //___________________________________________
39 ClassImp(AliMUONSegmentationV01)
40
41 AliMUONSegmentationV01::AliMUONSegmentationV01(const AliMUONSegmentationV01& segmentation)
42   : AliMUONSegmentationV0(segmentation)
43 {
44 // Protected copy constructor
45
46   Fatal("AliMUONSegmentationV01", "Not implemented.");
47 }
48
49 AliMUONSegmentationV01::AliMUONSegmentationV01() 
50   : AliMUONSegmentationV0()
51 {
52 // Default constructor
53     fRSec = 0;
54     fNDiv = 0;      
55     fDpxD = 0;
56     fCorrA = 0;
57     fSector = -1;
58 }
59
60 AliMUONSegmentationV01::AliMUONSegmentationV01(Int_t nsec) 
61   : AliMUONSegmentationV0()
62 {
63 //  Non default constructor
64
65     fNsec = nsec;
66     fRSec = new TArrayF(fNsec);
67     fNDiv = new TArrayI(fNsec);      
68     fDpxD = new TArrayF(fNsec);      
69
70
71     (*fRSec)[0]=(*fRSec)[1]=(*fRSec)[2]=(*fRSec)[3]=0;     
72     (*fNDiv)[0]=(*fNDiv)[1]=(*fNDiv)[2]=(*fNDiv)[3]=0;     
73     (*fDpxD)[0]=(*fDpxD)[1]=(*fDpxD)[2]=(*fDpxD)[3]=0;     
74     fCorrA = new TObjArray(3);
75     fCorrA->AddAt(0,0);
76     fCorrA->AddAt(0,1);
77     fCorrA->AddAt(0,2);
78     fOffsetY=0;
79     fSector = -1;
80
81
82 AliMUONSegmentationV01::~AliMUONSegmentationV01() 
83 {
84 // Destructor
85     if (fRSec) delete fRSec;
86     if (fNDiv) delete fNDiv;
87     if (fDpxD) delete fDpxD;
88     if (fCorrA) {
89         fCorrA->Delete();
90         delete fCorrA;
91     }
92
93
94
95 Float_t AliMUONSegmentationV01::Dpx(Int_t isec) const
96 {
97 //
98 // Returns x-pad size for given sector isec
99    Float_t dpx = (*fDpxD)[isec];
100    return dpx;
101 }
102
103 Float_t AliMUONSegmentationV01::Dpy(Int_t /*isec*/) const
104 {
105 //
106 // Returns y-pad size for given sector isec
107    return fDpy;
108 }
109     
110 void   AliMUONSegmentationV01::SetSegRadii(Float_t  r[4])
111 {
112 //
113 // Set the radii of the segmentation zones 
114     for (Int_t i=0; i<4; i++) {
115         (*fRSec)[i]=r[i];
116     }
117 }
118
119
120 void AliMUONSegmentationV01::SetPadDivision(Int_t ndiv[4])
121 {
122 //
123 // Defines the pad size perp. to the anode wire (y) for different sectors. 
124 // Pad sizes are defined as integral fractions ndiv of a basis pad size
125 // fDpx
126 // 
127     for (Int_t i=0; i<4; i++) {
128         (*fNDiv)[i]=ndiv[i];
129     }
130     ndiv[0]=ndiv[1];
131 }
132
133
134 void AliMUONSegmentationV01::Init(Int_t chamber)
135 {
136 //
137 //  Fill the arrays fCx (x-contour) and fNpxS (ix-contour) for each sector
138 //  These arrays help in converting from real to pad co-ordinates and
139 //  vice versa.
140 //  This version approximates concentric segmentation zones
141 //
142     Int_t isec;
143     //printf("\n Initialise Segmentation V01\n");
144
145
146     fNpy=Int_t((*fRSec)[fNsec-1]/fDpy)+1;
147
148     (*fDpxD)[fNsec-1]=fDpx;
149     if (fNsec > 1) {
150         for (Int_t i=fNsec-2; i>=0; i--){
151             (*fDpxD)[i]=(*fDpxD)[fNsec-1]/(*fNDiv)[i];
152         }
153     }
154 //
155 // fill the arrays defining the pad segmentation boundaries
156     Float_t ry;
157     Int_t   dnx;
158     Int_t   add;
159 //
160 //  loop over sections
161     for(isec=0; isec<fNsec; isec++) {
162 //  
163 //  loop over pads along the aode wires
164         for (Int_t iy=1; iy<=fNpy; iy++) {
165 //
166             Float_t x=iy*fDpy-fDpy/2;
167             if (x > (*fRSec)[isec]) {
168                 fNpxS[isec][iy]=0;
169                 fCx[isec][iy]=0;
170             } else {
171                 ry=TMath::Sqrt((*fRSec)[isec]*(*fRSec)[isec]-x*x);
172                 if (isec > 1) {
173                     dnx= Int_t((ry-fCx[isec-1][iy])/(*fDpxD)[isec]);
174                     if (isec < fNsec-1) {
175                         if (TMath::Odd((Long_t)dnx)) dnx++;             
176                     }
177                     fNpxS[isec][iy]=fNpxS[isec-1][iy]+dnx;
178                     fCx[isec][iy]=fCx[isec-1][iy]+dnx*(*fDpxD)[isec];
179                 } else if (isec == 1) {
180                     dnx= Int_t((ry-fCx[isec-1][iy])/(*fDpxD)[isec]);
181                     fNpxS[isec][iy]=fNpxS[isec-1][iy]+dnx;
182                     add=4 - (fNpxS[isec][iy])%4;
183                     if (add < 4) fNpxS[isec][iy]+=add; 
184                     dnx=fNpxS[isec][iy]-fNpxS[isec-1][iy];
185                     fCx[isec][iy]=fCx[isec-1][iy]+dnx*(*fDpxD)[isec];
186                 } else {
187                     dnx=Int_t(ry/(*fDpxD)[isec]);
188                     fNpxS[isec][iy]=dnx;
189                     fCx[isec][iy]=dnx*(*fDpxD)[isec];
190                 }
191             }
192         } // y-pad loop
193     } // sector loop
194 // reference to chamber
195     AliMUON *pMUON  = (AliMUON *) gAlice->GetModule("MUON");
196     fChamber=&(pMUON->Chamber(chamber));
197     fZ = fChamber->Z();
198     fId=chamber;
199 }
200
201 //______________________________________________________________________
202 Int_t AliMUONSegmentationV01::Sector(Int_t ix, Int_t iy)
203 {
204 // Returns sector number for given pad position
205 //
206     Int_t absix=TMath::Abs(ix);
207     Int_t absiy=TMath::Abs(iy);
208     Int_t isec=0;
209     for (Int_t i=0; i<fNsec; i++) {
210         if (absix<=fNpxS[i][absiy]){
211             isec=i;
212             break;
213         }
214     }
215     return isec;
216 }
217
218 //______________________________________________________________________
219 void AliMUONSegmentationV01::GetPadI(Float_t x, Float_t y, Int_t &ix, Int_t &iy)
220 {
221 //  Returns pad coordinates (ix,iy) for given real coordinates (x,y)
222 //
223     iy = (y-fOffsetY >0)? 
224       Int_t((y-fOffsetY)/fDpy)+1 
225       : 
226       Int_t((y-fOffsetY)/fDpy)-1;
227   
228     if (iy >  fNpy) iy= fNpy;
229     if (iy < -fNpy) iy=-fNpy;
230 //
231 //  Find sector isec
232     Int_t isec=-1;
233     Float_t absx=TMath::Abs(x);
234     Int_t absiy=TMath::Abs(iy);
235     for (Int_t i=0; i < fNsec; i++) {
236         if (absx <= fCx[i][absiy]) {
237             isec=i;
238             break;
239         }
240     }
241     if (isec>0) {
242         ix= Int_t((absx-fCx[isec-1][absiy])/(*fDpxD)[isec])
243             +fNpxS[isec-1][absiy]+1;
244     } else if (isec == 0) {
245         ix= Int_t(absx/(*fDpxD)[isec])+1;
246     } else {
247         ix=fNpxS[fNsec-1][absiy]+1;     
248     }
249     ix = (x>0) ? ix:-ix;
250 }
251 //________________________________________________________________
252 void AliMUONSegmentationV01::GetPadI(Float_t x, Float_t y , Float_t /*z*/, Int_t &ix, Int_t &iy) 
253 {
254   GetPadI(x, y, ix, iy);
255 }
256 //________________________________________________________________
257
258 void AliMUONSegmentationV01::
259 GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y)
260 {
261 //  Returns real coordinates (x,y) for given pad coordinates (ix,iy)
262 //
263     y = (iy>0) ?
264       Float_t(iy*fDpy)-fDpy/2.+fOffsetY
265       :
266       Float_t(iy*fDpy)+fDpy/2.+fOffsetY; 
267
268 //
269 //  Find sector isec
270     Int_t isec=AliMUONSegmentationV01::Sector(ix,iy);
271 //
272     Int_t absix=TMath::Abs(ix);
273     Int_t absiy=TMath::Abs(iy);
274     if (isec) {
275         x=fCx[isec-1][absiy]+(absix-fNpxS[isec-1][absiy])*(*fDpxD)[isec];
276         x=(ix>0) ?  x-(*fDpxD)[isec]/2 : -x+(*fDpxD)[isec]/2;
277     } else {
278         x=y=0;
279     }
280
281 }
282 //________________________________________________________________
283
284 void AliMUONSegmentationV01::
285 GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y, Float_t &z)
286 {
287 //  Returns real coordinates (x,y,z) for given pad coordinates (ix,iy)
288 //
289   GetPadC(ix,iy,x,y); 
290     
291   // To be properly interfaced with chamber geometry (AliMUONSt1GeometryBuilderV2) ???
292   TVector3 scale[4];  
293   scale[0] = TVector3( 1,  1,  1);  // quadrant I
294   scale[1] = TVector3(-1,  1, -1);  // quadrant II
295   scale[2] = TVector3(-1, -1,  1);  // quadrant III
296   scale[3] = TVector3( 1, -1, -1);  // quadrant IV
297
298   Int_t iQuadrant;
299   
300   if (ix > 0) {
301     if (iy > 0) {
302       iQuadrant = 0;
303     } else {
304       iQuadrant = 3;
305     }
306   } else {
307     if (iy > 0) {
308       iQuadrant = 1;
309     } else {
310       iQuadrant = 2;
311     }
312   }      
313   if (TMath::Abs(fZ) <  600) {
314     z = fZ + scale[iQuadrant].Z()*6.5/2.; // Station 1
315   } else {
316     z = fZ;  // Station 2
317   }
318 }
319
320 void AliMUONSegmentationV01::
321 SetPad(Int_t ix, Int_t iy)
322 {
323     //
324     // Sets virtual pad coordinates, needed for evaluating pad response 
325     // outside the tracking program 
326     GetPadC(ix,iy,fX,fY);
327     fSector=Sector(ix,iy);
328 }
329
330 //______________________________________________________________________
331 void AliMUONSegmentationV01::FirstPad(Float_t xhit, Float_t yhit, Float_t dx, Float_t dy)
332 {
333 // Initialises iteration over pads for charge distribution algorithm
334 //
335     //
336     // Find the wire position (center of charge distribution)
337     Float_t x0a=GetAnod(xhit);
338     fXhit=x0a;
339     fYhit=yhit;
340     
341     //
342     // and take fNsigma*sigma around this center
343     Float_t x01=x0a  - dx;
344     Float_t x02=x0a  + dx;
345     Float_t y01=yhit - dy;
346     Float_t y02=yhit + dy;
347     //
348     // find the pads over which the charge distributes
349
350     GetPadI(x01,y01,fIxmin,fIymin);
351     GetPadI(x02,y02,fIxmax,fIymax);
352     fXmin=x01;
353     fXmax=x02;
354     fYmin=y01;
355     fYmax=y02;
356     
357     // 
358     // Set current pad to lower left corner
359     if (fIxmax < fIxmin) fIxmax=fIxmin;
360     if (fIymax < fIymin) fIymax=fIymin;    
361     fIx=fIxmin;
362     fIy=fIymin;
363     GetPadC(fIx,fIy,fX,fY);
364
365     // added 
366     if (fSector == -1) {
367       fSector=Sector(fIx,fIy);
368     }
369 }
370
371
372 void AliMUONSegmentationV01::NextPad()
373 {
374 // Stepper for the iteration over pads
375 //
376 // Step to next pad in the integration region
377   // 
378   // Step to next pad in integration region
379     Float_t xc,yc;
380     Int_t   iyc;
381     
382 //  step from left to right    
383
384     if (fX < fXmax && fX != 0) {
385         if (fIx==-1) fIx++;
386         fIx++;
387 //  step up 
388     } else if (fIy != fIymax) {
389         if (fIy==-1) fIy++;
390         fIy++;
391 //      get y-position of next row (yc), xc not used here       
392         GetPadC(fIx,fIy,xc,yc);
393 //      get x-pad coordiante for first pad in row (fIx)
394         GetPadI(fXmin,yc,fIx,iyc);
395     } else {
396         fIx=-1;
397         fIy=-1;
398     }
399     GetPadC(fIx,fIy,fX,fY);
400     fSector=Sector(fIx,fIy);
401     if (MorePads() && 
402         (fSector ==-1 || fSector==0)) 
403         NextPad();
404 }
405
406 Int_t AliMUONSegmentationV01::MorePads()
407
408 {
409 // Stopping condition for the iterator over pads
410 //
411 // Are there more pads in the integration region
412     return  (fIx != -1  || fIy != -1);
413 /*
414     if ((fX >= fXmax  && fIy >= fIymax) || fY==0) {
415         return 0;
416     } else {
417         return 1;
418     }
419 */
420 }
421 //______________________________________________________________________
422 void AliMUONSegmentationV01::FirstPad(Float_t xhit, Float_t yhit, Float_t /*zhit*/, Float_t dx, Float_t dy)
423 {
424   FirstPad(xhit, yhit, dx, dy);
425 }
426
427
428 void AliMUONSegmentationV01::
429 IntegrationLimits(Float_t& x1,Float_t& x2,Float_t& y1, Float_t& y2)
430 {
431 //  Returns integration limits for current pad
432 //
433     x1=fXhit-fX-Dpx(fSector)/2.;
434     x2=x1+Dpx(fSector);
435     y1=fYhit-fY-Dpy(fSector)/2.;
436     y2=y1+Dpy(fSector);    
437 }
438
439 void AliMUONSegmentationV01::
440 Neighbours(Int_t iX, Int_t iY, Int_t* Nlist, Int_t Xlist[10], Int_t Ylist[10])
441 {
442 // Returns list of next neighbours for given Pad (iX, iY)
443 //
444     const Float_t kEpsilon=fDpy/1000;
445     
446     Float_t x,y;
447     Int_t   ixx, iyy, isec1;
448 //
449     Int_t   isec0=AliMUONSegmentationV01::Sector(iX,iY);
450     Int_t i=0;
451 //    
452 //  step right
453     Xlist[i]=iX+1;
454     if (Xlist[i]==0) Xlist[i]++;
455     Ylist[i++]=iY;
456 //
457 //  step left    
458     Xlist[i]=iX-1;
459     if (Xlist[i]==0) Xlist[i]--;
460     Ylist[i++]=iY;
461 //
462 //  step up 
463     AliMUONSegmentationV01::GetPadC(iX,iY,x,y);
464     AliMUONSegmentationV01::GetPadI(x+kEpsilon,y+fDpy,ixx,iyy);
465     Xlist[i]=ixx;
466     Ylist[i++]=iyy;
467     isec1=AliMUONSegmentationV01::Sector(ixx,iyy);
468     if (isec1==isec0) {
469 //
470 //  no sector boundary crossing
471 //      Xlist[i]=ixx+1;
472 //      Ylist[i++]=iY+1;
473         
474 //      Xlist[i]=ixx-1;
475 //      Ylist[i++]=iY+1;
476     } else if (isec1 < isec0) {
477 // finer segmentation
478 //      Xlist[i]=ixx+1;
479 //      Ylist[i++]=iY+1;
480         
481         Xlist[i]=ixx-1;
482         Ylist[i++]=iyy;
483         
484 //      Xlist[i]=ixx-2;
485 //      Ylist[i++]=iY+1;
486     } else {
487 // coarser segmenation  
488 /*
489         if (TMath::Odd(iX-fNpxS[isec1-1][iY+1])) {
490             Xlist[i]=ixx-1;
491             Ylist[i++]=iY+1;
492         } else {
493             Xlist[i]=ixx+1;
494             Ylist[i++]=iY+1;
495         }
496 */
497     }
498
499 //
500 // step down 
501     AliMUONSegmentationV01::GetPadC(iX,iY,x,y);
502     AliMUONSegmentationV01::GetPadI(x+kEpsilon,y-fDpy,ixx,iyy);
503     Xlist[i]=ixx;
504     Ylist[i++]=iyy;
505     isec1=AliMUONSegmentationV01::Sector(ixx,iyy);
506     if (isec1==isec0) {
507 //
508 //  no sector boundary crossing
509 /*
510     Xlist[i]=ixx+1;
511     Ylist[i++]=iY-1;
512         
513     Xlist[i]=ixx-1;
514     Ylist[i++]=iY-1;
515 */
516     } else if (isec1 < isec0) {
517 // finer segmentation
518 //      Xlist[i]=ixx+1;
519 //      Ylist[i++]=iY-1;
520         
521         Xlist[i]=ixx-1;
522         Ylist[i++]=iyy;
523         
524 //      Xlist[i]=ixx-2;
525 //      Ylist[i++]=iY-1;
526     } else {
527 // coarser segmentation 
528 /*
529         if (TMath::Odd(iX-fNpxS[isec1-1][iY-1])) {
530             Xlist[i]=ixx-1;
531             Ylist[i++]=iY-1;
532         } else {
533             Xlist[i]=ixx+1;
534             Ylist[i++]=iY-1;
535         }
536 */
537     }
538     *Nlist=i;
539 }
540
541 void AliMUONSegmentationV01::GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) const
542 {
543 // Returns test point on the pad plane.
544 // Used during determination of the segmoid correction of the COG-method
545
546     n=3;
547     x[0]=((*fRSec)[0]+(*fRSec)[1])/2/TMath::Sqrt(2.);
548     y[0]=x[0];
549     x[1]=((*fRSec)[1]+(*fRSec)[2])/2/TMath::Sqrt(2.);
550     y[1]=x[1];
551     x[2]=((*fRSec)[2]+(*fRSec)[3])/2/TMath::Sqrt(2.);
552     y[2]=x[2];
553 }
554
555 void AliMUONSegmentationV01::Draw(const char* opt) const
556 {
557  
558 // Draws the segmentation zones
559 //
560   if (!strcmp(opt,"eventdisplay")) { 
561     const int kColorMUON  = kBlue;
562
563     TRotMatrix* rot000 = new TRotMatrix("Rot000"," ", 90,  0, 90, 90, 0, 0);
564     TRotMatrix* rot090 = new TRotMatrix("Rot090"," ", 90, 90, 90,180, 0, 0);
565     TRotMatrix* rot180 = new TRotMatrix("Rot180"," ", 90,180, 90,270, 0, 0);
566     TRotMatrix* rot270 = new TRotMatrix("Rot270"," ", 90,270, 90,  0, 0, 0);
567
568     char nameChamber[9], nameSense[9], nameFrame[9], nameNode[9];
569     char nameSense1[9], nameSense2[9];    
570     TNode *node, *nodeF;
571  
572     sprintf(nameChamber,"C_MUON%d",fId+1);
573     sprintf(nameSense,"S_MUON%d",fId+1);
574     sprintf(nameSense1,"S1_MUON%d",fId+1);
575     sprintf(nameSense2,"S2_MUON%d",fId+1);
576     sprintf(nameFrame,"F_MUON%d",fId+1);        
577
578     TNode* top=gAlice->GetGeometry()->GetNode("alice");
579
580     Float_t rmin = (*fRSec)[0]-3;
581     Float_t rmax = (*fRSec)[3]+3;
582     new TTUBE(nameChamber,"Mother","void",rmin,rmax,0.25,1.);
583     rmin = (*fRSec)[0];
584     rmax = (*fRSec)[3];
585     new TTUBE(nameSense,"Sens. region","void",rmin,rmax,0.25, 1.);
586     Float_t dx=(rmax-rmin)/2;
587     Float_t dy=3.;
588     Float_t dz=0.25;
589     TBRIK* frMUON = new TBRIK(nameFrame,"Frame","void",dx,dy,dz);
590     top->cd();
591     sprintf(nameNode,"MUON%d",100+fId+1);
592     node = new TNode(nameNode,"ChamberNode",nameChamber,0,0,fChamber->Z(),"");
593     node->SetLineColor(kColorMUON);
594     AliMUON *pMUON  = (AliMUON *) gAlice->GetModule("MUON");
595     (pMUON->Nodes())->Add(node);
596     node->cd();
597     sprintf(nameNode,"MUON%d",200+fId+1);
598     node = new TNode(nameNode,"Sens. Region Node",nameSense,0,0,0,"");
599     node->SetLineColor(kColorMUON);
600     node->cd();
601     Float_t dr=dx+rmin;
602     sprintf(nameNode,"MUON%d",300+fId+1);
603     nodeF = new TNode(nameNode,"Frame0",frMUON,dr, 0, 0,rot000,"");
604     nodeF->SetLineColor(kColorMUON);
605     node->cd();
606     sprintf(nameNode,"MUON%d",400+fId+1);
607     nodeF = new TNode(nameNode,"Frame1",frMUON,0 ,dr,0,rot090,"");
608     nodeF->SetLineColor(kColorMUON);
609     node->cd();
610     sprintf(nameNode,"MUON%d",500+fId+1);
611     nodeF = new TNode(nameNode,"Frame2",frMUON,-dr,0,0,rot180,"");
612     nodeF->SetLineColor(kColorMUON);
613     node  ->cd();
614     sprintf(nameNode,"MUON%d",600+fId+1);   
615     nodeF = new TNode(nameNode,"Frame3",frMUON,0,-dr,0,rot270,"");
616     nodeF->SetLineColor(kColorMUON);   
617   } else {
618     TBox *box;
619     
620     Float_t dx=0.95/fCx[3][1]/2;
621     Float_t dy=0.95/(Float_t(Npy()))/2;
622     Float_t x0,y0,x1,y1;
623     Float_t xc=0.5;
624     Float_t yc=0.5;
625     
626     for (Int_t iy=1; iy<Npy(); iy++) {
627       for (Int_t isec=0; isec<4; isec++) {
628         if (isec==0) {
629           x0=0;
630           x1=fCx[isec][iy]*dx;
631         } else {
632           x0=fCx[isec-1][iy]*dx;
633           x1=fCx[isec][iy]*dx;
634         }
635         y0=Float_t(iy-1)*dy;
636         y1=y0+dy;
637         box=new TBox(x0+xc,y0+yc,x1+xc,y1+yc);
638         box->SetFillColor(isec+1);
639         box->Draw();
640         
641         box=new TBox(-x1+xc,y0+yc,-x0+xc,y1+yc);
642         box->SetFillColor(isec+1);
643         box->Draw();
644         
645         box=new TBox(x0+xc,-y1+yc,x1+xc,-y0+yc);
646         box->SetFillColor(isec+1);
647         box->Draw();
648         
649         box=new TBox(-x1+xc,-y1+yc,-x0+xc,-y0+yc);
650         box->SetFillColor(isec+1);
651         box->Draw();
652       }
653     }
654   }
655 }
656 void AliMUONSegmentationV01::SetCorrFunc(Int_t isec, TF1* func)
657 {
658 // Set the correction function
659     fCorrA->AddAt(func,isec);
660 }
661
662 TF1* AliMUONSegmentationV01::CorrFunc(Int_t isec) const
663
664 // Get correction function
665   //PH    return (TF1*) (*fCorrA)[isec];
666     return (TF1*) fCorrA->At(isec);
667 }
668
669 AliMUONSegmentationV01& 
670 AliMUONSegmentationV01::operator =(const AliMUONSegmentationV01 & rhs)
671 {
672 // Protected assignement operator
673
674   if (this == &rhs) return *this;
675
676   Fatal("operator=", "Not implemented.");
677     
678   return *this;  
679 }
680