]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONSegmentationSlat.cxx
Pointers initialised to 0 in the default constructors
[u/mrichter/AliRoot.git] / MUON / AliMUONSegmentationSlat.cxx
CommitLineData
5de7d27f 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/*
17$Log$
edf34242 18Revision 1.14 2001/08/30 09:52:12 hristov
19The operator[] is replaced by At() or AddAt() in case of TObjArray.
20
2682e810 21Revision 1.13 2001/07/20 10:03:14 morsch
22Changes needed to work with Root 3.01 (substitute lhs [] operator). (Jiri Chudoba)
23
cd4df77b 24Revision 1.12 2001/05/16 14:57:17 alibrary
25New files for folders and Stack
26
9e1a0ddb 27Revision 1.11 2001/01/26 21:25:48 morsch
28Empty default constructors and.
29
e9e4cdf2 30Revision 1.10 2001/01/23 18:58:19 hristov
31Initialisation of some pointers
32
3f5cf0b3 33Revision 1.9 2001/01/17 20:53:40 hristov
34Destructors corrected to avoid memory leaks
35
c2c0190f 36Revision 1.8 2000/12/21 22:12:41 morsch
37Clean-up of coding rule violations,
38
de05461e 39Revision 1.7 2000/11/08 13:01:40 morsch
40Chamber half-planes of stations 3-5 at different z-positions.
41
e1ad7d45 42Revision 1.6 2000/11/06 09:20:43 morsch
43AliMUON delegates part of BuildGeometry() to AliMUONSegmentation using the
44Draw() method. This avoids code and parameter replication.
45
aaf4addd 46Revision 1.5 2000/10/23 13:37:40 morsch
47Correct z-position of slat planes.
48
bf61d9e2 49Revision 1.4 2000/10/22 16:55:43 morsch
50Use only x-symmetry in global to local transformations and delegation.
51
2b202c2e 52Revision 1.3 2000/10/18 11:42:06 morsch
53- AliMUONRawCluster contains z-position.
54- Some clean-up of useless print statements during initialisations.
55
3e1872ed 56Revision 1.2 2000/10/09 14:06:18 morsch
57Some type cast problems of type (TMath::Sign((Float_t)1.,x)) corrected (P.H.)
58
deba22dc 59Revision 1.1 2000/10/06 09:00:47 morsch
60Segmentation class for chambers built out of slats.
61
5de7d27f 62*/
63
64#include "AliMUONSegmentationSlat.h"
65#include "AliMUONSegmentationSlatModule.h"
66#include "AliMUON.h"
67#include "AliMUONChamber.h"
68#include "TArrayI.h"
69#include "TObjArray.h"
70#include "AliRun.h"
71#include <TMath.h>
aaf4addd 72#include <TBRIK.h>
73#include <TNode.h>
74#include <TGeometry.h>
5de7d27f 75#include <iostream.h>
76
77//___________________________________________
78ClassImp(AliMUONSegmentationSlat)
79
80AliMUONSegmentationSlat::AliMUONSegmentationSlat()
81{
82// Default constructor
edf34242 83 fChamber = 0;
84 fNDiv = 0;
85 fSlats = 0;
86 fCurrentSlat = 0;
e9e4cdf2 87}
88
89AliMUONSegmentationSlat::AliMUONSegmentationSlat(Int_t nsec)
90{
91// Non default constructor
5de7d27f 92 fSlats=0;
3f5cf0b3 93 fNDiv = new TArrayI(4);
94 fChamber = 0;
95 fCurrentSlat = 0;
5de7d27f 96}
97
c2c0190f 98AliMUONSegmentationSlat::~AliMUONSegmentationSlat(){
99 //PH Delete TObjArrays
100 if (fSlats) {
101 fSlats->Delete();
102 delete fSlats;
103 }
e9e4cdf2 104
105 if (fNDiv) {
106 delete fNDiv;
107 }
108
c2c0190f 109}
110
5de7d27f 111void AliMUONSegmentationSlat::SetPadSize(Float_t p1, Float_t p2)
112{
113// Sets the pad (strip) size
114//
115 fDpx=p1;
116 fDpy=p2;
117}
118
119Float_t AliMUONSegmentationSlat::GetAnod(Float_t xhit) const
120{
121// Returns for a hit position xhit the position of the nearest anode wire
122 Float_t wire= (xhit>0)? Int_t(xhit/fWireD)+0.5:Int_t(xhit/fWireD)-0.5;
123 return fWireD*wire;
124}
125
126Float_t AliMUONSegmentationSlat::Dpx(Int_t isec) const
127{
128//
129// Returns x-pad size for given sector isec
130// isec = 100*islat+iregion
131//
132 Int_t islat, iregion;
133 islat = isec/100;
134 iregion = isec%100;
135 return Slat(islat)->Dpx(iregion);
136}
137
138Float_t AliMUONSegmentationSlat::Dpy(Int_t isec) const
139{
140//
141// Returns y-pad (strip) size for given sector isec
142 return fDpy;
143}
144
145void AliMUONSegmentationSlat::SetPadDivision(Int_t ndiv[4])
146{
147//
148// Defines the pad size perp. to the anode wire (y) for different sectors.
149// Pad sizes are defined as integral fractions ndiv of a basis pad size
150// fDpx
151//
152 for (Int_t i=0; i<4; i++) {
153 (*fNDiv)[i]=ndiv[i];
154 }
155}
156
157void AliMUONSegmentationSlat::GlobalToLocal(
158 Float_t x, Float_t y, Float_t z, Int_t &islat, Float_t &xlocal, Float_t &ylocal)
159{
160//
161// Perform local to global transformation for space coordinates
162//
163 Float_t zlocal;
164 Int_t i;
165 Int_t index=-1;
166// Transform According to slat plane z-position: negative side is shifted down
167// positive side is shifted up
168// by half the overlap
169 zlocal = z-fChamber->Z();
e1ad7d45 170 zlocal = (x>0) ? zlocal-2.*fDz : zlocal+2.*fDz;
5de7d27f 171// Set the signs for the symmetry transformation and transform to first quadrant
2b202c2e 172 SetSymmetry(x);
5de7d27f 173 Float_t xabs=TMath::Abs(x);
174
2b202c2e 175 Int_t ifirst = (zlocal < Float_t(0))? 0:1;
5de7d27f 176//
177// Find slat number
178 for (i=ifirst; i<fNSlats; i+=2) {
179 index=i;
2b202c2e 180 if ((y >= fYPosition[i]) && (y < fYPosition[i]+fSlatY)) break;
5de7d27f 181 }
182
183//
184// Transform to local coordinate system
185
186
2b202c2e 187 ylocal = y -fYPosition[index];
5de7d27f 188 xlocal = xabs-fXPosition[index];
189 islat = index;
190 if (i >= fNSlats) {islat = -1; x=-1; y = -1;}
191}
192
193void AliMUONSegmentationSlat::GlobalToLocal(
194 Int_t ix, Int_t iy, Int_t &islat, Int_t &ixlocal, Int_t &iylocal)
195{
196//
197// Perform global to local transformation for pad coordinates
198//
2b202c2e 199 Int_t iytemp = iy;
200 Int_t index = 0;
5de7d27f 201
202 iylocal = iytemp;
203
204//
205// Find slat number (index) and iylocal
206 for (Int_t i=0; i<fNSlats; i++) {
207 iytemp-=Slat(i)->Npy();
208
209
210 if (iytemp <= 0) break;
211 iylocal = iytemp;
212 index=i+1;
213 }
214
215 ixlocal=TMath::Abs(ix);
216 islat=index;
5de7d27f 217}
218
219void AliMUONSegmentationSlat::
220LocalToGlobal(Int_t islat, Float_t xlocal, Float_t ylocal, Float_t &x, Float_t &y, Float_t &z)
221{
222// Transform from local to global space coordinates
223//
224// upper plane (y>0) even slat number is shifted down
225// upper plane (y>0) odd slat number is shifted up
226// lower plane (y<0) even slat number is shifted up
227// lower plane (y<0) odd slat number is shifted down
228//
229
2b202c2e 230 x = (xlocal+fXPosition[islat])*fSym;
231 y=(ylocal+fYPosition[islat]);
5de7d27f 232
e1ad7d45 233 z = (TMath::Even(islat)) ? -fDz : fDz ;
234 z = (x>0) ? z+2.*fDz : z-2.*fDz ;
235
5de7d27f 236 z+=fChamber->Z();
5de7d27f 237}
238
239
240void AliMUONSegmentationSlat::LocalToGlobal(
241 Int_t islat, Int_t ixlocal, Int_t iylocal, Int_t &ix, Int_t &iy)
242{
243// Transform from local to global pad coordinates
244//
245 Int_t i;
246 iy=iylocal;
247
248//
249// Find slat number (index) and iylocal
250 for (i=0; i<islat; i++) iy+=Slat(islat)->Npy();
251
2b202c2e 252 ix=ixlocal*fSym;
253 iy=iy;
5de7d27f 254}
255
256
2b202c2e 257void AliMUONSegmentationSlat::SetSymmetry(Int_t ix)
5de7d27f 258{
259// Set set signs for symmetry transformation
2b202c2e 260 fSym=TMath::Sign(1,ix);
5de7d27f 261}
262
2b202c2e 263void AliMUONSegmentationSlat::SetSymmetry(Float_t x)
5de7d27f 264{
265// Set set signs for symmetry transformation
2b202c2e 266 fSym=Int_t (TMath::Sign((Float_t)1.,x));
5de7d27f 267}
268
269void AliMUONSegmentationSlat::
270GetPadI(Float_t x, Float_t y, Float_t z, Int_t &ix, Int_t &iy)
271{
272// Returns pad coordinates for given set of space coordinates
273
274 Int_t islat, i;
275 Float_t xlocal, ylocal;
276
277 GlobalToLocal(x,y,z,islat,xlocal,ylocal);
278 if (islat == -1) {
279 ix=0; iy=0; return;
280 }
281
282 Slat(islat)->GetPadI(xlocal, ylocal, ix, iy);
283 for (i=0; i<islat; i++) iy+=Slat(islat)->Npy();
284
deba22dc 285 ix=ix*Int_t(TMath::Sign((Float_t)1.,x));
5de7d27f 286}
287
2b202c2e 288
5de7d27f 289void AliMUONSegmentationSlat::
290GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y, Float_t &z)
291{
292// Returns real coordinates (x,y) for given pad coordinates (ix,iy)
293//
294 Int_t islat, ixlocal, iylocal;
295//
296// Delegation of transforamtion to slat
297 GlobalToLocal(ix,iy,islat,ixlocal,iylocal);
298 Slat(islat)->GetPadC(ixlocal, iylocal, x, y);
299// Slat offset
300 x+=fXPosition[islat];
301 y+=fYPosition[islat];
302
2b202c2e 303// Symmetry transformation of half planes
5de7d27f 304 x=x*TMath::Sign(1,ix);
2b202c2e 305
306// z-position
e1ad7d45 307 z = (TMath::Even(islat)) ? -fDz : fDz ;
308 z = (x>0) ? z+2.*fDz : z-2.*fDz ;
2b202c2e 309 z += fChamber->Z();
5de7d27f 310}
311
312Int_t AliMUONSegmentationSlat::ISector()
313{
314// Returns current sector during tracking
315 Int_t iregion;
316
317 iregion = fCurrentSlat->ISector();
318 return 100*fSlatIndex+iregion;
319}
320
321Int_t AliMUONSegmentationSlat::Sector(Int_t ix, Int_t iy)
322{
de05461e 323// Returns sector for pad coordiantes (ix,iy)
5de7d27f 324 Int_t ixlocal, iylocal, iregion, islat;
325
326 GlobalToLocal(ix,iy,islat,ixlocal,iylocal);
327
328 iregion = Slat(islat)->Sector(ixlocal, iylocal);
329 return 100*islat+iregion;
330}
331
332
333void AliMUONSegmentationSlat::SetPad(Int_t ix, Int_t iy)
334{
335 //
336 // Sets virtual pad coordinates, needed for evaluating pad response
337 // outside the tracking program
338 Int_t islat, ixlocal, iylocal;
339
2b202c2e 340 SetSymmetry(ix);
5de7d27f 341
342 GlobalToLocal(ix,iy,islat,ixlocal,iylocal);
343 fSlatIndex=islat;
344 fCurrentSlat=Slat(islat);
345 fCurrentSlat->SetPad(ixlocal, iylocal);
346}
347
348void AliMUONSegmentationSlat::SetHit(Float_t xhit, Float_t yhit, Float_t zhit)
349{ //
350 // Sets current hit coordinates
351
352 Float_t xlocal, ylocal;
353 Int_t islat;
354
355
356
357 GlobalToLocal(xhit,yhit,zhit,islat,xlocal,ylocal);
358 fSlatIndex=islat;
359 if (islat < 0) printf("\n SetHit: %d", islat);
360
361 fCurrentSlat=Slat(islat);
362 fCurrentSlat->SetHit(xlocal, ylocal);
363}
364
365
366void AliMUONSegmentationSlat::
367FirstPad(Float_t xhit, Float_t yhit, Float_t zhit, Float_t dx, Float_t dy)
368{
369// Initialises iteration over pads for charge distribution algorithm
370//
371
372
373
374 Int_t islat;
375 Float_t xlocal, ylocal;
376 GlobalToLocal(xhit, yhit, zhit, islat, xlocal, ylocal);
377 fSlatIndex=islat;
378 fCurrentSlat=Slat(islat);
379 fCurrentSlat->FirstPad(xlocal, ylocal, dx, dy);
380
381}
382
383
384void AliMUONSegmentationSlat::NextPad()
385{
386// Stepper for the iteration over pads
387//
388 fCurrentSlat->NextPad();
389}
390
391
392Int_t AliMUONSegmentationSlat::MorePads()
393// Stopping condition for the iterator over pads
394//
395// Are there more pads in the integration region
396{
397 return fCurrentSlat->MorePads();
398}
399
400void AliMUONSegmentationSlat::
401IntegrationLimits(Float_t& x1,Float_t& x2,Float_t& y1, Float_t& y2)
402{
403// Returns integration limits for current pad
404//
405
406 fCurrentSlat->IntegrationLimits(x1, x2, y1, y2);
407
408}
409
410void AliMUONSegmentationSlat::
411Neighbours(Int_t iX, Int_t iY, Int_t* Nlist, Int_t Xlist[10], Int_t Ylist[10])
412{
413// Returns list of neighbours of pad with coordinates iX, iY
414
415 Int_t i, xListLocal[10], yListLocal[10], iXlocal, iYlocal, islat;
416
2b202c2e 417 SetSymmetry(iX);
5de7d27f 418
419 GlobalToLocal(iX, iY, islat, iXlocal, iYlocal);
420
421 Slat(islat)->Neighbours(iXlocal, iYlocal, Nlist, xListLocal, yListLocal);
422
423 for (i=0; i<*Nlist; i++) LocalToGlobal(islat, xListLocal[i], yListLocal[i], Xlist[i], Ylist[i]);
424
425}
426
427
428Int_t AliMUONSegmentationSlat::Ix()
429{
430// Return current pad coordinate ix during stepping
431 Int_t ixl,iyl,ix,iy;
432 ixl=fCurrentSlat->Ix();
433 iyl=fCurrentSlat->Iy();
434
435 LocalToGlobal(fSlatIndex, ixl, iyl, ix, iy);
436 Int_t ixc, iyc, isc;
437 Float_t xc, yc;
438 GlobalToLocal(ix, iy, isc, ixc, iyc);
439 Slat(isc)->GetPadC(ixc,iyc,xc,yc);
440 return ix;
441}
442
443
444Int_t AliMUONSegmentationSlat::Iy()
445{
446// Return current pad coordinate iy during stepping
447 Int_t ixl,iyl,ix,iy;
448 ixl=fCurrentSlat->Ix();
449 iyl=fCurrentSlat->Iy();
450 LocalToGlobal(fSlatIndex, ixl, iyl, ix, iy);
451 return iy;
452}
453
454
455
456 // Signal Generation Condition during Stepping
457Int_t AliMUONSegmentationSlat::SigGenCond(Float_t x, Float_t y, Float_t z)
458{
459//
460// True if signal generation condition fullfilled
461 Float_t xlocal, ylocal;
462 Int_t islat;
463 GlobalToLocal(x, y, z, islat, xlocal, ylocal);
464 return Slat(islat)->SigGenCond(xlocal, ylocal, z);
465}
466
467// Initialise signal generation at coord (x,y,z)
468void AliMUONSegmentationSlat::SigGenInit(Float_t x, Float_t y, Float_t z)
469{
470// Initialize the signal generation condition
471//
472 Float_t xlocal, ylocal;
473 Int_t islat;
474
475 GlobalToLocal(x, y, z, islat, xlocal, ylocal);
476 Slat(islat)->SigGenInit(xlocal, ylocal, z);
477}
478
479
480
481void AliMUONSegmentationSlat::Init(Int_t chamber)
482{
483//
484// Initialize slat modules of quadrant +/+
485// The other three quadrants are handled through symmetry transformations
486//
9e1a0ddb 487 //printf("\n Initialise Segmentation Slat \n");
5de7d27f 488//
489
aaf4addd 490// Initialize Slat modules
5de7d27f 491 Int_t islat, i;
492 Int_t ndiv[4];
493// Pad division
494 for (i=0; i<4; i++) ndiv[i]=(*fNDiv)[i];
bf61d9e2 495//
496 fDz=0.813;
5de7d27f 497// Slat height
498 fSlatY=40.;
2b202c2e 499 for (i=0; i<15; i++) fSlatX[i]=0.;
5de7d27f 500
501// Initialize array of slats
502 fSlats = new TObjArray(fNSlats);
503// Maximum number of strips (pads) in x and y
504 fNpy=0;
505 fNpx=0;
506// for each slat in the quadrant (+,+)
507 for (islat=0; islat<fNSlats; islat++) {
cd4df77b 508 fSlats->AddAt(CreateSlatModule(),islat);
5de7d27f 509
510 AliMUONSegmentationSlatModule *slat = Slat(islat);
511 // Configure Slat
512 slat->SetId(islat);
513
514// Foward pad size
515 slat->SetPadSize(fDpx, fDpy);
516// Forward wire pitch
517 slat->SetDAnod(fWireD);
518// Foward segmentation
519 slat->SetPadDivision(ndiv);
520 slat->SetPcbBoards(fPcb[islat]);
521// Initialize slat module
522 slat->Init(chamber);
523// y-position of slat module relative to the first (closest to the beam)
2b202c2e 524 fYPosition[islat]= fYPosOrigin+islat*(fSlatY-2.*fShift);
5de7d27f 525//
526 fNpy+=slat->Npy();
527 if (slat->Npx() > fNpx) fNpx=slat->Npx();
528 Int_t isec;
529 for (isec=0; isec< 4; isec++)
530 {
531 fSlatX[islat]+=40.*fPcb[islat][isec];
532 }
533
534 }
535// Set parent chamber number
536 AliMUON *pMUON = (AliMUON *) gAlice->GetModule("MUON");
537 fChamber=&(pMUON->Chamber(chamber));
aaf4addd 538 fId=chamber;
5de7d27f 539}
540
541
542
543
544
545void AliMUONSegmentationSlat::SetNPCBperSector(Int_t *npcb)
546{
547 // PCB distribution for station 4 (6 rows with 1+3 segmentation regions)
548 for (Int_t islat=0; islat<fNSlats; islat++){
549 fPcb[islat][0] = *(npcb + 4 * islat);
550 fPcb[islat][1] = *(npcb + 4 * islat + 1);
551 fPcb[islat][2] = *(npcb + 4 * islat + 2);
552 fPcb[islat][3] = *(npcb + 4 * islat + 3);
553 }
554}
555
556
557void AliMUONSegmentationSlat::SetSlatXPositions(Float_t *xpos)
558{
559// Set x-positions of Slats
560 for (Int_t islat=0; islat<fNSlats; islat++) fXPosition[islat]=xpos[islat];
561}
562
563AliMUONSegmentationSlatModule* AliMUONSegmentationSlat::Slat(Int_t index) const
2682e810 564 //PH { return ((AliMUONSegmentationSlatModule*) (*fSlats)[index]);}
565{ return ((AliMUONSegmentationSlatModule*) fSlats->At(index));}
5de7d27f 566
567
568AliMUONSegmentationSlatModule* AliMUONSegmentationSlat::
569CreateSlatModule()
570{
571 // Factory method for slat module
e9e4cdf2 572 return new AliMUONSegmentationSlatModule(4);
5de7d27f 573}
574
575
aaf4addd 576void AliMUONSegmentationSlat::Draw(const char* opt) const
577{
de05461e 578// Draw method for event display
579//
aaf4addd 580 if (!strcmp(opt,"eventdisplay")) {
581 const int kColorMUON1 = kYellow;
582 const int kColorMUON2 = kBlue;
583 //
584 // Drawing Routines for example for Event Display
585 Int_t i,j;
586 Int_t npcb[15];
587 char nameChamber[9], nameSlat[9], nameNode[9];
588
589 //
590 // Number of modules per slat
591 for (i=0; i<fNSlats; i++) {
592 npcb[i]=0;
593 for (j=0; j<4; j++) npcb[i]+=fPcb[i][j];
594 }
595 //
596 TNode* top=gAlice->GetGeometry()->GetNode("alice");
597 sprintf(nameChamber,"C_MUON%d",fId+1);
598 new TBRIK(nameChamber,"Mother","void",340,340,5.);
599 top->cd();
600 sprintf(nameNode,"MUON%d",100+fId+1);
601 TNode* node = new TNode(nameNode,"Chambernode",nameChamber,0,0,fChamber->Z(),"");
602
603 node->SetLineColor(kBlack);
604 AliMUON *pMUON = (AliMUON *) gAlice->GetModule("MUON");
605 (pMUON->Nodes())->Add(node);
606 TNode* nodeSlat;
607 Int_t color;
608
609 for (j=0; j<fNSlats; j++)
610 {
611 sprintf(nameSlat,"SLAT%d",100*fId+1+j);
612 Float_t dx = 20.*npcb[j];
613 Float_t dy = 20;
614 new TBRIK(nameSlat,"Slat Module","void",dx,20.,0.25);
615 node->cd();
616 color = TMath::Even(j) ? kColorMUON1 : kColorMUON2;
617
618 sprintf(nameNode,"SLAT%d",100*fId+1+j);
619 nodeSlat =
620 new TNode(nameNode,"Slat Module",nameSlat, dx+fXPosition[j],fYPosition[j]+dy,0,"");
621 nodeSlat->SetLineColor(color);
622 node->cd();
623 sprintf(nameNode,"SLAT%d",100*fId+1+j+fNSlats);
624 nodeSlat =
625 new TNode(nameNode,"Slat Module",nameSlat,-dx-fXPosition[j],fYPosition[j]+dy,0,"");
626 nodeSlat->SetLineColor(color);
627 }
628 }
629}
5de7d27f 630
631
632