1 ///////////////////////////////////////////////////////////////////////////////
3 // Photon Multiplicity Detector Version 1 //
7 <img src="picts/AliPMDv2Class.gif">
11 ///////////////////////////////////////////////////////////////////////////////
17 static Float_t smod1[3], smod2[3], smod3[3], smod4[3];
18 static Int_t maxbox, kdet;
19 static Float_t thgas,thcell,thmin,thmax,zdist,zdist1,thlow,
22 static Float_t xbox[40][40], ybox[40][40];
23 static Int_t pindex[40][40];
26 //_____________________________________________________________________________
27 AliPMDv2::AliPMDv2() : AliPMD()
30 // Default constructor
35 //_____________________________________________________________________________
36 AliPMDv2::AliPMDv2(const char *name, const char *title)
40 // Standard constructor
45 //_____________________________________________________________________________
46 void AliPMDv2::Coordnew()
49 // Find coordinates for pad geometry
51 // Author Y.P. Viyogi, VECC Calcutta
54 Float_t th1, th2, dbox, dist;
55 //Float_t xoff[40][40], yoff[40][40];
58 Int_t xoff1[3], yoff1[3], l;
59 Float_t rhigh, dmax, hole;
63 th1 = thmin * kPI / 180;
64 th2 = thmax * kPI / 180;
65 /* ESTIMATES FOR OCTAGON */
66 dist = zdist * TMath::Tan(th2);
67 /* *** 04.06.97 Fixed Module size of 6 cm, 0 mm boundary. */
68 /* *** variable pad sizes of 0.3 mm, 0.5 mm, 1.0 mm and 1.2 mm */
70 maxbox = Int_t(dist / dbox + .5);
72 /* NOW GET THE HOLE SIZE ETC. */
73 hole = zdist * TMath::Tan(th1);
74 nhol = Int_t(hole / dbox + .5);
77 rlow = zdist * TMath::Tan(thlow * kPI / 180);
78 rhigh = zdist * TMath::Tan(thhigh * kPI / 180);
79 for (i = 1; i <= 40; ++i) {
80 for (j = 1; j <= 40; ++j) {
90 // NOW START PLACING THE BOXES IN VARIOUS LAYERS, START FROM THE CENTRE
93 for(i=0;i<3;i++) yoff1[i]=0;
95 // PRINT*,'MAXBOX=',MAXBOX
96 for (i = 1; i <= maxbox; ++i) {
98 for(j=0;j<3;j++) xoff1[j]=0;
99 for (j = 1; j <= maxbox; ++j) {
100 rr = sqrt(xx*xx+yy*yy);
101 if (rr >= hole && rr <= dmax) {
104 //if (rr < rlow) index[j][i] = 1;
105 //else if (rr > rhigh) index[j][i] = 3;
109 //xoff[j][i] = xoff1[index[j][i] - 1];
110 //yoff[j][i] = yoff1[index[j][i] - 1];
112 if (kdet == 1) kk = 1; else kk = 0;
113 for (l = 1; l <= 3; ++l)
114 xoff1[l - 1] += fNumPads[l + kk - 1];
118 if (kdet == 1) kk = 1; else kk=0;
120 for (l = 1; l <= 3; ++l)
121 yoff1[l - 1] += fNumPads[l + kk - 1];
126 //_____________________________________________________________________________
127 void AliPMDv2::Coordinates()
130 // SUBROUTINE TO COMPUTE THE X- AND Y- COORDINATES OF THE BOXES
131 // WHICH CAN FIT INTO THE CIRCULAR REGION BETWEEN THE GIVEN ANGLES.
132 // INPUT : ZDIST, THMIN, THMAX, PADSIZE (FOR INSIDE and OUTSIDE PMD).
133 // ALL DIMENSIONS IN CM.
134 // -- Author : Y.P. VIYOGI, 10/05/1996.
136 Float_t hole, dmax, dbox;
142 Float_t rhigh, rr, xx, yy, th1, th2;
146 // ESTIMATES FOR OCTAGON
147 dist = zdist * TMath::Tan(th2);
148 // *** 04.06.97 Fixed Module size of 24 cm, 3 mm boundary.
149 // *** variable pad sizes of 8 mm, 10 mm, 12mm and 15 mm
151 maxbox = Int_t(dist / dbox + .5);
153 // NOW GET THE HOLE SIZE ETC.
154 hole = zdist * TMath::Tan(th1);
155 nhol = Int_t(hole / dbox + .5);
158 rlow = zdist * TMath::Tan(thlow*kPI/180);
159 rhigh = zdist * TMath::Tan(thhigh*kPI/180);
160 for (i = 0; i < 40; ++i) {
161 for (j = 0; j < 40; ++j) {
168 // NOW START PLACING THE BOXES IN VARIOUS LAYERS, START FROM THE CENTRE
171 for (i = 0; i < maxbox; ++i) {
173 for (j = 0; j < maxbox; ++j) {
174 rr = TMath::Sqrt(xx*xx + yy*yy);
175 if (rr >= hole && rr <= dmax) { // BOX CAN BE FITTED
177 if (rr < rlow) pindex[j][i] = 1;
178 if (rr > rhigh) pindex[j][i] = 3;
189 //_____________________________________________________________________________
190 void AliPMDv2::CreateGeometry()
193 // Create geometry for Photon Multiplicity Detector Version 1
197 <img src="picts/AliPMDv2.gif">
202 <img src="picts/AliPMDv2Tree.gif">
209 //_____________________________________________________________________________
210 void AliPMDv2::CreateInside()
213 // Create inside of Pads
215 // -- Author : Y.P. VIYOGI, 07/05/1996.
216 // -- Modified: P.V.K.S.Baba(JU), 15-12-97.
218 Float_t sipmd[3] = { 300.,300.,5. };
222 Float_t xiqa[4], yiqa[4];
223 Int_t inum2, inum3, inum4, i, j, k;
225 Float_t zd, xd, yd, xp, yp, zp;
228 Int_t *idtmed = gAlice->Idtmed();
230 // VOLUMES Names : begining with D for all PMD volumes,
231 // The names of SIZE variables begin with S and have more meaningful
232 // characters as shown below.
234 // VOLUME SIZE MEDIUM : REMARKS
235 // ------ ----- ------ : ---------------------------
237 // DPMD SIPMD AIR : INSIDE PMD and its SIZE
241 // *** Define the DPMD Volume and fill with air ***
243 AliMC* pMC = AliMC::GetMC();
245 pMC->Gsvolu("DPMD", "BOX ", idtmed[698], sipmd, 3);
247 // *** Define DIQU Volume and fill with air
248 siqad[0] = sipmd[0] / 2. - 1.;
249 siqad[1] = sipmd[1] / 2. - 1.;
251 pMC->Gsvolu("DIQU","BOX ", idtmed[698], siqad, 3);
252 pMC->Gsatt("DIQU", "SEEN", 1);
255 // --- Place the modules in INSIDE PMD (DPMD)
256 // --- FIRST CALCULATE THE COORDINATES OF THE MODULES WHICH CAN BE
264 AliMatrix(idrotm[1], 90., 0., 90., 90., 0., 0.);
265 AliMatrix(idrotm[2], 90., 180., 90., 90., 0., 0.);
266 AliMatrix(idrotm[3], 90., 180., 90., 270., 0., 0.);
267 AliMatrix(idrotm[4], 90., 0., 90., 270., 0., 0.);
268 // **** Filling the DIQU Vol. (One Quadrant)
272 for (i = 0; i < maxbox; ++i) {
274 for (j = 0; j < i2; ++j) {
275 if (xbox[j][i] <= 0 && ybox[j][i] <= 0) continue;
276 xd = xbox[j][i] - siqad[0];
277 yd = ybox[j][i] - siqad[1];
278 if (pindex[j][i] == 1) {
280 pMC->Gsposp("DM11", inum2, "DIQU", xd, yd, zd, 0, "ONLY", smod2, 3);
282 if (pindex[j][i] == 2) {
284 pMC->Gsposp("DM12", inum3, "DIQU", xd, yd, zd, 0, "ONLY", smod3, 3);
286 if (pindex[j][i] == 3) {
288 pMC->Gsposp("DM13", inum4, "DIQU", xd, yd, zd, 0, "ONLY", smod4, 3);
301 for (k = 1; k <= i2; ++k) {
302 pMC->Gsposp("DIQU", k, "DPMD", xiqa[k-1], yiqa[k-1], zd, idrotm[k], "ONLY", siqad, 3);
305 // --- Place the DPMD in ALICE with front edge 6.0m from vertex ---
309 pMC->Gspos("DPMD", 1, "ALIC", xp, yp, zp, 0, "ONLY");
313 //_____________________________________________________________________________
314 void AliPMDv2::CreatePads()
317 // Create the geometry of the pads
318 // *** DEFINITION OF THE GEOMETRY OF THE PMD ***
319 // *** DIFFERENT PADS WITH SIZES 8 MM, 10 MM, 12 MM AND 15 MM SQUARE
320 // -- Author : Y.P. VIYOGI, 04/06/1997.
321 // -- Modified: P.V.K.S.Baba(JU), 13-12-97.
323 AliMC* pMC = AliMC::GetMC();
325 Int_t npad1, npad2, npad3, npad4;
326 Float_t spad1[3], spad2[3], spad3[3], spad4[3];
327 Float_t scpv1[3], scpv2[3], scpv3[3], scpv4[3];
329 Float_t sstr1[3], spsw1[3], sstr2[3], spsw2[3], sstr3[3], spsw3[3],
331 Float_t xa, ya, za, xb, yb, zb, xc, sw[3], yc, zc;
333 Float_t spb[3], pad1, pad2, pad3, pad4;
334 // VOLUMES Names : begining with D for all PMD volumes,
335 // DMO1 : MODULE TYPE 1 ( 8 MM PADS)
336 // DM11 : MODULE TYPE 2 (10 MM PADS)
337 // DM12 : MODULE TYPE 3 (12 MM PADS)
338 // DM13 : MODULE TYPE 4 (15 MM PADS)
340 // The names of SIZE variables begin with S and have more meaningful
341 // characters as shown below.
343 // VOLUME SIZE MEDIUM : REMARKS
344 // ------ ----- ------ : ---------------------------
346 // DPPB SPB PB : PB Converter and its SIZE
347 // DPFE SFE FE : FE Support Plate and its SIZE
349 // DP11 SPAD2 GAS : PAD TYPE 2 (10 MM)
350 // DP12 SPAD2 GAS : PAD TYPE 2 FOR CPV(10 MM)
351 // DS11 SSTR2 FE : STRIP OF IRON
352 // DW11 SPSW2 G10 : PRESHOWER
353 // DV11 SCPV2 G10 : CPV
355 // DP13 SPAD3 GAS : PAD TYPE 3 (12 MM)
356 // DP14 SPAD3 GAS : PAD TYPE 3 FOR CPV(12 MM)
357 // DS12 SSTR3 FE : STRIP OF IRON
358 // DW12 SPSW3 G10 : PRESHOWER
359 // DV12 SCPV3 G10 : CPV
361 // DP15 SPAD4 GAS : PAD TYPE 4 (15 MM)
362 // DP16 SPAD4 GAS : PAD TYPE 4 FOR CPV(15 MM)
363 // DS13 SSTR4 FE : STRIP OF IRON
364 // DW13 SPSW4 G10 : PRESHOWER
365 // DV13 SCPV4 G10 : CPV
367 // ****************** VOLUME TREE ******************
372 // -------------------------------------------------
375 // DV11( CPV) DPFE DPPB DW11(Preshower)
378 // DS12(Strip) DS11(Strip)
381 // DP12(Pads) DP11(Pads)
383 // ************************************************************
385 // --- The above gives the Volume Tree. PAD is a gas cell of size
386 // --- given by PADSIZE in the input cards. STRIP is a collection of
387 //--- PADs in a row. STRIPs are positioned in the PRESHOWER BOX. This is
388 //--- then placed in the MODULE. The PSW and the MODULE have the same size
389 // --- ; Lead converter, Iron support plate are also placed
390 // --- in the MODULE.
393 // DATA PAD1,PAD2,PAD3,PAD4/4*0.8/
394 // DATA NPAD1,NPAD2,NPAD3,NPAD4/4*30/
396 Int_t *idtmed = gAlice->Idtmed();
398 // **** PAD SIZE 8 MM
406 zdist = TMath::Abs(zdist1);
411 numqu = Int_t(fGeo[2]);
419 npad1 = Int_t(24/fPadSize[0]);
420 npad2 = Int_t(24/fPadSize[1]);
421 npad3 = Int_t(24/fPadSize[2]);
422 npad4 = Int_t(24/fPadSize[3]);
424 spad1[0] = (pad1 - thcell) / 2.;
426 spad1[2] = thgas / 2;
427 pMC->Gsvolu("DP21", "BOX ", idtmed[604], spad1, 3);
428 pMC->Gsatt("DP21", "SEEN", 1);
429 pMC->Gsvolu("DP22", "BOX ", idtmed[604], spad1, 3);
430 pMC->Gsatt("DP22", "SEEN", 1);
432 sstr1[0] = npad1*pad1/2;
435 pMC->Gsvolu("DS21", "BOX ", idtmed[605], sstr1, 3);
436 pMC->Gsatt("DS21", "SEEN", 1);
437 pMC->Gsvolu("DS22", "BOX ", idtmed[605], sstr1, 3);
438 pMC->Gsatt("DS22", "SEEN", 1);
440 spsw1[0] = sstr1[0] + edge;
442 spsw1[2] = (thgas + .4) / 2;
443 // 2 mm G10 Plate cover (NMATE = 808)
447 pMC->Gsvolu("DW21", "BOX ", idtmed[607], spsw1, 3);
448 pMC->Gsatt("DW21", "SEEN", 1);
449 pMC->Gsvolu("DV21", "BOX ", idtmed[607], spsw1, 3);
450 pMC->Gsatt("DV21", "SEEN", 1);
452 // --- place pads in a strip
453 xa = (-npad1 + 1.) * pad1 / 2.;
456 for (i = 1; i <= npad1; ++i) {
457 pMC->Gsposp("DP21", i, "DS21", xa, ya, za, 0, "ONLY", spad1, 3);
458 pMC->Gsposp("DP22", i, "DS22", xa, ya, za, 0, "ONLY", spad1, 3);
461 // --- place strips in the PRESHOWER AND CPV boxes
463 yb = (-npad1 + 1.) * pad1 / 2.;
465 for (j = 1; j <= npad1; ++j) {
466 pMC->Gsposp("DS21", j, "DW21", xb, yb, zb, 0, "ONLY", sstr1, 3);
467 pMC->Gsposp("DS22", j, "DV21", xb, yb, zb, 0, "ONLY", sstr1, 3);
471 // **** PAD SIZE 10 MM
473 spad2[0] = (pad2 - thcell) / 2.;
475 spad2[2] = thgas / 2;
476 pMC->Gsvolu("DP11", "BOX ", idtmed[604], spad2, 3);
477 pMC->Gsatt("DP11", "SEEN", 1);
478 pMC->Gsvolu("DP12", "BOX ", idtmed[604], spad2, 3);
479 pMC->Gsatt("DP12", "SEEN", 1);
481 sstr2[0] = npad2 * pad2 / 2;
483 sstr2[2] = thgas / 2;
484 pMC->Gsvolu("DS11", "BOX ", idtmed[605], sstr2, 3);
485 pMC->Gsatt("DS11", "SEEN", 1);
486 pMC->Gsvolu("DS12", "BOX ", idtmed[605], sstr2, 3);
487 pMC->Gsatt("DS12", "SEEN", 1);
489 spsw2[0] = sstr2[0] + edge;
491 spsw2[2] = (thgas + .4) / 2;
492 // 2 mm G10 Plate cover (NMATE = 808)
496 pMC->Gsvolu("DW11","BOX ", idtmed[607], spsw2, 3);
497 pMC->Gsatt("DW11", "SEEN", 1);
498 pMC->Gsvolu("DV11","BOX ", idtmed[607], spsw2, 3);
499 pMC->Gsatt("DV11", "SEEN", 1);
501 // --- place pads in a strip
502 xa = (-npad2 + 1.) * pad2 / 2.;
505 for (i = 1; i <= npad2; ++i) {
506 pMC->Gsposp("DP11", i, "DS11", xa, ya, za, 0, "ONLY", spad2, 3);
507 pMC->Gsposp("DP12", i, "DS12", xa, ya, za, 0, "ONLY", spad2, 3);
510 // --- place strips in the PRESHOWER AND CPV boxes
512 yb = (-npad2 + 1.) * pad2 / 2.;
514 for (j = 1; j <= npad2; ++j) {
515 pMC->Gsposp("DS11", j, "DW11", xb, yb, zb, 0, "ONLY", sstr2, 3);
516 pMC->Gsposp("DS12", j, "DV11", xb, yb, zb, 0, "ONLY", sstr2, 3);
520 // **** PAD SIZE 12 MM
522 spad3[0] = (pad3 - thcell) / 2.;
524 spad3[2] = thgas / 2;
525 pMC->Gsvolu("DP13", "BOX ", idtmed[604], spad3, 3);
526 pMC->Gsatt("DP13", "SEEN", 1);
527 pMC->Gsvolu("DP14", "BOX ", idtmed[604], spad3, 3);
528 pMC->Gsatt("DP14", "SEEN", 1);
530 sstr3[0] = npad3 * pad3 / 2;
532 sstr3[2] = thgas / 2;
533 pMC->Gsvolu("DS13", "BOX ", idtmed[605], sstr3, 3);
534 pMC->Gsatt("DS13", "SEEN", 1);
535 pMC->Gsvolu("DS14", "BOX ", idtmed[605], sstr3, 3);
536 pMC->Gsatt("DS14", "SEEN", 1);
538 spsw3[0] = sstr3[0] + edge;
540 spsw3[2] = (thgas + .4) / 2;
541 // 2 mm G10 Plate cover (NMATE = 808)
545 pMC->Gsvolu("DW12","BOX ", idtmed[607], spsw3, 3);
546 pMC->Gsatt("DW12", "SEEN", 1);
547 pMC->Gsvolu("DV12","BOX ", idtmed[607], spsw3, 3);
548 pMC->Gsatt("DV12", "SEEN", 1);
550 // --- place pads in a strip
551 xa = (-npad3 + 1.) * pad3 / 2.;
554 for (i = 1; i <= npad3; ++i) {
555 pMC->Gsposp("DP13", i, "DS13", xa, ya, za, 0, "ONLY", spad3, 3);
556 pMC->Gsposp("DP14", i, "DS14", xa, ya, za, 0, "ONLY", spad3, 3);
559 // --- place strips in the PRESHOWER AND CPV boxes
561 yb = (-npad3 + 1.) * pad3 / 2.;
563 for (j = 1; j <= npad3; ++j) {
564 pMC->Gsposp("DS13", j, "DW12", xb, yb, zb, 0, "ONLY", sstr3, 3);
565 pMC->Gsposp("DS14", j, "DV12", xb, yb, zb, 0, "ONLY", sstr3, 3);
569 // **** PAD SIZE 15 MM
571 spad4[0] = (pad4 - thcell) / 2.;
573 spad4[2] = thgas / 2;
574 pMC->Gsvolu("DP15","BOX ", idtmed[604], spad4, 3);
575 pMC->Gsatt("DP15", "SEEN", 1);
576 pMC->Gsvolu("DP16","BOX ", idtmed[604], spad4, 3);
577 pMC->Gsatt("DP16", "SEEN", 1);
579 sstr4[0] = npad4 * pad4 / 2;
581 sstr4[2] = thgas / 2;
582 pMC->Gsvolu("DS15","BOX ", idtmed[605], sstr4, 3);
583 pMC->Gsatt("DS15", "SEEN", 1);
584 pMC->Gsvolu("DS16","BOX ", idtmed[605], sstr4, 3);
585 pMC->Gsatt("DS16", "SEEN", 1);
587 spsw4[0] = sstr4[0] + edge;
589 spsw4[2] = (thgas + .4) / 2;
590 // 2 mm G10 Plate cover (NMATE = 808)
594 pMC->Gsvolu("DW13","BOX ", idtmed[607], spsw4, 3);
595 pMC->Gsatt("DW13", "SEEN", 1);
596 pMC->Gsvolu("DV13","BOX ", idtmed[607], spsw4, 3);
597 pMC->Gsatt("DV13", "SEEN", 1);
599 // --- place pads in a strip
600 xa = (-npad4 + 1.) * pad4 / 2.;
603 for (i = 1; i <= npad4; ++i) {
604 pMC->Gsposp("DP15", i, "DS15", xa, ya, za, 0, "ONLY", spad4, 3);
605 pMC->Gsposp("DP16", i, "DS16", xa, ya, za, 0, "ONLY", spad4, 3);
608 // --- place strips in the PRESHOWER AND CPV boxes
610 yb = (-npad4 + 1.) * pad4 / 2.;
612 for (j = 1; j <= npad4; ++j) {
613 pMC->Gsposp("DS15", j, "DW13", xb, yb, zb, 0, "ONLY", sstr4, 3);
614 pMC->Gsposp("DS16", j, "DV13", xb, yb, zb, 0, "ONLY", sstr4, 3);
619 // --- DEFINE MODULES, IRON, TUNGSTEN AND LEAD VOLUMES
625 pMC->Gsvolu("DPPB","BOX ", idtmed[600], spb, 3);
626 pMC->Gsatt("DPPB", "SEEN", 1);
631 pMC->Gsvolu("DPW ","BOX ", idtmed[600], sw, 3);
632 pMC->Gsatt("DPW ", "SEEN", 1);
637 pMC->Gsvolu("DPFE","BOX ", idtmed[605], sfe, 3);
638 pMC->Gsatt("DPFE", "SEEN", 1);
642 // SMOD1(3)=SPSW1(3)+SFE(3)+SW (3)+SCPV1(3)
643 smod1[2] = spsw1[2] + sfe[2] + spb[2] + scpv1[2];
644 pMC->Gsvolu("DM21", "BOX ", idtmed[698], smod1, 3);
648 smod2[2] = spsw2[2] + sfe[2] + spb[2] + scpv2[2];
649 pMC->Gsvolu("DM11", "BOX ", idtmed[698], smod2, 3);
653 smod3[2] = spsw3[2] + sfe[2] + spb[2] + scpv3[2];
654 pMC->Gsvolu("DM12", "BOX ", idtmed[698], smod3, 3);
658 smod4[2] = spsw4[2] + sfe[2] + spb[2] + scpv4[2];
659 pMC->Gsvolu("DM13", "BOX ", idtmed[698], smod4, 3);
661 // **** MODULE TYPE 1 : ALWAYS WITH TUNSGTEN CONVERTER
663 // *** try with PB once 8.6.97
665 // --- place gas box (as CPV), iron support, lead converter and gas box
666 // --- (preshower) in the module
669 // --- First the CPV box
670 zc = -(spsw1[2] + sfe[2] + spb[2] + spsw1[2]) + spsw1[2];
671 pMC->Gspos("DV21", 1, "DM21", xc, yc, zc, 0, "ONLY");
672 // --- Then iron support plate
673 zc = zc + sfe[2] + spsw1[2];
674 pMC->Gspos("DPFE", 1, "DM21", xc, yc, zc, 0, "ONLY");
675 // --- Then converter plate
676 zc = zc + sfe[2] + spb[2];
677 pMC->Gspos("DPPB", 1, "DM21", xc, yc, zc, 0, "ONLY");
678 // --- Lastly the preshower box
679 zc = zc + spb[2] + spsw1[2];
680 pMC->Gspos("DW21", 1, "DM21", xc, yc, zc, 0, "ONLY");
682 // **** MODULE TYPE 2
684 // --- place gas box (as CPV), iron support, lead converter and gas box
685 // --- (preshower) in the module
688 // --- First the CPV box
689 zc = -(spsw2[2] + sfe[2] + spb[2] + spsw2[2]) + spsw2[2];
690 pMC->Gspos("DV11", 1, "DM11", xc, yc, zc, 0, "ONLY");
691 // --- Then iron support plate
692 zc = zc + sfe[2] + spsw2[2];
693 pMC->Gspos("DPFE", 1, "DM11", xc, yc, zc, 0, "ONLY");
694 // --- Then lead converter plate
695 zc = zc + sfe[2] + spb[2];
696 pMC->Gspos("DPPB", 1, "DM11", xc, yc, zc, 0, "ONLY");
697 // --- Lastly the preshower box
698 zc = zc + spb[2] + spsw2[2];
699 pMC->Gspos("DW11", 1, "DM11", xc, yc, zc, 0, "ONLY");
702 // **** MODULE TYPE 3
704 // --- place gas box (as CPV), iron support, lead converter and gas box
705 // --- (preshower) in the module
708 // --- First the CPV box
709 zc = -(spsw3[2] + sfe[2] + spb[2] + spsw3[2]) + spsw3[2];
710 pMC->Gspos("DV12", 1, "DM12", xc, yc, zc, 0, "ONLY");
711 // --- Then iron support plate
712 zc = zc + sfe[2] + spsw3[2];
713 pMC->Gspos("DPFE", 1, "DM12", xc, yc, zc, 0, "ONLY");
714 // --- Then lead converter plate
715 zc = zc + sfe[2] + spb[2];
716 pMC->Gspos("DPPB", 1, "DM12", xc, yc, zc, 0, "ONLY");
717 // --- Lastly the preshower box
718 zc = zc + spb[2] + spsw3[2];
719 pMC->Gspos("DW12", 1, "DM12", xc, yc, zc, 0, "ONLY");
722 // **** MODULE TYPE 4
724 // --- place gas box (as CPV), iron support, lead converter and gas box
725 // --- (preshower) in the module
728 // --- First the CPV box
729 zc = -(spsw4[2] + sfe[2] + spb[2] + spsw4[2]) + spsw4[2];
730 pMC->Gspos("DV13", 1, "DM13", xc, yc, zc, 0, "ONLY");
731 // --- Then iron support plate
732 zc = zc + sfe[2] + spsw4[2];
733 pMC->Gspos("DPFE", 1, "DM13", xc, yc, zc, 0, "ONLY");
734 // --- Then lead converter plate
735 zc = zc + sfe[2] + spb[2];
736 pMC->Gspos("DPPB", 1, "DM13", xc, yc, zc, 0, "ONLY");
737 // --- Lastly the preshower box
738 zc = zc + spb[2] + spsw4[2];
739 pMC->Gspos("DW13", 1, "DM13", xc, yc, zc, 0, "ONLY");
743 //_____________________________________________________________________________
744 void AliPMDv2::DrawModule()
747 // Draw a shaded view of the Photon Multiplicity Detector
750 AliMC* pMC = AliMC::GetMC();
752 pMC->Gsatt("*", "seen", -1);
753 pMC->Gsatt("alic", "seen", 0);
755 // Set the visibility of the components
757 pMC->Gsatt("DP21","seen",0);
758 pMC->Gsatt("DP22","seen",0);
759 pMC->Gsatt("DS21","seen",1);
760 pMC->Gsatt("DS22","seen",1);
761 pMC->Gsatt("DW21","seen",0);
762 pMC->Gsatt("DV21","seen",0);
763 pMC->Gsatt("DP11","seen",0);
764 pMC->Gsatt("DP12","seen",0);
765 pMC->Gsatt("DS11","seen",1);
766 pMC->Gsatt("DS12","seen",1);
767 pMC->Gsatt("DW11","seen",0);
768 pMC->Gsatt("DV11","seen",0);
769 pMC->Gsatt("DP13","seen",0);
770 pMC->Gsatt("DP14","seen",0);
771 pMC->Gsatt("DS13","seen",1);
772 pMC->Gsatt("DS14","seen",1);
773 pMC->Gsatt("DW12","seen",0);
774 pMC->Gsatt("DV12","seen",0);
775 pMC->Gsatt("DP15","seen",0);
776 pMC->Gsatt("DP16","seen",0);
777 pMC->Gsatt("DS15","seen",1);
778 pMC->Gsatt("DS16","seen",1);
779 pMC->Gsatt("DW13","seen",0);
780 pMC->Gsatt("DV13","seen",0);
781 pMC->Gsatt("DPPB","seen",1);
782 pMC->Gsatt("DPW ","seen",1);
783 pMC->Gsatt("DPFE","seen",1);
784 pMC->Gsatt("DM21","seen",1);
785 pMC->Gsatt("DM11","seen",1);
786 pMC->Gsatt("DM12","seen",1);
787 pMC->Gsatt("DM13","seen",1);
788 pMC->Gsatt("DPMD","seen",0);
789 pMC->Gsatt("DIQU","seen",0);
791 pMC->Gdopt("hide", "on");
792 pMC->Gdopt("shad", "on");
793 pMC->Gsatt("*", "fill", 7);
794 pMC->SetClipBox(".");
795 pMC->SetClipBox("*", 0, 3000, -3000, 3000, -6000, 6000);
797 pMC->Gdraw("alic", 40, 30, 0, 22, 15.5, .04, .04);
798 pMC->Gdhead(1111, "Photon Multiplicity Detector Version 1");
799 pMC->Gdman(17, 5, "MAN");
800 pMC->Gdopt("hide", "off");
803 //_____________________________________________________________________________
804 void AliPMDv2::CreateMaterials()
807 // Create materials for the PMD version 1
809 // ORIGIN : Y. P. VIYOGI
812 AliMC* pMC = AliMC::GetMC();
814 // --- The Argon- CO2 mixture ---
815 Float_t ag[2] = { 39.95 };
816 Float_t zg[2] = { 18. };
817 Float_t wg[2] = { .8,.2 };
818 Float_t dar = .001782; // --- Ar density in g/cm3 ---
820 Float_t ac[2] = { 12.,16. };
821 Float_t zc[2] = { 6.,8. };
822 Float_t wc[2] = { 1.,2. };
823 Float_t dc = .001977;
824 Float_t dco = .002; // --- CO2 density in g/cm3 ---
826 Float_t absl, radl, a, d, z;
832 Int_t *idtmed = gAlice->Idtmed();
833 Int_t isxfld = gAlice->Field()->Integ();
834 Float_t sxmgmx = gAlice->Field()->Max();
836 // --- Define the various materials for GEANT ---
837 AliMaterial(1, "Pb $", 207.19, 82., 11.35, .56, 18.5);
839 AliMaterial(2, "Argon$", 39.95, 18., dar, x0ar, 6.5e4);
840 AliMixture(3, "CO2 $", ac, zc, dc, -2, wc);
841 AliMaterial(4, "Al $", 26.98, 13., 2.7, 8.9, 18.5);
842 AliMaterial(6, "Fe $", 55.85, 26., 7.87, 1.76, 18.5);
843 AliMaterial(7, "W $", 183.85, 74., 19.3, .35, 10.3);
844 AliMaterial(8, "G10 $", 20., 10., 1.7, 19.4, 999);
845 AliMaterial(9, "SILIC$", 28.09, 14., 2.33, 9.36, 45.);
846 AliMaterial(10, "Be $", 9.01, 4., 1.848, 35.3, 36.7);
847 AliMaterial(15, "Cu $", 63.54, 29., 8.96, 1.43, 15.);
848 AliMaterial(16, "C $", 12.01, 6., 2.265, 18.8, 49.9);
850 AliMaterial(96, "MYLAR$", 8.73, 4.55, 1.39, 28.7, 62.);
851 AliMaterial(97, "CONCR$", 20., 10., 2.5, 10.7, 40.);
852 AliMaterial(98, "Vacum$", 1e-9, 1e-9, 1e-9, 1e16, 1e16);
853 AliMaterial(99, "Air $", 14.61, 7.3, .0012, 30420., 67500.);
855 // define gas-mixtures
858 pMC->Gfmate((*fIdmate)[3], namate, a, z, d, radl, absl, buf, nbuf);
861 dg = (dar * 4 + dco) / 5;
862 AliMixture(5, "ArCO2$", ag, zg, dg, 2, wg);
864 // Define tracking media
865 AliMedium(601, "Pb conv.$", 1, 0, 0, isxfld, sxmgmx, 1., .1, .01, .1);
866 AliMedium(607, "W conv.$", 7, 0, 0, isxfld, sxmgmx, 1., .1, .01, .1);
867 AliMedium(608, "G10plate$", 8, 0, 0, isxfld, sxmgmx, 1., .1, .01, .1);
868 AliMedium(604, "Al $", 4, 0, 0, isxfld, sxmgmx, .1, .1, .01, .1);
869 AliMedium(606, "Fe $", 6, 0, 0, isxfld, sxmgmx, .1, .1, .01, .1);
870 AliMedium(605, "ArCO2 $", 5, 1, 0, isxfld, sxmgmx, .1, .1, .1, .1);
871 AliMedium(609, "SILICON $", 9, 1, 0, isxfld, sxmgmx, .1, .1, .1, .1);
872 AliMedium(610, "Be $", 10, 0, 0, isxfld, sxmgmx, .1, .1, .01, .1);
873 AliMedium(698, "Vacuum $", 98, 0, 0, isxfld, sxmgmx, 1., .1, .1, 10);
874 AliMedium(699, "Air gaps$", 99, 0, 0, isxfld, sxmgmx, 1., .1, .1, .1);
875 AliMedium(615, "Cu $", 15, 0, 0, isxfld, sxmgmx, .1, .1, .01, .1);
876 AliMedium(616, "C $", 16, 0, 0, isxfld, sxmgmx, .1, .1, .01, .1);
878 // --- Generate explicitly delta rays in the iron, aluminium and lead ---
879 pMC->Gstpar(idtmed[600], "LOSS", 3.);
880 pMC->Gstpar(idtmed[600], "DRAY", 1.);
882 pMC->Gstpar(idtmed[603], "LOSS", 3.);
883 pMC->Gstpar(idtmed[603], "DRAY", 1.);
885 pMC->Gstpar(idtmed[604], "LOSS", 3.);
886 pMC->Gstpar(idtmed[604], "DRAY", 1.);
888 pMC->Gstpar(idtmed[605], "LOSS", 3.);
889 pMC->Gstpar(idtmed[605], "DRAY", 1.);
891 pMC->Gstpar(idtmed[606], "LOSS", 3.);
892 pMC->Gstpar(idtmed[606], "DRAY", 1.);
894 pMC->Gstpar(idtmed[607], "LOSS", 3.);
895 pMC->Gstpar(idtmed[607], "DRAY", 1.);
897 // --- Energy cut-offs in the Pb and Al to gain time in tracking ---
898 // --- without affecting the hit patterns ---
899 pMC->Gstpar(idtmed[600], "CUTGAM", 1e-4);
900 pMC->Gstpar(idtmed[600], "CUTELE", 1e-4);
901 pMC->Gstpar(idtmed[600], "CUTNEU", 1e-4);
902 pMC->Gstpar(idtmed[600], "CUTHAD", 1e-4);
903 pMC->Gstpar(idtmed[605], "CUTGAM", 1e-4);
904 pMC->Gstpar(idtmed[605], "CUTELE", 1e-4);
905 pMC->Gstpar(idtmed[605], "CUTNEU", 1e-4);
906 pMC->Gstpar(idtmed[605], "CUTHAD", 1e-4);
907 pMC->Gstpar(idtmed[606], "CUTGAM", 1e-4);
908 pMC->Gstpar(idtmed[606], "CUTELE", 1e-4);
909 pMC->Gstpar(idtmed[606], "CUTNEU", 1e-4);
910 pMC->Gstpar(idtmed[606], "CUTHAD", 1e-4);
911 pMC->Gstpar(idtmed[603], "CUTGAM", 1e-4);
912 pMC->Gstpar(idtmed[603], "CUTELE", 1e-4);
913 pMC->Gstpar(idtmed[603], "CUTNEU", 1e-4);
914 pMC->Gstpar(idtmed[603], "CUTHAD", 1e-4);
915 pMC->Gstpar(idtmed[609], "CUTGAM", 1e-4);
916 pMC->Gstpar(idtmed[609], "CUTELE", 1e-4);
917 pMC->Gstpar(idtmed[609], "CUTNEU", 1e-4);
918 pMC->Gstpar(idtmed[609], "CUTHAD", 1e-4);
920 // --- Prevent particles stopping in the gas due to energy cut-off ---
921 pMC->Gstpar(idtmed[604], "CUTGAM", 1e-5);
922 pMC->Gstpar(idtmed[604], "CUTELE", 1e-5);
923 pMC->Gstpar(idtmed[604], "CUTNEU", 1e-5);
924 pMC->Gstpar(idtmed[604], "CUTHAD", 1e-5);
925 pMC->Gstpar(idtmed[604], "CUTMUO", 1e-5);
928 //_____________________________________________________________________________
929 void AliPMDv2::Init()
932 // Initialises PMD detector after it has been built
938 for(i=0;i<35;i++) printf("*");
939 printf(" PMD_INIT ");
940 for(i=0;i<35;i++) printf("*");
942 printf(" PMD simulation package initialised\n");
943 printf(" parameters of pmd\n");
944 printf("%6d %10.2f %10.2f %10.2f %10.2f %10.2f\n",kdet,thmin,thmax,zdist,thlow,thhigh);
946 for(i=0;i<80;i++) printf("*");
949 Int_t *idtmed = gAlice->Idtmed();
950 fMedSens=idtmed[605-1];
953 //_____________________________________________________________________________
954 void AliPMDv2::StepManager()
957 // Called at each step in the PMD
960 Float_t hits[4], destep;
961 Float_t center[3] = {0,0,0};
965 AliMC* pMC=AliMC::GetMC();
966 if(pMC->GetMedium() == fMedSens && (destep = pMC->Edep())) {
968 pMC->CurrentVol(namep, copy);
970 pMC->CurrentVolOff(1,namep,copy);
972 pMC->CurrentVolOff(2,namep,copy);
974 if(strncmp(namep,"DW11",4))vol[2]=1;
975 if(strncmp(namep,"DV11",4))vol[2]=2;
976 pMC->CurrentVolOff(3,namep,copy);
978 pMC->CurrentVolOff(4,namep,copy);
980 pMC->Gdtom(center,hits,1);
981 hits[3] = destep*1e9; //Number in eV
982 AddHit(gAlice->CurrentTrack(), vol, hits);