]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFv2FHoles.cxx
Reduced memory allocation
[u/mrichter/AliRoot.git] / TOF / AliTOFv2FHoles.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 //
20 //  This class contains the functions for version 2 of the Time Of Flight    //
21 //  detector.                                                                //
22 //
23 //  VERSION WITH 5 MODULES AND TILTED STRIPS 
24 //  
25 //  HOLES FOR PHOS AND HMPID DETECTOR
26 //
27 //  !Not Official version!
28 //
29 //   Requested by Andreas Morsch to have TOFv2 full compliant
30 //   with FRAME version 0
31 //  
32 //   Author:
33
34 //   Fabrizio Pierella
35 //   University of Bologna - Italy
36 //
37 //
38 //Begin_Html
39 /*
40 <img src="picts/AliTOFv2FHolesClass.gif">
41 */
42 //End_Html
43 //                                                                           //
44 ///////////////////////////////////////////////////////////////////////////////
45
46 #include <Riostream.h>
47 #include <stdlib.h>
48
49 #include <TLorentzVector.h>
50 #include <TObject.h>
51 #include <TVirtualMC.h>
52
53 #include "AliConst.h"
54 #include "AliMagF.h"
55 #include "AliRun.h"
56 #include "AliTOFv2FHoles.h"
57 #include "AliTOFConstants.h" // AdC
58 #include "AliMC.h"
59  
60 ClassImp(AliTOFv2FHoles)
61  
62 //_____________________________________________________________________________
63 AliTOFv2FHoles::AliTOFv2FHoles()
64 {
65   //
66   // Default constructor
67   //
68 }
69  
70 //_____________________________________________________________________________
71 AliTOFv2FHoles::AliTOFv2FHoles(const char *name, const char *title)
72         : AliTOF(name,title)
73 {
74   //
75   // Standard constructor
76   //
77   //
78   // Check that FRAME is there otherwise we have no place where to
79   // put TOF
80   AliModule* frame=gAlice->GetModule("FRAME");
81   if(!frame) {
82     Error("Ctor","TOF needs FRAME to be present\n");
83     exit(1);
84   } else
85     if(frame->IsVersion()!=0) { 
86       Error("Ctor","FRAME version 0 needed with this version of TOF\n");
87       exit(1);
88     }
89 }
90  
91 //_____________________________________________________________________________
92 void AliTOFv2FHoles::CreateGeometry()
93 {
94   //
95   // Create geometry for Time Of Flight version 0
96   //
97   //Begin_Html
98   /*
99     <img src="picts/AliTOFv2FHoles.gif">
100   */
101   //End_Html
102   //
103   // Creates common geometry
104   //
105   AliTOF::CreateGeometry();
106 }
107  
108 //_____________________________________________________________________________
109 void AliTOFv2FHoles::TOFpc(Float_t xtof, Float_t ytof, Float_t zlenC,
110                      Float_t zlenB, Float_t zlenA, Float_t ztof0)
111 {
112   //
113   // Definition of the Time Of Fligh Resistive Plate Chambers
114   // xFLT, yFLT, zFLT - sizes of TOF modules (large)
115   
116   Float_t  ycoor, zcoor;
117   Float_t  par[3];
118   Int_t    *idtmed = fIdtmed->GetArray()-499;
119   Int_t    idrotm[100];
120   Int_t    nrot = 0;
121   Float_t  hTof = fRmax-fRmin;
122   
123   Float_t radius = fRmin+2.;//cm
124
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
130   
131
132   par[0] =  xtof * 0.5;
133   par[1] =  ytof * 0.5;
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);
140
141
142   // Positioning of modules
143
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;
149   
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");
156   
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");
160   
161   gMC->Gspos("FTOA", 0, "BTO1", 0,  zcor3, 0, idrotm[0], "ONLY");
162   
163   Float_t db = 0.5;//cm
164   Float_t xFLT, xFST, yFLT, zFLTA, zFLTB, zFLTC;
165   
166   xFLT = fStripLn;
167   yFLT = ytof;
168   zFLTA = zlenA;
169   zFLTB = zlenB;
170   zFLTC = zlenC;
171   
172   xFST = xFLT-fDeadBndX*2; //cm
173   
174   // Sizes of MRPC pads
175   
176   Float_t yPad = 0.505;   //cm 
177   
178   // Large not sensitive volumes with Insensitive Freon
179   par[0] = xFLT*0.5;
180   par[1] = yFLT*0.5;
181   
182   if(fDebug) 
183     cout <<ClassName()
184          <<": ************************* TOF geometry **************************"
185          <<endl;
186   
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");
190   
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");
194   
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");
198
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;
203   // fp to be checked
204   const Float_t khAlWall = 0.11;
205   par[0] = xFLT*0.5;
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");
220   
221   ///////////////// Detector itself //////////////////////
222   
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
228
229   Float_t zSenStrip  = fZpad*fNpadZ;//cm
230   Float_t stripWidth = zSenStrip + 2*kdeadBound;
231
232   par[0] = xFLT*0.5;
233   par[1] = yPad*0.5; 
234   par[2] = stripWidth*0.5;
235   
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
249   
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.;
256   
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.};   
261   
262   
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
266   //  parfp[0] = -1;
267   parfp[1] = khhony*0.5;
268   //  parfp[2] = -1;
269   gMC->Gsvolu("FHON","BOX",idtmed[503],parfp,3);
270   // positioning 2 HONY Layers on FSTR volume
271   
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");
275   
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");
285
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");
297   
298   
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");
310   
311   
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");
323   
324   
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");
337   
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);
341   
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");
349   
350   ////  Positioning the Strips  (FSTR) in the FLT volumes  /////
351   
352   // Plate A (Central) 
353   
354   Float_t t = zFLTC+zFLTB+zFLTA*0.5+ 2*db;//Half Width of Barrel
355   
356   Float_t gap  = fGapA+1.; //cm  updated distance between the strip axis
357   // 1 cm is a special value exclusively for AliTOFv2FHoles geometry
358   Float_t zpos = 0;
359   Float_t ang  = 0;
360   Int_t j=1; // AdC
361   nrot  = 0;
362   zcoor = 0;
363   ycoor = -14.5 + kspace ; //2 cm over front plate
364   
365   AliMatrix (idrotm[0],  90.,  0.,90.,90.,0., 90.);   
366
367   Int_t centerLoc= (Int_t)(fNStripA/2.) + 1; // AdC
368
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  
371   if(fDebug>=1) {
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);
374   }
375   
376   zcoor -= zSenStrip;
377   //j++; // AdC
378   Int_t upDown = -1; // upDown=-1 -> Upper strip
379                      // upDown=+1 -> Lower strip
380   do{
381     ang = atan(zcoor/radius);
382     ang *= kRaddeg;
383     AliMatrix (idrotm[nrot],  90.,  0.,90.-ang,90.,-ang, 90.);   
384     AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
385     ang /= kRaddeg;
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
392     if(fDebug>=1) {
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);
395     }
396     
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);
403   
404   zcoor = zcoor+(zSenStrip/2)/TMath::Cos(ang)+
405     upDown*gap*TMath::Tan(ang)+
406     (zSenStrip/2)/TMath::Cos(ang);
407   
408   gap = fGapB;
409   zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)-
410     upDown*gap*TMath::Tan(ang)-
411     (zSenStrip/2)/TMath::Cos(ang);
412   
413   ang = atan(zcoor/radius);
414   ang *= kRaddeg;
415   AliMatrix (idrotm[nrot],  90.,  0.,90.-ang,90.,-ang, 90.);   
416   AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
417   ang /= kRaddeg;
418   
419   ycoor = -14.5+ kspace; //2 cm over front plate
420   ycoor += (1-(upDown+1)/2)*gap;
421   
422   /* for FRAME v0
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
427      if(fDebug>=1) {   
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);
430      }   
431   */
432   
433   ycoor = -hTof/2.+ kspace;//2 cm over front plate
434   
435   // Plate  B
436   
437   nrot = 0;
438   Int_t i=1; // AdC
439   upDown = 1;
440   Float_t deadRegion = 1.0;//cm
441   
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);
446   
447   ang = atan(zpos/radius);
448   ang *= kRaddeg;
449   AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
450   ang /= kRaddeg;
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");
455   
456   if(fDebug>=1) {   
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);
459   }   
460   
461   i++;
462   upDown*=-1;
463   
464   do {
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);
469     ang *= kRaddeg;
470     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
471     ang /= kRaddeg;
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");
476     if(fDebug>=1) {
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);
479     }
480     
481     upDown*=-1;
482     i++;
483   } while (TMath::Abs(ang*kRaddeg)<22.5);
484   //till we reach a tilting angle of 22.5 degrees
485   
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
491   
492   do {
493     ang = atan(zpos/radius);
494     ang *= kRaddeg;
495     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
496     ang /= kRaddeg;
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);
501     if(fDebug>=1) {
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);
504     }
505     i++;
506     
507   }  while (zpos-stripWidth*0.5/TMath::Cos(ang)>-t+zFLTC+db);
508   
509   // Plate  C
510   
511   zpos = zpos + zSenStrip/TMath::Cos(ang);
512   
513   zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)+
514     gap*TMath::Tan(ang)-
515     (zSenStrip/2)/TMath::Cos(ang);
516   
517   nrot = 0;
518   i=0;
519   Float_t deltaGap=-2.5; // [cm] update distance from strip center and plate
520   ycoor= -hTof*0.5+kspace+gap+deltaGap;
521   
522   do {
523     i++;
524     ang = atan(zpos/radius);
525     ang *= kRaddeg;
526     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
527     ang /= kRaddeg;
528     zcoor = zpos+(zFLTC*0.5+zFLTB+zFLTA*0.5+db*2);
529     if (i!=1)
530       gMC->Gspos("FSTR",i, "FLTC", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
531     if(fDebug>=1) {
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);
534     }
535     
536     zpos = zpos - zSenStrip/TMath::Cos(ang);
537   }  while (zpos-stripWidth*TMath::Cos(ang)*0.5>-t);
538   
539   
540   ////////// Layers after strips /////////////////
541   // Al Layer thickness (2.3mm) factor 0.7
542   
543   Float_t overSpace = fOverSpc;//cm
544   
545   par[0] = xFLT*0.5;
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");
557
558
559   // plexiglass thickness: 1.5 mm ; factor 0.3
560   ycoor += par[1];
561   par[0] = xFLT*0.5;
562   par[1] = 0.075*0.3; // factor 0.3 
563   par[2] = (zFLTA *0.5);
564   ycoor += par[1];
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");
573   
574   // frame of Air
575   ycoor += par[1];
576   par[0] = xFLT*0.5;
577   par[1] = (yFLT/2-ycoor-khAlWall)*0.5; // Aluminum layer considered (0.18 cm)
578   par[2] = (zFLTA *0.5);
579   ycoor += par[1];
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");
588
589   
590   // start with cards and cooling tubes
591   // finally, cards, cooling tubes and layer for thermal dispersion
592   // 3 volumes
593   // card volume definition
594   
595   // see GEOM200 in GEANT manual
596   AliMatrix(idrotm[98], 90., 0., 90., 90., 0., 0.); // 0 deg
597   
598   Float_t cardpar[3];
599   cardpar[0]= 61.;
600   cardpar[1]= 5.;
601   cardpar[2]= 0.1;
602   gMC->Gsvolu("FCAR", "BOX ", idtmed[504], cardpar, 3); // PCB Card 
603   //alu plate volume definition
604   cardpar[1]= 3.5;
605   cardpar[2]= 0.05;
606   gMC->Gsvolu("FALP", "BOX ", idtmed[508], cardpar, 3); // Alu Plate
607   
608   
609   // central module positioning (FAIA)
610   Float_t cardpos[3], aplpos2, stepforcardA=6.89;
611   cardpos[0]= 0.;
612   cardpos[1]= -0.5;
613   cardpos[2]= -62.;
614   Float_t aplpos1 = -2.;
615   Int_t icard;
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");
621     
622   }
623   
624   
625   // intermediate module positioning (FAIB)
626   Float_t stepforcardB= 7.05;
627   cardpos[2]= -70.5;
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"); 
633   }
634   
635   
636   // outer module positioning (FAIC)
637   Float_t stepforcardC= 8.45238;
638   cardpos[2]= -79.75;
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");
644   }
645   
646   // tube volume definition
647   Float_t tubepar[3];
648   tubepar[0]= 0.;
649   tubepar[1]= 0.4;
650   tubepar[2]= 61.;
651   gMC->Gsvolu("FTUB", "TUBE", idtmed[516], tubepar, 3); // cooling tubes (steel)
652   tubepar[0]= 0.;
653   tubepar[1]= 0.35;
654   tubepar[2]= 61.;
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");
658   
659   
660   // rotation matrix
661   AliMatrix(idrotm[99], 180., 90., 90., 90., 90., 0.);
662   // central module positioning (FAIA)
663   Float_t tubepos[3], tdis=0.6;
664   tubepos[0]= 0.;
665   tubepos[1]= cardpos[1];
666   tubepos[2]= -62.+tdis;
667   //  tub1pos = 5.;
668   Int_t itub;
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],
672                "ONLY");
673   }
674   
675   
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],
681                "ONLY");
682   }
683   
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],
689                "ONLY");
690   }
691
692 }
693
694 //_____________________________________________________________________________
695 void AliTOFv2FHoles::DrawModule() const
696 {
697   //
698   // Draw a shaded view of the Time Of Flight version 2
699   //
700   // Set everything unseen
701   gMC->Gsatt("*", "seen", -1);
702   // 
703   // Set ALIC mother transparent
704   gMC->Gsatt("ALIC","SEEN",0);
705   //
706   // Set the volumes visible
707   gMC->Gsatt("ALIC","SEEN",0);
708
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);
722   
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);
730
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);
736   gMC->DefaultRange();
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");
741 }
742 //_____________________________________________________________________________
743 void AliTOFv2FHoles::DrawDetectorModules()
744 {
745 //
746 // Draw a shaded view of the TOF detector version 2
747 //
748  
749 //Set ALIC mother transparent
750  gMC->Gsatt("ALIC","SEEN",0);
751
752 //
753 //Set volumes visible
754 // 
755 //=====> Level 1
756   // Level 1 for TOF volumes
757   gMC->Gsatt("B077","seen",0);
758  
759  
760 //==========> Level 2
761   // 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                
767
768
769   // Level 2 of B071
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);
779
780  
781   // Level 2 of B074
782   gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
783   gMC->Gsatt("BTO2","seen",0);
784
785   // Level 2 of B075
786   gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
787   gMC->Gsatt("BTO3","seen",0);
788
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);
794  
795   // Level 3 of B074 / Level 2 of BTO2
796   // -> cfr previous settings
797  
798   // Level 3 of B075 / Level 2 of BTO3
799   // -> cfr previous settings
800
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);
806   gMC->DefaultRange();
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");
811 }                                 
812
813 //_____________________________________________________________________________
814 void AliTOFv2FHoles::DrawDetectorStrips()
815 {
816 //
817 // Draw a shaded view of the TOF strips for version 2
818 //
819  
820 //Set ALIC mother transparent
821  gMC->Gsatt("ALIC","SEEN",0);
822
823 //
824 //Set volumes visible 
825 //=====> Level 1
826   // Level 1 for TOF volumes
827   gMC->Gsatt("B077","seen",0);
828   
829 //==========> Level 2
830   // 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
836
837   // Level 2 of B071
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);
847
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);
853  
854   // Level 3 of B074 / Level 2 of BTO2
855   // -> cfr previous settings
856  
857   // Level 3 of B075 / Level 2 of BTO3
858   // -> cfr previous settings
859
860
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);
868  
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
873  
874   // Level 4 of B075 / Level 3 of BTO3 / Level 2 of FTOC
875   // -> cfr previous settings
876
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
885
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);
889
890
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
896  
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
905
906   // Level 2 of B074
907   gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
908   gMC->Gsatt("BTO2","seen",0);
909
910   // Level 2 of B075
911   gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
912   gMC->Gsatt("BTO3","seen",0);
913
914 // for others Level 5, cfr. previous settings
915
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);
921   gMC->DefaultRange();
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");
926 }
927
928 //_____________________________________________________________________________
929 void AliTOFv2FHoles::CreateMaterials()
930 {
931   //
932   // Define materials for the Time Of Flight
933   //
934   AliTOF::CreateMaterials();
935 }
936  
937 //_____________________________________________________________________________
938 void AliTOFv2FHoles::Init()
939 {
940   //
941   // Initialise the detector after the geometry has been defined
942   //
943   if(fDebug) {   
944     printf("%s: **************************************"
945            "  TOF  "
946            "**************************************\n",ClassName());
947     printf("\n%s:   Version 2 of TOF initialing, "
948            "TOF with holes for PHOS and HMPID \n",ClassName());
949   }  
950
951   AliTOF::Init();
952
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");
959
960   if(fDebug) {
961     printf("%s: **************************************"
962            "  TOF  "
963            "**************************************\n",ClassName());
964   }
965 }
966  
967 //_____________________________________________________________________________
968 void AliTOFv2FHoles::StepManager()
969 {
970   //
971   // Procedure called at each step in the Time Of Flight
972   //
973   TLorentzVector mom, pos;
974   Float_t xm[3],pm[3],xpad[3],ppad[3];
975   Float_t hits[13],phi,phid,z;
976   Int_t   vol[5];
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;
981   
982   if(gMC->CurrentMedium()==idtmed[513] && 
983      gMC->IsTrackEntering() && gMC->TrackCharge()
984      && gMC->CurrentVolID(copy)==fIdSens) 
985   {    
986     // getting information about hit volumes
987     
988     padzid=gMC->CurrentVolOffID(2,copy);
989     padz=copy;  
990     
991     padxid=gMC->CurrentVolOffID(1,copy);
992     padx=copy;  
993     
994     stripid=gMC->CurrentVolOffID(4,copy);
995     strip=copy;  
996
997     gMC->TrackPosition(pos);
998     gMC->TrackMomentum(mom);
999
1000 //    Double_t NormPos=1./pos.Rho();
1001     Double_t normMom=1./mom.Rho();
1002
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();
1007
1008     pm[0] = (Float_t)mom.X()*normMom;
1009     pm[1] = (Float_t)mom.Y()*normMom;
1010     pm[2] = (Float_t)mom.Z()*normMom;
1011  
1012     gMC->Gmtod(xm,xpad,1);
1013     gMC->Gmtod(pm,ppad,2);
1014
1015     incidenceAngle = TMath::ACos(ppad[1])*kRaddeg;
1016
1017     z = pos[2];
1018
1019     plate = 0;   
1020
1021     /* to be changed
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 */
1030
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
1038
1039     if (plate==0) strip=AliTOFConstants::fgkNStripC-strip; // AdC
1040     else if (plate==1) strip=AliTOFConstants::fgkNStripB-strip; // AdC
1041     else strip--; // AdC
1042
1043     if (z<=0.) padx=AliTOFConstants::fgkNpadX-padx; // AdC
1044     else padx--; // AdC
1045
1046     if (plate==3 || plate==4) padz=AliTOFConstants::fgkNpadZ-padz; // AdC
1047     else padz--; // AdC
1048
1049     phi = pos.Phi();
1050     if (phi>=0.) phid = phi*kRaddeg; //+180.; // AdC
1051     else phid = phi*kRaddeg + 360.; // AdC
1052     sector = Int_t (phid/20.);
1053     //sector++; // AdC
1054
1055     for(i=0;i<3;++i) {
1056       hits[i]   = pos[i];
1057       hits[i+3] = pm[i];
1058     }
1059
1060     hits[6] = mom.Rho();
1061     hits[7] = pos[3];
1062     hits[8] = xpad[0];
1063     hits[9] = xpad[1];
1064     hits[10]= xpad[2];
1065     hits[11]= incidenceAngle;
1066     hits[12]= gMC->Edep();
1067     
1068     vol[0]= sector;
1069     vol[1]= plate;
1070     vol[2]= strip;
1071     vol[3]= padx;
1072     vol[4]= padz;
1073     
1074     AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber(),vol, hits);
1075   }
1076 }