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 ///////////////////////////////////////////////////////////////////////////////
20 // This class contains the functions for version 2 of the Time Of Flight //
23 // VERSION WITH 5 MODULES AND TILTED STRIPS
25 // HOLES FOR PHOS AND HMPID DETECTOR
27 // !Not Official version!
29 // Requested by Andreas Morsch to have TOFv2 full compliant
30 // with FRAME version 0
35 // University of Bologna - Italy
40 <img src="picts/AliTOFv2FHolesClass.gif">
44 ///////////////////////////////////////////////////////////////////////////////
46 #include <Riostream.h>
49 #include <TLorentzVector.h>
51 #include <TVirtualMC.h>
56 #include "AliTOFv2FHoles.h"
57 #include "AliTOFConstants.h" // AdC
60 ClassImp(AliTOFv2FHoles)
62 //_____________________________________________________________________________
63 AliTOFv2FHoles::AliTOFv2FHoles()
66 // Default constructor
70 //_____________________________________________________________________________
71 AliTOFv2FHoles::AliTOFv2FHoles(const char *name, const char *title)
75 // Standard constructor
78 // Check that FRAME is there otherwise we have no place where to
80 AliModule* frame=gAlice->GetModule("FRAME");
82 Error("Ctor","TOF needs FRAME to be present\n");
85 if(frame->IsVersion()!=0) {
86 Error("Ctor","FRAME version 0 needed with this version of TOF\n");
91 //_____________________________________________________________________________
92 void AliTOFv2FHoles::CreateGeometry()
95 // Create geometry for Time Of Flight version 0
99 <img src="picts/AliTOFv2FHoles.gif">
103 // Creates common geometry
105 AliTOF::CreateGeometry();
108 //_____________________________________________________________________________
109 void AliTOFv2FHoles::TOFpc(Float_t xtof, Float_t ytof, Float_t zlenC,
110 Float_t zlenB, Float_t zlenA, Float_t ztof0)
113 // Definition of the Time Of Fligh Resistive Plate Chambers
114 // xFLT, yFLT, zFLT - sizes of TOF modules (large)
116 Float_t ycoor, zcoor;
118 Int_t *idtmed = fIdtmed->GetArray()-499;
121 Float_t hTof = fRmax-fRmin;
123 Float_t radius = fRmin+2.;//cm
125 // fixing parameters as requested by FRAME v0 (Morsch 16-10-2001)
126 zlenA = 124.; // cm (A module length) original size 106. enlarged
127 zlenB = 154.; // cm (B module length) original size 141. enlarged
128 zlenC = 159.5; // cm (C module length) original size 175.5 reduced
129 ztof0 = 375.5; // total half-length of a TOF sector original size 371.5cm
134 par[2] = zlenC * 0.5;
135 gMC->Gsvolu("FTOC", "BOX ", idtmed[506], par, 3);
136 par[2] = zlenB * 0.5;
137 gMC->Gsvolu("FTOB", "BOX ", idtmed[506], par, 3);
138 par[2] = zlenA * 0.5;
139 gMC->Gsvolu("FTOA", "BOX ", idtmed[506], par, 3);
142 // Positioning of modules
144 Float_t zcor1 = ztof0 - zlenC*0.5;
145 Float_t zcor2 = ztof0 - zlenC - zlenB*0.5;
146 Float_t zcor3 = 0.00;
147 Float_t zcor4 = 156.75 - zlenC*0.5;
148 Float_t zcor5 = -156.75 + zlenB*0.5;
150 AliMatrix(idrotm[0], 90., 0., 0., 0., 90,-90.);
151 AliMatrix(idrotm[1], 90.,180., 0., 0., 90, 90.);
152 gMC->Gspos("FTOC", 1, "BTO1", 0, zcor1, 0, idrotm[0], "ONLY");
153 gMC->Gspos("FTOC", 2, "BTO1", 0, -zcor1, 0, idrotm[1], "ONLY");
154 gMC->Gspos("FTOC", 1, "BTO2", 0, zcor4, 0, idrotm[0], "ONLY");
155 gMC->Gspos("FTOC", 1, "BTO3", 0, 0., 0, idrotm[0], "ONLY");
157 gMC->Gspos("FTOB", 1, "BTO1", 0, zcor2, 0, idrotm[0], "ONLY");
158 gMC->Gspos("FTOB", 2, "BTO1", 0, -zcor2, 0, idrotm[1], "ONLY");
159 gMC->Gspos("FTOB", 1, "BTO2", 0, zcor5, 0, idrotm[0], "ONLY");
161 gMC->Gspos("FTOA", 0, "BTO1", 0, zcor3, 0, idrotm[0], "ONLY");
163 Float_t db = 0.5;//cm
164 Float_t xFLT, xFST, yFLT, zFLTA, zFLTB, zFLTC;
172 xFST = xFLT-fDeadBndX*2; //cm
174 // Sizes of MRPC pads
176 Float_t yPad = 0.505; //cm
178 // Large not sensitive volumes with Insensitive Freon
184 <<": ************************* TOF geometry **************************"
187 par[2] = (zFLTA *0.5);
188 gMC->Gsvolu("FLTA", "BOX ", idtmed[512], par, 3); // Insensitive Freon
189 gMC->Gspos ("FLTA", 0, "FTOA", 0., 0., 0., 0, "ONLY");
191 par[2] = (zFLTB * 0.5);
192 gMC->Gsvolu("FLTB", "BOX ", idtmed[512], par, 3); // Insensitive Freon
193 gMC->Gspos ("FLTB", 0, "FTOB", 0., 0., 0., 0, "ONLY");
195 par[2] = (zFLTC * 0.5);
196 gMC->Gsvolu("FLTC", "BOX ", idtmed[512], par, 3); // Insensitive Freon
197 gMC->Gspos ("FLTC", 0, "FTOC", 0., 0., 0., 0, "ONLY");
199 ///// Layers of Aluminum before and after detector /////
200 ///// Aluminum Box for Modules (1.8 mm thickness) /////
201 ///// lateral walls not simulated for the time being
202 //const Float_t khAlWall = 0.18;
204 const Float_t khAlWall = 0.11;
206 par[1] = khAlWall/2.;//cm
207 ycoor = -yFLT/2 + par[1];
208 par[2] = (zFLTA *0.5);
209 gMC->Gsvolu("FALA", "BOX ", idtmed[508], par, 3); // Alluminium
210 gMC->Gspos ("FALA", 1, "FLTA", 0., ycoor, 0., 0, "ONLY");
211 gMC->Gspos ("FALA", 2, "FLTA", 0.,-ycoor, 0., 0, "ONLY");
212 par[2] = (zFLTB *0.5);
213 gMC->Gsvolu("FALB", "BOX ", idtmed[508], par, 3); // Alluminium
214 gMC->Gspos ("FALB", 1, "FLTB", 0., ycoor, 0., 0, "ONLY");
215 gMC->Gspos ("FALB", 2, "FLTB", 0.,-ycoor, 0., 0, "ONLY");
216 par[2] = (zFLTC *0.5);
217 gMC->Gsvolu("FALC", "BOX ", idtmed[508], par, 3); // Alluminium
218 gMC->Gspos ("FALC", 1, "FLTC", 0., ycoor, 0., 0, "ONLY");
219 gMC->Gspos ("FALC", 2, "FLTC", 0.,-ycoor, 0., 0, "ONLY");
221 ///////////////// Detector itself //////////////////////
223 const Float_t kdeadBound = fDeadBndZ; //cm non-sensitive between the pad edge
224 //and the boundary of the strip
225 const Int_t knx = fNpadX; // number of pads along x
226 const Int_t knz = fNpadZ; // number of pads along z
227 const Float_t kspace = fSpace; //cm distance from the front plate of the box
229 Float_t zSenStrip = fZpad*fNpadZ;//cm
230 Float_t stripWidth = zSenStrip + 2*kdeadBound;
234 par[2] = stripWidth*0.5;
236 // new description for strip volume -double stack strip-
237 // -- all constants are expressed in cm
238 // heigth of different layers
239 const Float_t khhony = 0.8 ; // heigth of HONY Layer
240 const Float_t khpcby = 0.08 ; // heigth of PCB Layer
241 const Float_t khmyly = 0.035 ; // heigth of MYLAR Layer
242 const Float_t khgraphy = 0.02 ; // heigth of GRAPHITE Layer
243 const Float_t khglasseiy = 0.135; // 0.6 Ext. Glass + 1.1 i.e. (Int. Glass/2) (mm)
244 const Float_t khsensmy = 0.11 ; // heigth of Sensitive Freon Mixture
245 const Float_t kwsensmz = 2*3.5 ; // cm
246 const Float_t klsensmx = 48*2.5; // cm
247 const Float_t kwpadz = 3.5; // cm z dimension of the FPAD volume
248 const Float_t klpadx = 2.5; // cm x dimension of the FPAD volume
250 // heigth of the FSTR Volume (the strip volume)
251 const Float_t khstripy = 2*khhony+3*khpcby+4*(khmyly+khgraphy+khglasseiy)+2*khsensmy;
252 // width of the FSTR Volume (the strip volume)
253 const Float_t kwstripz = 10.;
254 // length of the FSTR Volume (the strip volume)
255 const Float_t klstripx = 122.;
257 Float_t parfp[3]={klstripx*0.5,khstripy*0.5,kwstripz*0.5};
258 // coordinates of the strip center in the strip reference frame; used for positioning
259 // internal strip volumes
260 Float_t posfp[3]={0.,0.,0.};
263 // FSTR volume definition and filling this volume with non sensitive Gas Mixture
264 gMC->Gsvolu("FSTR","BOX",idtmed[512],parfp,3);
265 //-- HONY Layer definition
267 parfp[1] = khhony*0.5;
269 gMC->Gsvolu("FHON","BOX",idtmed[503],parfp,3);
270 // positioning 2 HONY Layers on FSTR volume
272 posfp[1]=-khstripy*0.5+parfp[1];
273 gMC->Gspos("FHON",1,"FSTR",0., posfp[1],0.,0,"ONLY");
274 gMC->Gspos("FHON",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
276 //-- PCB Layer definition
277 parfp[1] = khpcby*0.5;
278 gMC->Gsvolu("FPCB","BOX",idtmed[504],parfp,3);
279 // positioning 2 PCB Layers on FSTR volume
280 posfp[1]=-khstripy*0.5+khhony+parfp[1];
281 gMC->Gspos("FPCB",1,"FSTR",0., posfp[1],0.,0,"ONLY");
282 gMC->Gspos("FPCB",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
283 // positioning the central PCB layer
284 gMC->Gspos("FPCB",3,"FSTR",0.,0.,0.,0,"ONLY");
286 //-- MYLAR Layer definition
287 parfp[1] = khmyly*0.5;
288 gMC->Gsvolu("FMYL","BOX",idtmed[511],parfp,3);
289 // positioning 2 MYLAR Layers on FSTR volume
290 posfp[1] = -khstripy*0.5+khhony+khpcby+parfp[1];
291 gMC->Gspos("FMYL",1,"FSTR",0., posfp[1],0.,0,"ONLY");
292 gMC->Gspos("FMYL",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
293 // adding further 2 MYLAR Layers on FSTR volume
294 posfp[1] = khpcby*0.5+parfp[1];
295 gMC->Gspos("FMYL",3,"FSTR",0., posfp[1],0.,0,"ONLY");
296 gMC->Gspos("FMYL",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
299 //-- Graphite Layer definition
300 parfp[1] = khgraphy*0.5;
301 gMC->Gsvolu("FGRP","BOX",idtmed[502],parfp,3);
302 // positioning 2 Graphite Layers on FSTR volume
303 posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+parfp[1];
304 gMC->Gspos("FGRP",1,"FSTR",0., posfp[1],0.,0,"ONLY");
305 gMC->Gspos("FGRP",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
306 // adding further 2 Graphite Layers on FSTR volume
307 posfp[1] = khpcby*0.5+khmyly+parfp[1];
308 gMC->Gspos("FGRP",3,"FSTR",0., posfp[1],0.,0,"ONLY");
309 gMC->Gspos("FGRP",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
312 //-- Glass (EXT. +Semi INT.) Layer definition
313 parfp[1] = khglasseiy*0.5;
314 gMC->Gsvolu("FGLA","BOX",idtmed[514],parfp,3);
315 // positioning 2 Glass Layers on FSTR volume
316 posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+khgraphy+parfp[1];
317 gMC->Gspos("FGLA",1,"FSTR",0., posfp[1],0.,0,"ONLY");
318 gMC->Gspos("FGLA",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
319 // adding further 2 Glass Layers on FSTR volume
320 posfp[1] = khpcby*0.5+khmyly+khgraphy+parfp[1];
321 gMC->Gspos("FGLA",3,"FSTR",0., posfp[1],0.,0,"ONLY");
322 gMC->Gspos("FGLA",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
325 //-- Sensitive Mixture Layer definition
326 parfp[0] = klsensmx*0.5;
327 parfp[1] = khsensmy*0.5;
328 parfp[2] = kwsensmz*0.5;
329 gMC->Gsvolu("FSEN","BOX",idtmed[513],parfp,3);
330 gMC->Gsvolu("FNSE","BOX",idtmed[512],parfp,3);
331 // positioning 2 gas Layers on FSTR volume
332 // the upper is insensitive freon
333 // while the remaining is sensitive
334 posfp[1] = khpcby*0.5+khmyly+khgraphy+khglasseiy+parfp[1];
335 gMC->Gspos("FNSE",0,"FSTR", 0., posfp[1],0.,0,"ONLY");
336 gMC->Gspos("FSEN",0,"FSTR", 0.,-posfp[1],0.,0,"ONLY");
338 // dividing FSEN along z in knz=2 and along x in knx=48
339 gMC->Gsdvn("FSEZ","FSEN",knz,3);
340 gMC->Gsdvn("FSEX","FSEZ",knx,1);
342 // FPAD volume definition
343 parfp[0] = klpadx*0.5;
344 parfp[1] = khsensmy*0.5;
345 parfp[2] = kwpadz*0.5;
346 gMC->Gsvolu("FPAD","BOX",idtmed[513],parfp,3);
347 // positioning the FPAD volumes on previous divisions
348 gMC->Gspos("FPAD",0,"FSEX",0.,0.,0.,0,"ONLY");
350 //// Positioning the Strips (FSTR) in the FLT volumes /////
354 Float_t t = zFLTC+zFLTB+zFLTA*0.5+ 2*db;//Half Width of Barrel
356 Float_t gap = fGapA+1.; //cm updated distance between the strip axis
357 // 1 cm is a special value exclusively for AliTOFv2FHoles geometry
363 ycoor = -14.5 + kspace ; //2 cm over front plate
365 AliMatrix (idrotm[0], 90., 0.,90.,90.,0., 90.);
367 Int_t centerLoc= (Int_t)(fNStripA/2.) + 1; // AdC
369 //gMC->Gspos("FSTR",j,"FLTA",0.,ycoor, 0.,idrotm[0],"ONLY");
370 gMC->Gspos("FSTR",centerLoc,"FLTA",0.,ycoor, 0.,idrotm[0],"ONLY"); // AdC
372 printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,j); // AdC
373 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
378 Int_t upDown = -1; // upDown=-1 -> Upper strip
379 // upDown=+1 -> Lower strip
381 ang = atan(zcoor/radius);
383 AliMatrix (idrotm[nrot], 90., 0.,90.-ang,90.,-ang, 90.);
384 AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
386 ycoor = -14.5+ kspace; //2 cm over front plate
387 ycoor += (1-(upDown+1)/2)*gap;
388 //gMC->Gspos("FSTR",j ,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY");
389 //gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY");
390 gMC->Gspos("FSTR",centerLoc-j,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY"); // AdC
391 gMC->Gspos("FSTR",centerLoc+j,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY"); // AdC
393 printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,j); // AdC
394 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
397 j++; //j += 2; // AdC
398 upDown*= -1; // Alternate strips
399 zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)-
400 upDown*gap*TMath::Tan(ang)-
401 (zSenStrip/2)/TMath::Cos(ang);
402 } while (zcoor-(stripWidth/2)*TMath::Cos(ang)>-t+zFLTC+zFLTB+db*2);
404 zcoor = zcoor+(zSenStrip/2)/TMath::Cos(ang)+
405 upDown*gap*TMath::Tan(ang)+
406 (zSenStrip/2)/TMath::Cos(ang);
409 zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)-
410 upDown*gap*TMath::Tan(ang)-
411 (zSenStrip/2)/TMath::Cos(ang);
413 ang = atan(zcoor/radius);
415 AliMatrix (idrotm[nrot], 90., 0.,90.-ang,90.,-ang, 90.);
416 AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
419 ycoor = -14.5+ kspace; //2 cm over front plate
420 ycoor += (1-(upDown+1)/2)*gap;
423 //gMC->Gspos("FSTR",j ,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY");
424 //gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY");
425 gMC->Gspos("FSTR",centerLoc-j,"FLTA",0.,ycoor, zcoor,idrotm[nrot], "ONLY"); // AdC
426 gMC->Gspos("FSTR",centerLoc+j,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY"); // AdC
428 printf("%s: %f, St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,j); // AdC
429 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
433 ycoor = -hTof/2.+ kspace;//2 cm over front plate
440 Float_t deadRegion = 1.0;//cm
442 zpos = zcoor - (zSenStrip/2)/TMath::Cos(ang)-
443 upDown*gap*TMath::Tan(ang)-
444 (zSenStrip/2)/TMath::Cos(ang)-
445 deadRegion/TMath::Cos(ang);
447 ang = atan(zpos/radius);
449 AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
451 ycoor = -hTof*0.5+ kspace ; //2 cm over front plate
452 ycoor += (1-(upDown+1)/2)*gap;
453 zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB
454 gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
457 printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);
458 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
465 zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)-
466 upDown*gap*TMath::Tan(ang)-
467 (zSenStrip/2)/TMath::Cos(ang);
468 ang = atan(zpos/radius);
470 AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
472 ycoor = -hTof*0.5+ kspace ; //2 cm over front plate
473 ycoor += (1-(upDown+1)/2)*gap;
474 zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB
475 gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
477 printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);
478 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
483 } while (TMath::Abs(ang*kRaddeg)<22.5);
484 //till we reach a tilting angle of 22.5 degrees
486 ycoor = -hTof*0.5+ kspace ; //2 cm over front plate
487 zpos = zpos - zSenStrip/TMath::Cos(ang);
488 // this avoid overlaps in between outer strips in plate B
489 Float_t deltaMovingUp=0.8; // [cm]
490 //Float_t deltaMovingDown=-0.0; // [cm] special value for AliTOFv2FHoles
493 ang = atan(zpos/radius);
495 AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
497 zcoor = zpos+(zFLTB/2+zFLTA/2+db);
498 gMC->Gspos("FSTR",i, "FLTB", 0., ycoor+deltaMovingUp, zcoor,idrotm[nrot], "ONLY");
499 deltaMovingUp+=0.8; // update delta moving toward the end of the plate
500 zpos = zpos - zSenStrip/TMath::Cos(ang);
502 printf("%s: %f, St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);
503 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
507 } while (zpos-stripWidth*0.5/TMath::Cos(ang)>-t+zFLTC+db);
511 zpos = zpos + zSenStrip/TMath::Cos(ang);
513 zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)+
515 (zSenStrip/2)/TMath::Cos(ang);
519 Float_t deltaGap=-2.5; // [cm] update distance from strip center and plate
520 ycoor= -hTof*0.5+kspace+gap+deltaGap;
524 ang = atan(zpos/radius);
526 AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
528 zcoor = zpos+(zFLTC*0.5+zFLTB+zFLTA*0.5+db*2);
530 gMC->Gspos("FSTR",i, "FLTC", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
532 printf("%s: %f, St. %2i, Pl.5 ",ClassName(),ang*kRaddeg,i);
533 printf("%s: y = %f, z = %f, zpos = %f \n",ClassName(),ycoor,zcoor,zpos);
536 zpos = zpos - zSenStrip/TMath::Cos(ang);
537 } while (zpos-stripWidth*TMath::Cos(ang)*0.5>-t);
540 ////////// Layers after strips /////////////////
541 // Al Layer thickness (2.3mm) factor 0.7
543 Float_t overSpace = fOverSpc;//cm
546 par[1] = 0.115*0.7; // factor 0.7
547 par[2] = (zFLTA *0.5);
548 ycoor = -yFLT/2 + overSpace + par[1];
549 gMC->Gsvolu("FPEA", "BOX ", idtmed[508], par, 3); // Al
550 gMC->Gspos ("FPEA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
551 par[2] = (zFLTB *0.5);
552 gMC->Gsvolu("FPEB", "BOX ", idtmed[508], par, 3); // Al
553 gMC->Gspos ("FPEB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
554 par[2] = (zFLTC *0.5);
555 gMC->Gsvolu("FPEC", "BOX ", idtmed[508], par, 3); // Al
556 gMC->Gspos ("FPEC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
559 // plexiglass thickness: 1.5 mm ; factor 0.3
562 par[1] = 0.075*0.3; // factor 0.3
563 par[2] = (zFLTA *0.5);
565 gMC->Gsvolu("FECA", "BOX ", idtmed[505], par, 3); // Plexigl.
566 gMC->Gspos ("FECA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
567 par[2] = (zFLTB *0.5);
568 gMC->Gsvolu("FECB", "BOX ", idtmed[505], par, 3); // Plexigl.
569 gMC->Gspos ("FECB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
570 par[2] = (zFLTC *0.5);
571 gMC->Gsvolu("FECC", "BOX ", idtmed[505], par, 3); // Plexigl.
572 gMC->Gspos ("FECC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
577 par[1] = (yFLT/2-ycoor-khAlWall)*0.5; // Aluminum layer considered (0.18 cm)
578 par[2] = (zFLTA *0.5);
580 gMC->Gsvolu("FAIA", "BOX ", idtmed[500], par, 3); // Air
581 gMC->Gspos ("FAIA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
582 par[2] = (zFLTB *0.5);
583 gMC->Gsvolu("FAIB", "BOX ", idtmed[500], par, 3); // Air
584 gMC->Gspos ("FAIB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
585 par[2] = (zFLTC *0.5);
586 gMC->Gsvolu("FAIC", "BOX ", idtmed[500], par, 3); // Air
587 gMC->Gspos ("FAIC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
590 // start with cards and cooling tubes
591 // finally, cards, cooling tubes and layer for thermal dispersion
593 // card volume definition
595 // see GEOM200 in GEANT manual
596 AliMatrix(idrotm[98], 90., 0., 90., 90., 0., 0.); // 0 deg
602 gMC->Gsvolu("FCAR", "BOX ", idtmed[504], cardpar, 3); // PCB Card
603 //alu plate volume definition
606 gMC->Gsvolu("FALP", "BOX ", idtmed[508], cardpar, 3); // Alu Plate
609 // central module positioning (FAIA)
610 Float_t cardpos[3], aplpos2, stepforcardA=6.89;
614 Float_t aplpos1 = -2.;
616 for (icard=0; icard<17; ++icard) {
617 cardpos[2]= cardpos[2]+stepforcardA;
618 aplpos2 = cardpos[2]+0.15;
619 gMC->Gspos("FCAR",icard,"FAIA",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY");
620 gMC->Gspos("FALP",icard,"FAIA",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY");
625 // intermediate module positioning (FAIB)
626 Float_t stepforcardB= 7.05;
628 for (icard=0; icard<19; ++icard) {
629 cardpos[2]= cardpos[2]+stepforcardB;
630 aplpos2 = cardpos[2]+0.15;
631 gMC->Gspos("FCAR",icard,"FAIB",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY");
632 gMC->Gspos("FALP",icard,"FAIB",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY");
636 // outer module positioning (FAIC)
637 Float_t stepforcardC= 8.45238;
639 for (icard=0; icard<17; ++icard) {
640 cardpos[2]= cardpos[2]+stepforcardC;
641 aplpos2 = cardpos[2]+0.15;
642 gMC->Gspos("FCAR",icard,"FAIC",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY");
643 gMC->Gspos("FALP",icard,"FAIC",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY");
646 // tube volume definition
651 gMC->Gsvolu("FTUB", "TUBE", idtmed[516], tubepar, 3); // cooling tubes (steel)
655 gMC->Gsvolu("FITU", "TUBE", idtmed[515], tubepar, 3); // cooling water
656 // positioning water tube into the steel one
657 gMC->Gspos("FITU",1,"FTUB",0.,0.,0.,0,"ONLY");
661 AliMatrix(idrotm[99], 180., 90., 90., 90., 90., 0.);
662 // central module positioning (FAIA)
663 Float_t tubepos[3], tdis=0.6;
665 tubepos[1]= cardpos[1];
666 tubepos[2]= -62.+tdis;
669 for (itub=0; itub<17; ++itub) {
670 tubepos[2]= tubepos[2]+stepforcardA;
671 gMC->Gspos("FTUB",itub,"FAIA",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
676 // intermediate module positioning (FAIB)
677 tubepos[2]= -70.5+tdis;
678 for (itub=0; itub<19; ++itub) {
679 tubepos[2]= tubepos[2]+stepforcardB;
680 gMC->Gspos("FTUB",itub,"FAIB",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
684 // outer module positioning (FAIC)
685 tubepos[2]= -79.75+tdis;
686 for (itub=0; itub<17; ++itub) {
687 tubepos[2]= tubepos[2]+stepforcardC;
688 gMC->Gspos("FTUB",itub,"FAIC",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
694 //_____________________________________________________________________________
695 void AliTOFv2FHoles::DrawModule() const
698 // Draw a shaded view of the Time Of Flight version 2
700 // Set everything unseen
701 gMC->Gsatt("*", "seen", -1);
703 // Set ALIC mother transparent
704 gMC->Gsatt("ALIC","SEEN",0);
706 // Set the volumes visible
707 gMC->Gsatt("ALIC","SEEN",0);
709 gMC->Gsatt("FTOA","SEEN",1);
710 gMC->Gsatt("FTOB","SEEN",1);
711 gMC->Gsatt("FTOC","SEEN",1);
712 gMC->Gsatt("FLTA","SEEN",1);
713 gMC->Gsatt("FLTB","SEEN",1);
714 gMC->Gsatt("FLTC","SEEN",1);
715 gMC->Gsatt("FPLA","SEEN",1);
716 gMC->Gsatt("FPLB","SEEN",1);
717 gMC->Gsatt("FPLC","SEEN",1);
718 gMC->Gsatt("FSTR","SEEN",1);
719 gMC->Gsatt("FPEA","SEEN",1);
720 gMC->Gsatt("FPEB","SEEN",1);
721 gMC->Gsatt("FPEC","SEEN",1);
723 gMC->Gsatt("FLZ1","SEEN",0);
724 gMC->Gsatt("FLZ2","SEEN",0);
725 gMC->Gsatt("FLZ3","SEEN",0);
726 gMC->Gsatt("FLX1","SEEN",0);
727 gMC->Gsatt("FLX2","SEEN",0);
728 gMC->Gsatt("FLX3","SEEN",0);
729 gMC->Gsatt("FPAD","SEEN",0);
731 gMC->Gdopt("hide", "on");
732 gMC->Gdopt("shad", "on");
733 gMC->Gsatt("*", "fill", 7);
734 gMC->SetClipBox(".");
735 gMC->SetClipBox("*", 0, 1000, -1000, 1000, -1000, 1000);
737 gMC->Gdraw("alic", 40, 30, 0, 12, 9.5, .02, .02);
738 gMC->Gdhead(1111, "Time Of Flight");
739 gMC->Gdman(18, 4, "MAN");
740 gMC->Gdopt("hide","off");
742 //_____________________________________________________________________________
743 void AliTOFv2FHoles::DrawDetectorModules()
746 // Draw a shaded view of the TOF detector version 2
749 //Set ALIC mother transparent
750 gMC->Gsatt("ALIC","SEEN",0);
753 //Set volumes visible
756 // Level 1 for TOF volumes
757 gMC->Gsatt("B077","seen",0);
760 //==========> Level 2
762 gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped -
763 gMC->Gsatt("B071","seen",0);
764 gMC->Gsatt("B074","seen",0);
765 gMC->Gsatt("B075","seen",0);
766 gMC->Gsatt("B080","seen",0); // B080 does not has sub-level
770 gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped -
771 gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped -
772 gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped -
773 gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped -
774 gMC->Gsatt("B056","seen",0); // B056 does not has sub-levels -
775 gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped -
776 gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped -
777 gMC->Gsatt("BTR1","seen",0); // BTR1 do not have sub-levels -
778 gMC->Gsatt("BTO1","seen",0);
782 gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
783 gMC->Gsatt("BTO2","seen",0);
786 gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
787 gMC->Gsatt("BTO3","seen",0);
789 // ==================> Level 3
790 // Level 3 of B071 / Level 2 of BTO1
791 gMC->Gsatt("FTOC","seen",-2);
792 gMC->Gsatt("FTOB","seen",-2);
793 gMC->Gsatt("FTOA","seen",-2);
795 // Level 3 of B074 / Level 2 of BTO2
796 // -> cfr previous settings
798 // Level 3 of B075 / Level 2 of BTO3
799 // -> cfr previous settings
801 gMC->Gdopt("hide","on");
802 gMC->Gdopt("shad","on");
803 gMC->Gsatt("*", "fill", 5);
804 gMC->SetClipBox(".");
805 gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000);
807 gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015);
808 gMC->Gdhead(1111,"TOF detector V1");
809 gMC->Gdman(18, 4, "MAN");
810 gMC->Gdopt("hide","off");
813 //_____________________________________________________________________________
814 void AliTOFv2FHoles::DrawDetectorStrips()
817 // Draw a shaded view of the TOF strips for version 2
820 //Set ALIC mother transparent
821 gMC->Gsatt("ALIC","SEEN",0);
824 //Set volumes visible
826 // Level 1 for TOF volumes
827 gMC->Gsatt("B077","seen",0);
829 //==========> Level 2
831 gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped -
832 gMC->Gsatt("B071","seen",0);
833 gMC->Gsatt("B074","seen",0);
834 gMC->Gsatt("B075","seen",0);
835 gMC->Gsatt("B080","seen",0); // B080 does not has sub-level
838 gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped -
839 gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped -
840 gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped -
841 gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped -
842 gMC->Gsatt("B056","seen",0); // B056 does not has sub-levels -
843 gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped -
844 gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped -
845 gMC->Gsatt("BTR1","seen",0); // BTR1 do not have sub-levels -
846 gMC->Gsatt("BTO1","seen",0);
848 // ==================> Level 3
849 // Level 3 of B071 / Level 2 of BTO1
850 gMC->Gsatt("FTOC","seen",0);
851 gMC->Gsatt("FTOB","seen",0);
852 gMC->Gsatt("FTOA","seen",0);
854 // Level 3 of B074 / Level 2 of BTO2
855 // -> cfr previous settings
857 // Level 3 of B075 / Level 2 of BTO3
858 // -> cfr previous settings
861 // ==========================> Level 4
862 // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOC
863 gMC->Gsatt("FLTC","seen",0);
864 // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOB
865 gMC->Gsatt("FLTB","seen",0);
866 // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOA
867 gMC->Gsatt("FLTA","seen",0);
869 // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOC
870 // -> cfr previous settings
871 // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOB
872 // -> cfr previous settings
874 // Level 4 of B075 / Level 3 of BTO3 / Level 2 of FTOC
875 // -> cfr previous settings
877 //======================================> Level 5
878 // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOC / Level 2 of FLTC
879 gMC->Gsatt("FALC","seen",0); // no children for FALC
880 gMC->Gsatt("FSTR","seen",-2);
881 gMC->Gsatt("FPEC","seen",0); // no children for FPEC
882 gMC->Gsatt("FECC","seen",0); // no children for FECC
883 gMC->Gsatt("FWAC","seen",0); // no children for FWAC
884 gMC->Gsatt("FAIC","seen",0); // no children for FAIC
886 // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOB / Level 2 of FLTB
887 gMC->Gsatt("FALB","seen",0); // no children for FALB
888 //--> gMC->Gsatt("FSTR","seen",-2);
891 // -> cfr previous settings
892 gMC->Gsatt("FPEB","seen",0); // no children for FPEB
893 gMC->Gsatt("FECB","seen",0); // no children for FECB
894 gMC->Gsatt("FWAB","seen",0); // no children for FWAB
895 gMC->Gsatt("FAIB","seen",0); // no children for FAIB
897 // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOA / Level 2 of FLTA
898 gMC->Gsatt("FALA","seen",0); // no children for FALB
899 //--> gMC->Gsatt("FSTR","seen",-2);
900 // -> cfr previous settings
901 gMC->Gsatt("FPEA","seen",0); // no children for FPEA
902 gMC->Gsatt("FECA","seen",0); // no children for FECA
903 gMC->Gsatt("FWAA","seen",0); // no children for FWAA
904 gMC->Gsatt("FAIA","seen",0); // no children for FAIA
907 gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
908 gMC->Gsatt("BTO2","seen",0);
911 gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
912 gMC->Gsatt("BTO3","seen",0);
914 // for others Level 5, cfr. previous settings
916 gMC->Gdopt("hide","on");
917 gMC->Gdopt("shad","on");
918 gMC->Gsatt("*", "fill", 5);
919 gMC->SetClipBox(".");
920 gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000);
922 gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015);
923 gMC->Gdhead(1111,"TOF Strips V1");
924 gMC->Gdman(18, 4, "MAN");
925 gMC->Gdopt("hide","off");
928 //_____________________________________________________________________________
929 void AliTOFv2FHoles::CreateMaterials()
932 // Define materials for the Time Of Flight
934 AliTOF::CreateMaterials();
937 //_____________________________________________________________________________
938 void AliTOFv2FHoles::Init()
941 // Initialise the detector after the geometry has been defined
944 printf("%s: **************************************"
946 "**************************************\n",ClassName());
947 printf("\n%s: Version 2 of TOF initialing, "
948 "TOF with holes for PHOS and HMPID \n",ClassName());
953 fIdFTOA = gMC->VolId("FTOA");
954 fIdFTOB = gMC->VolId("FTOB");
955 fIdFTOC = gMC->VolId("FTOC");
956 fIdFLTA = gMC->VolId("FLTA");
957 fIdFLTB = gMC->VolId("FLTB");
958 fIdFLTC = gMC->VolId("FLTC");
961 printf("%s: **************************************"
963 "**************************************\n",ClassName());
967 //_____________________________________________________________________________
968 void AliTOFv2FHoles::StepManager()
971 // Procedure called at each step in the Time Of Flight
973 TLorentzVector mom, pos;
974 Float_t xm[3],pm[3],xpad[3],ppad[3];
975 Float_t hits[13],phi,phid,z;
977 Int_t sector, plate, padx, padz, strip;
978 Int_t copy, padzid, padxid, stripid, i;
979 Int_t *idtmed = fIdtmed->GetArray()-499;
980 Float_t incidenceAngle;
982 if(gMC->CurrentMedium()==idtmed[513] &&
983 gMC->IsTrackEntering() && gMC->TrackCharge()
984 && gMC->CurrentVolID(copy)==fIdSens)
986 // getting information about hit volumes
988 padzid=gMC->CurrentVolOffID(2,copy);
991 padxid=gMC->CurrentVolOffID(1,copy);
994 stripid=gMC->CurrentVolOffID(4,copy);
997 gMC->TrackPosition(pos);
998 gMC->TrackMomentum(mom);
1000 // Double_t NormPos=1./pos.Rho();
1001 Double_t normMom=1./mom.Rho();
1003 // getting the cohordinates in pad ref system
1004 xm[0] = (Float_t)pos.X();
1005 xm[1] = (Float_t)pos.Y();
1006 xm[2] = (Float_t)pos.Z();
1008 pm[0] = (Float_t)mom.X()*normMom;
1009 pm[1] = (Float_t)mom.Y()*normMom;
1010 pm[2] = (Float_t)mom.Z()*normMom;
1012 gMC->Gmtod(xm,xpad,1);
1013 gMC->Gmtod(pm,ppad,2);
1015 incidenceAngle = TMath::ACos(ppad[1])*kRaddeg;
1022 if (TMath::Abs(z) <= fZlenA*0.5) plate = 3;
1023 if (z < (fZlenA*0.5+fZlenB) &&
1024 z > fZlenA*0.5) plate = 4;
1025 if (z >-(fZlenA*0.5+fZlenB) &&
1026 z < -fZlenA*0.5) plate = 2;
1027 if (z > (fZlenA*0.5+fZlenB)) plate = 5;
1028 if (z <-(fZlenA*0.5+fZlenB)) plate = 1;
1029 end to be changed */
1031 if (TMath::Abs(z) <= 124.*0.5) plate = 2; //3; // AdC
1032 if (z < (124.*0.5+154.) &&
1033 z > 124.*0.5) plate = 1; //4; // AdC
1034 if (z >-(124.*0.5+154.) &&
1035 z < -124.*0.5) plate = 3; //2; // AdC
1036 if (z > (124.*0.5+154.)) plate = 0; //5; // AdC
1037 if (z <-(124.*0.5+154.)) plate = 4; //1; // AdC
1039 if (plate==0) strip=AliTOFConstants::fgkNStripC-strip; // AdC
1040 else if (plate==1) strip=AliTOFConstants::fgkNStripB-strip; // AdC
1041 else strip--; // AdC
1043 if (z<=0.) padx=AliTOFConstants::fgkNpadX-padx; // AdC
1046 if (plate==3 || plate==4) padz=AliTOFConstants::fgkNpadZ-padz; // AdC
1050 if (phi>=0.) phid = phi*kRaddeg; //+180.; // AdC
1051 else phid = phi*kRaddeg + 360.; // AdC
1052 sector = Int_t (phid/20.);
1060 hits[6] = mom.Rho();
1065 hits[11]= incidenceAngle;
1066 hits[12]= gMC->Edep();
1074 AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber(),vol, hits);