]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFv3.cxx
Introducing Riostream.h
[u/mrichter/AliRoot.git] / TOF / AliTOFv3.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 /*
17 $Log$
18 Revision 1.29  2002/10/14 14:57:42  hristov
19 Merging the VirtualMC branch to the main development branch (HEAD)
20
21 Revision 1.25.6.3  2002/07/25 06:24:28  alibrary
22 Updating TOF on VirtualMC
23
24 Revision 1.28  2002/07/24 16:13:56  vicinanz
25 Fixed bub in BuildGeometry
26
27 Revision 1.27  2002/06/24 14:09:12  vicinanz
28 review on materials and
29
30 Revision 1.26  2002/05/08 13:24:50  vicinanz
31 AliTOFanalyzeMatching.C macro added and minor changes to the AliTOF code
32
33 Revision 1.25  2001/11/22 11:22:51  hristov
34 Updated version of TOF digitization, N^2 problem solved (J.Chudoba)
35
36 Revision 1.23  2001/09/27 10:39:20  vicinanz
37 SDigitizer and Merger added
38
39 Revision 1.22  2001/09/20 15:54:22  vicinanz
40 Updated Strip Structure (Double Stack)
41
42 Revision 1.21  2001/08/28 08:45:59  vicinanz
43 TTask and TFolder structures implemented
44
45 Revision 1.20  2001/05/16 14:57:24  alibrary
46 New files for folders and Stack
47
48 Revision 1.19  2001/05/04 10:09:48  vicinanz
49 Major upgrades to the strip structure
50
51 Revision 1.18  2000/12/04 08:48:20  alibrary
52 Fixing problems in the HEAD
53
54 Revision 1.17  2000/10/02 21:28:17  fca
55 Removal of useless dependecies via forward declarations
56
57 Revision 1.16  2000/05/10 16:52:18  vicinanz
58 New TOF version with holes for PHOS/RICH
59
60 Revision 1.14.2.1  2000/05/10 09:37:16  vicinanz
61 New version with Holes for PHOS/RICH
62
63 Revision 1.14  1999/11/05 22:39:06  fca
64 New hits structure
65
66 Revision 1.13  1999/11/02 11:26:39  fca
67 added stdlib.h for exit
68
69 Revision 1.12  1999/11/01 20:41:57  fca
70 Added protections against using the wrong version of FRAME
71
72 Revision 1.11  1999/10/22 08:04:14  fca
73 Correct improper use of negative parameters
74
75 Revision 1.10  1999/10/16 19:30:06  fca
76 Corrected Rotation Matrix and CVS log
77
78 Revision 1.9  1999/10/15 15:35:20  fca
79 New version for frame1099 with and without holes
80
81 Revision 1.8  1999/09/29 09:24:33  fca
82 Introduction of the Copyright and cvs Log
83
84 */
85
86 ///////////////////////////////////////////////////////////////////////////////
87 //
88 //  This class contains the functions for version 3 of the Time Of Flight    //
89 //  detector.                                                                //
90 //
91 //  VERSION WITH 5 MODULES AND TILTED STRIPS 
92 //  HITS DEFINED FOR THIS VERSION
93 //  HOLES FOR RICH DETECTOR
94 //
95 //   Authors:
96 //
97 //   Alessio Seganti
98 //   Domenico Vicinanza
99 //
100 //   University of Salerno - Italy
101 //
102 //   Fabrizio Pierella
103 //   University of Bologna - Italy
104 //
105 //
106 //Begin_Html
107 /*
108 <img src="picts/AliTOFv3Class.gif">
109 */
110 //End_Html
111 //                                                                           //
112 ///////////////////////////////////////////////////////////////////////////////
113
114 #include <Riostream.h>
115 #include <stdlib.h>
116
117 #include "AliTOFv3.h"
118 #include "TBRIK.h"
119 #include "TGeometry.h"
120 #include "TNode.h"
121 #include <TLorentzVector.h>
122 #include "TObject.h"
123 #include "AliRun.h"
124 #include "AliMC.h"
125 #include "AliConst.h"
126
127  
128 ClassImp(AliTOFv3)
129  
130 //_____________________________________________________________________________
131 AliTOFv3::AliTOFv3()
132 {
133   //
134   // Default constructor
135   //
136 }
137  
138 //_____________________________________________________________________________
139 AliTOFv3::AliTOFv3(const char *name, const char *title)
140         : AliTOF(name,title)
141 {
142   //
143   // Standard constructor
144   //
145   //
146   // Check that FRAME is there otherwise we have no place where to
147   // put TOF
148   AliModule* frame=gAlice->GetModule("FRAME");
149   if(!frame) {
150     Error("Ctor","TOF needs FRAME to be present\n");
151     exit(1);
152   } else
153     if(frame->IsVersion()!=1) {
154       Error("Ctor","FRAME version 1 needed with this version of TOF\n");
155       exit(1);
156     }
157
158 }
159
160 //____________________________________________________________________________
161
162 void AliTOFv3::BuildGeometry()
163 {
164   //
165   // Build TOF ROOT geometry for the ALICE event display
166   //
167   TNode *node, *top;
168   const int kColorTOF  = 27;
169   
170   // Find top TNODE
171   top = gAlice->GetGeometry()->GetNode("alice");
172   
173   // Position the different copies
174   const Float_t krTof  =(fRmax+fRmin)/2;
175   const Float_t khTof  = fRmax-fRmin;
176   const Int_t   kNTof = fNTof;
177   const Float_t kPi   = TMath::Pi();
178   const Float_t kangle = 2*kPi/kNTof;
179   Float_t ang;
180   
181   // define offset for nodes
182   Float_t zOffsetC = fZtof - fZlenC*0.5;
183   Float_t zOffsetB = fZtof - fZlenC - fZlenB*0.5;
184   Float_t zOffsetA = 0.;
185   // Define TOF basic volume
186   
187   char nodeName0[7], nodeName1[7], nodeName2[7]; 
188   char nodeName3[7], nodeName4[7], rotMatNum[7];
189   
190   new TBRIK("S_TOF_C","TOF box","void",
191             fStripLn*0.5,khTof*0.5,fZlenC*0.5);
192   new TBRIK("S_TOF_B","TOF box","void",
193             fStripLn*0.5,khTof*0.5,fZlenB*0.5);
194   new TBRIK("S_TOF_A","TOF box","void",
195             fStripLn*0.5,khTof*0.5,fZlenA*0.5);
196   
197   for (Int_t nodeNum=1;nodeNum<19;nodeNum++){
198     
199     if (nodeNum<10) {
200       sprintf(rotMatNum,"rot50%i",nodeNum);
201       sprintf(nodeName0,"FTO00%i",nodeNum);
202       sprintf(nodeName1,"FTO10%i",nodeNum);
203       sprintf(nodeName2,"FTO20%i",nodeNum);
204       sprintf(nodeName3,"FTO30%i",nodeNum);
205       sprintf(nodeName4,"FTO40%i",nodeNum);
206     }
207     if (nodeNum>9) {
208       sprintf(rotMatNum,"rot5%i",nodeNum);
209       sprintf(nodeName0,"FTO0%i",nodeNum);
210       sprintf(nodeName1,"FTO1%i",nodeNum);
211       sprintf(nodeName2,"FTO2%i",nodeNum);
212       sprintf(nodeName3,"FTO3%i",nodeNum);
213       sprintf(nodeName4,"FTO4%i",nodeNum);
214     }
215     
216     new TRotMatrix(rotMatNum,rotMatNum,90,-20*nodeNum,90,90-20*nodeNum,0,0);
217     ang = (4.5-nodeNum) * kangle;
218     
219     top->cd();
220     node = new TNode(nodeName0,nodeName0,"S_TOF_C",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),zOffsetC,rotMatNum);
221     node->SetLineColor(kColorTOF);
222     fNodes->Add(node); 
223     
224     top->cd(); 
225     node = new TNode(nodeName1,nodeName1,"S_TOF_C",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),-zOffsetC,rotMatNum);
226     node->SetLineColor(kColorTOF);
227     fNodes->Add(node); 
228     if (nodeNum !=1 && nodeNum!=17 && nodeNum !=18)
229       {
230         top->cd();
231         node = new TNode(nodeName2,nodeName2,"S_TOF_B",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),zOffsetB,rotMatNum);
232         node->SetLineColor(kColorTOF);
233         fNodes->Add(node); 
234         
235         top->cd();
236         node = new TNode(nodeName3,nodeName3,"S_TOF_B",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),-zOffsetB,rotMatNum);
237         node->SetLineColor(kColorTOF);
238         fNodes->Add(node); 
239       } // Holes for RICH detector
240     
241     if (nodeNum !=1 && nodeNum !=17 && nodeNum !=18)
242       { 
243         top->cd();
244         node = new TNode(nodeName4,nodeName4,"S_TOF_A",krTof*TMath::Cos(ang),krTof*TMath::Sin(ang),zOffsetA,rotMatNum);
245         node->SetLineColor(kColorTOF);
246         fNodes->Add(node); 
247       } // Holes for RICH detector, central part
248   }
249 }
250
251
252  
253 //_____________________________________________________________________________
254 void AliTOFv3::CreateGeometry()
255 {
256   //
257   // Create geometry for Time Of Flight version 0
258   //
259   //Begin_Html
260   /*
261     <img src="picts/AliTOFv3.gif">
262   */
263   //End_Html
264   //
265   // Creates common geometry
266   //
267   AliTOF::CreateGeometry();
268 }
269  
270 //_____________________________________________________________________________
271 void AliTOFv3::TOFpc(Float_t xtof, Float_t ytof, Float_t zlenC,
272                      Float_t zlenB, Float_t zlenA, Float_t ztof0)
273 {
274   //
275   // Definition of the Time Of Fligh Resistive Plate Chambers
276   // xFLT, yFLT, zFLT - sizes of TOF modules (large)
277   
278   Float_t  ycoor, zcoor;
279   Float_t  par[3];
280   Int_t    *idtmed = fIdtmed->GetArray()-499;
281   Int_t    idrotm[100];
282   Int_t    nrot = 0;
283   Float_t  hTof = fRmax-fRmin;
284   
285   Float_t radius = fRmin+2.;//cm
286   
287   par[0] =  xtof * 0.5;
288   par[1] =  ytof * 0.5;
289   par[2] = zlenC * 0.5;
290   gMC->Gsvolu("FTOC", "BOX ", idtmed[506], par, 3);
291   par[2] = zlenB * 0.5;
292   gMC->Gsvolu("FTOB", "BOX ", idtmed[506], par, 3);
293   par[2] = zlenA * 0.5;
294   gMC->Gsvolu("FTOA", "BOX ", idtmed[506], par, 3);
295   
296   
297   // Positioning of modules
298   
299   Float_t zcor1 = ztof0 - zlenC*0.5;
300   Float_t zcor2 = ztof0 - zlenC - zlenB*0.5;
301   Float_t zcor3 = 0.;
302   
303   AliMatrix(idrotm[0], 90.,  0., 0., 0., 90,-90.);
304   AliMatrix(idrotm[1], 90.,180., 0., 0., 90, 90.);
305   gMC->Gspos("FTOC", 1, "BTO1", 0,  zcor1, 0, idrotm[0], "ONLY");
306   gMC->Gspos("FTOC", 2, "BTO1", 0, -zcor1, 0, idrotm[1], "ONLY");
307   gMC->Gspos("FTOC", 1, "BTO2", 0,  zcor1, 0, idrotm[0], "ONLY");
308   gMC->Gspos("FTOC", 2, "BTO2", 0, -zcor1, 0, idrotm[1], "ONLY");
309   gMC->Gspos("FTOC", 1, "BTO3", 0,  zcor1, 0, idrotm[0], "ONLY");
310   gMC->Gspos("FTOC", 2, "BTO3", 0, -zcor1, 0, idrotm[1], "ONLY");
311   
312   gMC->Gspos("FTOB", 1, "BTO1", 0,  zcor2, 0, idrotm[0], "ONLY");
313   gMC->Gspos("FTOB", 2, "BTO1", 0, -zcor2, 0, idrotm[1], "ONLY");
314   gMC->Gspos("FTOB", 1, "BTO2", 0,  zcor2, 0, idrotm[0], "ONLY");
315   gMC->Gspos("FTOB", 2, "BTO2", 0, -zcor2, 0, idrotm[1], "ONLY");
316   
317   gMC->Gspos("FTOA", 0, "BTO1", 0, zcor3,  0, idrotm[0], "ONLY");
318   gMC->Gspos("FTOA", 0, "BTO2", 0, zcor3,  0, idrotm[0], "ONLY");
319   
320   Float_t db = 0.5;//cm
321   Float_t xFLT, xFST, yFLT, zFLTA, zFLTB, zFLTC;
322   
323   xFLT = fStripLn;
324   yFLT = ytof;
325   zFLTA = zlenA;
326   zFLTB = zlenB;
327   zFLTC = zlenC;
328   
329   xFST = xFLT-fDeadBndX*2;//cm
330   
331   // Sizes of MRPC pads
332   
333   Float_t yPad = 0.505;//cm 
334   
335   // Large not sensitive volumes with Insensitive Freon
336   par[0] = xFLT*0.5;
337   par[1] = yFLT*0.5;
338   
339   if (fDebug) cout << ClassName() <<
340                 cout <<": ************************* TOF geometry **************************"<<endl;
341   
342   par[2] = (zFLTA *0.5);
343   gMC->Gsvolu("FLTA", "BOX ", idtmed[512], par, 3); // Insensitive Freon
344   gMC->Gspos ("FLTA", 0, "FTOA", 0., 0., 0., 0, "ONLY");
345   
346   par[2] = (zFLTB * 0.5);
347   gMC->Gsvolu("FLTB", "BOX ", idtmed[512], par, 3); // Insensitive Freon
348   gMC->Gspos ("FLTB", 0, "FTOB", 0., 0., 0., 0, "ONLY");
349   
350   par[2] = (zFLTC * 0.5);
351   gMC->Gsvolu("FLTC", "BOX ", idtmed[512], par, 3); // Insensitive Freon
352   gMC->Gspos ("FLTC", 0, "FTOC", 0., 0., 0., 0, "ONLY");
353
354   ///// Layers of Aluminum before and after detector /////
355   ///// Aluminum Box for Modules (1.8 mm thickness)  /////
356   ///// lateral walls not simulated for the time being
357   //const Float_t khAlWall = 0.18;
358   // fp to be checked
359   const Float_t khAlWall = 0.11;
360   par[0] = xFLT*0.5;
361   par[1] = khAlWall/2.;//cm
362   ycoor = -yFLT/2 + par[1];
363   par[2] = (zFLTA *0.5);
364   gMC->Gsvolu("FALA", "BOX ", idtmed[508], par, 3); // Alluminium
365   gMC->Gspos ("FALA", 1, "FLTA", 0., ycoor, 0., 0, "ONLY");
366   gMC->Gspos ("FALA", 2, "FLTA", 0.,-ycoor, 0., 0, "ONLY");
367   par[2] = (zFLTB *0.5);
368   gMC->Gsvolu("FALB", "BOX ", idtmed[508], par, 3); // Alluminium 
369   gMC->Gspos ("FALB", 1, "FLTB", 0., ycoor, 0., 0, "ONLY");
370   gMC->Gspos ("FALB", 2, "FLTB", 0.,-ycoor, 0., 0, "ONLY");
371   par[2] = (zFLTC *0.5);
372   gMC->Gsvolu("FALC", "BOX ", idtmed[508], par, 3); // Alluminium
373   gMC->Gspos ("FALC", 1, "FLTC", 0., ycoor, 0., 0, "ONLY");
374   gMC->Gspos ("FALC", 2, "FLTC", 0.,-ycoor, 0., 0, "ONLY");
375   
376   ///////////////// Detector itself //////////////////////
377   
378   const Float_t  kdeadBound  =  fDeadBndZ; //cm non-sensitive between the pad edge 
379   //and the boundary of the strip
380   const Int_t    knx    = fNpadX;          // number of pads along x
381   const Int_t    knz    = fNpadZ;          // number of pads along z
382   const Float_t  kspace = fSpace;            //cm distance from the front plate of the box
383   
384   Float_t zSenStrip  = fZpad*fNpadZ;//cm
385   Float_t stripWidth = zSenStrip + 2*kdeadBound;
386   
387   par[0] = xFLT*0.5;
388   par[1] = yPad*0.5; 
389   par[2] = stripWidth*0.5;
390   
391   // new description for strip volume -double stack strip-
392   // -- all constants are expressed in cm
393   // heigth of different layers
394   const Float_t khhony = 0.8     ;   // heigth of HONY  Layer
395   const Float_t khpcby = 0.08    ;   // heigth of PCB   Layer
396   const Float_t khmyly = 0.035   ;   // heigth of MYLAR Layer
397   const Float_t khgraphy = 0.02  ;   // heigth of GRAPHITE Layer
398   const Float_t khglasseiy = 0.135;   // 0.6 Ext. Glass + 1.1 i.e. (Int. Glass/2) (mm)
399   const Float_t khsensmy = 0.11  ;   // heigth of Sensitive Freon Mixture
400   const Float_t kwsensmz = 2*3.5 ;   // cm
401   const Float_t klsensmx = 48*2.5;   // cm
402   const Float_t kwpadz = 3.5;   // cm z dimension of the FPAD volume
403   const Float_t klpadx = 2.5;   // cm x dimension of the FPAD volume
404   
405   // heigth of the FSTR Volume (the strip volume)
406   const Float_t khstripy = 2*khhony+3*khpcby+4*(khmyly+khgraphy+khglasseiy)+2*khsensmy;
407   // width  of the FSTR Volume (the strip volume)
408   const Float_t kwstripz = 10.;
409   // length of the FSTR Volume (the strip volume)
410   const Float_t klstripx = 122.;
411   
412   Float_t parfp[3]={klstripx*0.5,khstripy*0.5,kwstripz*0.5};
413   // coordinates of the strip center in the strip reference frame; used for positioning
414   // internal strip volumes
415   Float_t posfp[3]={0.,0.,0.};   
416   
417   
418   // FSTR volume definition and filling this volume with non sensitive Gas Mixture
419   gMC->Gsvolu("FSTR","BOX",idtmed[512],parfp,3);
420   //-- HONY Layer definition
421   //  parfp[0] = -1;
422   parfp[1] = khhony*0.5;
423   //  parfp[2] = -1;
424   gMC->Gsvolu("FHON","BOX",idtmed[503],parfp,3);
425   // positioning 2 HONY Layers on FSTR volume
426   
427   posfp[1]=-khstripy*0.5+parfp[1];
428   gMC->Gspos("FHON",1,"FSTR",0., posfp[1],0.,0,"ONLY");
429   gMC->Gspos("FHON",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
430   
431   //-- PCB Layer definition 
432   parfp[1] = khpcby*0.5;
433   gMC->Gsvolu("FPCB","BOX",idtmed[504],parfp,3);
434   // positioning 2 PCB Layers on FSTR volume
435   posfp[1]=-khstripy*0.5+khhony+parfp[1];
436   gMC->Gspos("FPCB",1,"FSTR",0., posfp[1],0.,0,"ONLY");
437   gMC->Gspos("FPCB",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
438   // positioning the central PCB layer
439   gMC->Gspos("FPCB",3,"FSTR",0.,0.,0.,0,"ONLY");
440   
441   
442   
443   //-- MYLAR Layer definition
444   parfp[1] = khmyly*0.5;
445   gMC->Gsvolu("FMYL","BOX",idtmed[511],parfp,3);
446   // positioning 2 MYLAR Layers on FSTR volume
447   posfp[1] = -khstripy*0.5+khhony+khpcby+parfp[1]; 
448   gMC->Gspos("FMYL",1,"FSTR",0., posfp[1],0.,0,"ONLY");
449   gMC->Gspos("FMYL",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
450   // adding further 2 MYLAR Layers on FSTR volume
451   posfp[1] = khpcby*0.5+parfp[1];
452   gMC->Gspos("FMYL",3,"FSTR",0., posfp[1],0.,0,"ONLY");
453   gMC->Gspos("FMYL",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
454   
455   
456   //-- Graphite Layer definition
457   parfp[1] = khgraphy*0.5;
458   gMC->Gsvolu("FGRP","BOX",idtmed[502],parfp,3);
459   // positioning 2 Graphite Layers on FSTR volume
460   posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+parfp[1];
461   gMC->Gspos("FGRP",1,"FSTR",0., posfp[1],0.,0,"ONLY");
462   gMC->Gspos("FGRP",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
463   // adding further 2 Graphite Layers on FSTR volume
464   posfp[1] = khpcby*0.5+khmyly+parfp[1];
465   gMC->Gspos("FGRP",3,"FSTR",0., posfp[1],0.,0,"ONLY");
466   gMC->Gspos("FGRP",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
467   
468   
469   //-- Glass (EXT. +Semi INT.) Layer definition
470   parfp[1] = khglasseiy*0.5;
471   gMC->Gsvolu("FGLA","BOX",idtmed[514],parfp,3);
472   // positioning 2 Glass Layers on FSTR volume
473   posfp[1] = -khstripy*0.5+khhony+khpcby+khmyly+khgraphy+parfp[1];
474   gMC->Gspos("FGLA",1,"FSTR",0., posfp[1],0.,0,"ONLY");
475   gMC->Gspos("FGLA",2,"FSTR",0.,-posfp[1],0.,0,"ONLY");
476   // adding further 2 Glass Layers on FSTR volume
477   posfp[1] = khpcby*0.5+khmyly+khgraphy+parfp[1];
478   gMC->Gspos("FGLA",3,"FSTR",0., posfp[1],0.,0,"ONLY");
479   gMC->Gspos("FGLA",4,"FSTR",0.,-posfp[1],0.,0,"ONLY");
480   
481   
482   //-- Sensitive Mixture Layer definition
483   parfp[0] = klsensmx*0.5;
484   parfp[1] = khsensmy*0.5;
485   parfp[2] = kwsensmz*0.5;
486   gMC->Gsvolu("FSEN","BOX",idtmed[513],parfp,3);
487   gMC->Gsvolu("FNSE","BOX",idtmed[512],parfp,3);
488   // positioning 2 gas Layers on FSTR volume
489   // the upper is insensitive freon
490   // while the remaining is sensitive
491   posfp[1] = khpcby*0.5+khmyly+khgraphy+khglasseiy+parfp[1];
492   gMC->Gspos("FNSE",0,"FSTR", 0., posfp[1],0.,0,"ONLY");
493   gMC->Gspos("FSEN",0,"FSTR", 0.,-posfp[1],0.,0,"ONLY");
494   
495   // dividing FSEN along z in knz=2 and along x in knx=48
496   gMC->Gsdvn("FSEZ","FSEN",knz,3);
497   gMC->Gsdvn("FSEX","FSEZ",knx,1);
498   
499   // FPAD volume definition
500   parfp[0] = klpadx*0.5;    
501   parfp[1] = khsensmy*0.5;
502   parfp[2] = kwpadz*0.5;
503   gMC->Gsvolu("FPAD","BOX",idtmed[513],parfp,3);
504   // positioning the FPAD volumes on previous divisions
505   gMC->Gspos("FPAD",0,"FSEX",0.,0.,0.,0,"ONLY");
506   
507   ////  Positioning the Strips  (FSTR) in the FLT volumes  /////
508   
509   // Plate A (Central) 
510   
511   Float_t t = zFLTC+zFLTB+zFLTA*0.5+ 2*db;//Half Width of Barrel
512   
513   Float_t gap  = fGapA+0.5; //cm  updated distance between the strip axis
514   Float_t zpos = 0;
515   Float_t ang  = 0;
516   Int_t i=1,j=1;
517   nrot  = 0;
518   zcoor = 0;
519   ycoor = -14.5 + kspace ; //2 cm over front plate
520
521   AliMatrix (idrotm[0],  90.,  0.,90.,90.,0., 90.);   
522   gMC->Gspos("FSTR",j,"FLTA",0.,ycoor, 0.,idrotm[0],"ONLY");
523   if(fDebug) {
524     printf("%s: %f,  St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i);
525     printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);
526   }
527   zcoor -= zSenStrip;
528   j++;
529   Int_t upDown = -1; // upDown=-1 -> Upper strip
530   // upDown=+1 -> Lower strip
531   do{
532     ang = atan(zcoor/radius);
533     ang *= kRaddeg;
534     AliMatrix (idrotm[nrot],  90.,  0.,90.-ang,90.,-ang, 90.);   
535     AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
536     ang /= kRaddeg;
537     ycoor = -14.5+ kspace; //2 cm over front plate
538     ycoor += (1-(upDown+1)/2)*gap;
539     gMC->Gspos("FSTR",j  ,"FLTA",0.,ycoor, zcoor,idrotm[nrot],  "ONLY");
540     gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY");
541     if(fDebug) {
542       printf("%s: %f,  St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i);
543       printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);
544     }
545     j += 2;
546     upDown*= -1; // Alternate strips 
547     zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)-
548       upDown*gap*TMath::Tan(ang)-
549       (zSenStrip/2)/TMath::Cos(ang);
550   } while (zcoor-(stripWidth/2)*TMath::Cos(ang)>-t+zFLTC+zFLTB+db*2);
551   
552   zcoor = zcoor+(zSenStrip/2)/TMath::Cos(ang)+
553     upDown*gap*TMath::Tan(ang)+
554     (zSenStrip/2)/TMath::Cos(ang);
555   
556   gap = fGapB;
557   zcoor = zcoor-(zSenStrip/2)/TMath::Cos(ang)-
558     upDown*gap*TMath::Tan(ang)-
559     (zSenStrip/2)/TMath::Cos(ang);
560   
561   ang = atan(zcoor/radius);
562   ang *= kRaddeg;
563   AliMatrix (idrotm[nrot],  90.,  0.,90.-ang,90.,-ang, 90.);   
564   AliMatrix (idrotm[nrot+1],90.,180.,90.+ang,90., ang, 90.);
565   ang /= kRaddeg;
566   
567   ycoor = -14.5+ kspace; //2 cm over front plate
568   ycoor += (1-(upDown+1)/2)*gap;
569   gMC->Gspos("FSTR",j  ,"FLTA",0.,ycoor, zcoor,idrotm[nrot],  "ONLY");
570   gMC->Gspos("FSTR",j+1,"FLTA",0.,ycoor,-zcoor,idrotm[nrot+1],"ONLY");
571   if(fDebug) {   
572     printf("%s: %f,  St. %2i, Pl.3 ",ClassName(),ang*kRaddeg,i);  
573     printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);  
574   }
575   ycoor = -hTof/2.+ kspace;//2 cm over front plate
576   
577   // Plate  B
578   
579   nrot = 0;
580   i=1;
581   upDown = 1;
582   Float_t deadRegion = 1.0;//cm
583   
584   zpos = zcoor - (zSenStrip/2)/TMath::Cos(ang)-
585     upDown*gap*TMath::Tan(ang)-
586     (zSenStrip/2)/TMath::Cos(ang)-
587     deadRegion/TMath::Cos(ang);
588   
589   ang = atan(zpos/radius);
590   ang *= kRaddeg;
591   AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
592   ang /= kRaddeg;
593   ycoor = -hTof*0.5+ kspace ; //2 cm over front plate
594   ycoor += (1-(upDown+1)/2)*gap;
595   zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB
596   gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
597   if(fDebug) {   
598     printf("%s: %f,  St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);  
599     printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);  
600    }
601   i++;
602   upDown*=-1;
603   
604   do {
605     zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)-
606       upDown*gap*TMath::Tan(ang)-
607       (zSenStrip/2)/TMath::Cos(ang);
608     ang = atan(zpos/radius);
609     ang *= kRaddeg;
610     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
611     ang /= kRaddeg;
612     Float_t deltaSpaceinB=-0.5; // [cm] to avoid overlaps with the end of freon frame
613     Float_t deltaGapinB=0.5;    // [cm] to avoid overlaps in between initial strips
614     ycoor = -hTof*0.5+ kspace+deltaSpaceinB ; //2 cm over front plate
615     ycoor += (1-(upDown+1)/2)*(gap+deltaGapinB);
616     zcoor = zpos+(zFLTA*0.5+zFLTB*0.5+db); // Moves to the system of the modulus FLTB
617     gMC->Gspos("FSTR",i, "FLTB", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
618     if(fDebug) { 
619       printf("%s: %f,  St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);
620       printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);
621     }
622     upDown*=-1;
623     i++;
624   } while (TMath::Abs(ang*kRaddeg)<22.5);
625   //till we reach a tilting angle of 22.5 degrees
626   
627   ycoor = -hTof*0.5+ kspace ; //2 cm over front plate
628   zpos = zpos - zSenStrip/TMath::Cos(ang);
629   // this avoid overlaps in between outer strips in plate B
630   Float_t deltaMovingUp=0.8;    // [cm]
631   Float_t deltaMovingDown=-0.5; // [cm]
632   
633   do {
634     ang = atan(zpos/radius);
635     ang *= kRaddeg;
636     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
637     ang /= kRaddeg;
638     zcoor = zpos+(zFLTB/2+zFLTA/2+db);
639     gMC->Gspos("FSTR",i, "FLTB", 0., ycoor+deltaMovingDown+deltaMovingUp, zcoor,idrotm[nrot], "ONLY");
640     deltaMovingUp+=0.8; // update delta moving toward the end of the plate
641     zpos = zpos - zSenStrip/TMath::Cos(ang);
642     if(fDebug) { 
643       printf("%s: %f,  St. %2i, Pl.4 ",ClassName(),ang*kRaddeg,i);
644       printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);
645     }
646     i++;
647     
648   }  while (zpos-stripWidth*0.5/TMath::Cos(ang)>-t+zFLTC+db);
649   
650   // Plate  C
651   
652   zpos = zpos + zSenStrip/TMath::Cos(ang);
653   
654   zpos = zpos - (zSenStrip/2)/TMath::Cos(ang)+
655     gap*TMath::Tan(ang)-
656     (zSenStrip/2)/TMath::Cos(ang);
657   
658   nrot = 0;
659   i=0;
660   Float_t deltaGap=-2.5; // [cm] update distance from strip center and plate
661   ycoor= -hTof*0.5+kspace+gap+deltaGap;
662   
663   do {
664     i++;
665     ang = atan(zpos/radius);
666     ang *= kRaddeg;
667     AliMatrix (idrotm[nrot], 90., 0., 90.-ang,90.,ang, 270.);
668     ang /= kRaddeg;
669     zcoor = zpos+(zFLTC*0.5+zFLTB+zFLTA*0.5+db*2);
670     gMC->Gspos("FSTR",i, "FLTC", 0., ycoor, zcoor,idrotm[nrot], "ONLY");
671     if(fDebug) { 
672       printf("%s: %f,  St. %2i, Pl.5 ",ClassName(),ang*kRaddeg,i);
673       printf("y = %f,  z = %f, zpos = %f \n",ycoor,zcoor,zpos);
674     }
675     zpos = zpos - zSenStrip/TMath::Cos(ang);
676   }  while (zpos-stripWidth*TMath::Cos(ang)*0.5>-t);
677
678
679   ////////// Layers after strips /////////////////
680   // Al Layer thickness (2.3mm) factor 0.7
681   
682   Float_t overSpace = fOverSpc;//cm
683   
684   par[0] = xFLT*0.5;
685   par[1] = 0.115*0.7; // factor 0.7
686   par[2] = (zFLTA *0.5);
687   ycoor = -yFLT/2 + overSpace + par[1];
688   gMC->Gsvolu("FPEA", "BOX ", idtmed[508], par, 3); // Al
689   gMC->Gspos ("FPEA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
690   par[2] = (zFLTB *0.5);
691   gMC->Gsvolu("FPEB", "BOX ", idtmed[508], par, 3); // Al
692   gMC->Gspos ("FPEB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
693   par[2] = (zFLTC *0.5);
694   gMC->Gsvolu("FPEC", "BOX ", idtmed[508], par, 3); // Al
695   gMC->Gspos ("FPEC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
696
697
698   // plexiglass thickness: 1.5 mm ; factor 0.3
699   ycoor += par[1];
700   par[0] = xFLT*0.5;
701   par[1] = 0.075*0.3; // factor 0.3 
702   par[2] = (zFLTA *0.5);
703   ycoor += par[1];
704   gMC->Gsvolu("FECA", "BOX ", idtmed[505], par, 3); // Plexigl.
705   gMC->Gspos ("FECA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
706   par[2] = (zFLTB *0.5);
707   gMC->Gsvolu("FECB", "BOX ", idtmed[505], par, 3); // Plexigl.
708   gMC->Gspos ("FECB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
709   par[2] = (zFLTC *0.5);
710   gMC->Gsvolu("FECC", "BOX ", idtmed[505], par, 3); // Plexigl.
711   gMC->Gspos ("FECC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
712   
713   // frame of Air
714   ycoor += par[1];
715   par[0] = xFLT*0.5;
716   par[1] = (yFLT/2-ycoor-khAlWall)*0.5; // Aluminum layer considered (0.18 cm)
717   par[2] = (zFLTA *0.5);
718   ycoor += par[1];
719   gMC->Gsvolu("FAIA", "BOX ", idtmed[500], par, 3); // Air
720   gMC->Gspos ("FAIA", 0, "FLTA", 0., ycoor, 0., 0, "ONLY");
721   par[2] = (zFLTB *0.5);
722   gMC->Gsvolu("FAIB", "BOX ", idtmed[500], par, 3); // Air
723   gMC->Gspos ("FAIB", 0, "FLTB", 0., ycoor, 0., 0, "ONLY");
724   par[2] = (zFLTC *0.5);
725   gMC->Gsvolu("FAIC", "BOX ", idtmed[500], par, 3); // Air
726   gMC->Gspos ("FAIC", 0, "FLTC", 0., ycoor, 0., 0, "ONLY");
727
728   
729   // start with cards and cooling tubes
730   // finally, cards, cooling tubes and layer for thermal dispersion
731   // 3 volumes
732   // card volume definition
733   
734   // see GEOM200 in GEANT manual
735   AliMatrix(idrotm[98], 90., 0., 90., 90., 0., 0.); // 0 deg
736   
737   Float_t cardpar[3];
738   cardpar[0]= 61.;
739   cardpar[1]= 5.;
740   cardpar[2]= 0.1;
741   gMC->Gsvolu("FCAR", "BOX ", idtmed[504], cardpar, 3); // PCB Card 
742   //alu plate volume definition
743   cardpar[1]= 3.5;
744   cardpar[2]= 0.05;
745   gMC->Gsvolu("FALP", "BOX ", idtmed[508], cardpar, 3); // Alu Plate
746   
747   
748   // central module positioning (FAIA)
749   Float_t cardpos[3], aplpos2, stepforcardA=6.625;
750   cardpos[0]= 0.;
751   cardpos[1]= -0.5;
752   cardpos[2]= -53.;
753   Float_t aplpos1 = -2.;
754   Int_t icard;
755   for (icard=0; icard<15; ++icard) {
756     cardpos[2]= cardpos[2]+stepforcardA;
757     aplpos2 = cardpos[2]+0.15;
758     gMC->Gspos("FCAR",icard,"FAIA",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY"); 
759     gMC->Gspos("FALP",icard,"FAIA",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY");
760     
761   }
762   
763   
764   // intermediate module positioning (FAIB)
765   Float_t stepforcardB= 7.05;
766   cardpos[2]= -70.5;
767   for (icard=0; icard<19; ++icard) {
768     cardpos[2]= cardpos[2]+stepforcardB;
769     aplpos2 = cardpos[2]+0.15;  
770     gMC->Gspos("FCAR",icard,"FAIB",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY"); 
771     gMC->Gspos("FALP",icard,"FAIB",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY"); 
772   }
773   
774   
775   // outer module positioning (FAIC)
776   Float_t stepforcardC= 8.45238;
777   cardpos[2]= -88.75;
778   for (icard=0; icard<20; ++icard) {
779     cardpos[2]= cardpos[2]+stepforcardC;
780     aplpos2 = cardpos[2]+0.15;
781     gMC->Gspos("FCAR",icard,"FAIC",cardpos[0],cardpos[1],cardpos[2],idrotm[98],"ONLY"); 
782     gMC->Gspos("FALP",icard,"FAIC",cardpos[0],aplpos1,aplpos2,idrotm[98],"ONLY");
783   }
784   
785   // tube volume definition
786   Float_t tubepar[3];
787   tubepar[0]= 0.;
788   tubepar[1]= 0.4;
789   tubepar[2]= 61.;
790   gMC->Gsvolu("FTUB", "TUBE", idtmed[516], tubepar, 3); // cooling tubes (steel)
791   tubepar[0]= 0.;
792   tubepar[1]= 0.35;
793   tubepar[2]= 61.;
794   gMC->Gsvolu("FITU", "TUBE", idtmed[515], tubepar, 3); // cooling water
795   // positioning water tube into the steel one
796   gMC->Gspos("FITU",1,"FTUB",0.,0.,0.,0,"ONLY");
797   
798   
799   // rotation matrix
800   AliMatrix(idrotm[99], 180., 90., 90., 90., 90., 0.);
801   // central module positioning (FAIA)
802   Float_t tubepos[3], tdis=0.6;
803   tubepos[0]= 0.;
804   tubepos[1]= cardpos[1];
805   tubepos[2]= -53.+tdis;
806   //  tub1pos = 5.;
807   Int_t itub;
808   for (itub=0; itub<15; ++itub) {
809     tubepos[2]= tubepos[2]+stepforcardA;
810     gMC->Gspos("FTUB",itub,"FAIA",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
811                "ONLY");
812   }
813   
814   
815   // intermediate module positioning (FAIB)
816   tubepos[2]= -70.5+tdis;
817   for (itub=0; itub<19; ++itub) {
818     tubepos[2]= tubepos[2]+stepforcardB;
819     gMC->Gspos("FTUB",itub,"FAIB",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
820                "ONLY");
821   }
822   
823   // outer module positioning (FAIC)
824   tubepos[2]= -88.75+tdis;
825   for (itub=0; itub<20; ++itub) {
826     tubepos[2]= tubepos[2]+stepforcardC;
827     gMC->Gspos("FTUB",itub,"FAIC",tubepos[0],tubepos[1],tubepos[2],idrotm[99],
828                "ONLY");
829   }
830
831 }
832
833 //_____________________________________________________________________________
834 void AliTOFv3::DrawModule() const
835 {
836   //
837   // Draw a shaded view of the Time Of Flight version 3
838   //
839   // Set everything unseen
840   gMC->Gsatt("*", "seen", -1);
841   // 
842   // Set ALIC mother transparent
843   gMC->Gsatt("ALIC","SEEN",0);
844   //
845   // Set the volumes visible
846   gMC->Gsatt("ALIC","SEEN",0);
847
848   gMC->Gsatt("FTOA","SEEN",1);
849   gMC->Gsatt("FTOB","SEEN",1);
850   gMC->Gsatt("FTOC","SEEN",1);
851   gMC->Gsatt("FLTA","SEEN",1);
852   gMC->Gsatt("FLTB","SEEN",1);
853   gMC->Gsatt("FLTC","SEEN",1);
854   gMC->Gsatt("FPLA","SEEN",1);
855   gMC->Gsatt("FPLB","SEEN",1);
856   gMC->Gsatt("FPLC","SEEN",1);
857   gMC->Gsatt("FSTR","SEEN",1);
858   gMC->Gsatt("FPEA","SEEN",1);
859   gMC->Gsatt("FPEB","SEEN",1);
860   gMC->Gsatt("FPEC","SEEN",1);
861   
862   gMC->Gsatt("FLZ1","SEEN",0);
863   gMC->Gsatt("FLZ2","SEEN",0);
864   gMC->Gsatt("FLZ3","SEEN",0);
865   gMC->Gsatt("FLX1","SEEN",0);
866   gMC->Gsatt("FLX2","SEEN",0);
867   gMC->Gsatt("FLX3","SEEN",0);
868   gMC->Gsatt("FPAD","SEEN",0);
869
870   gMC->Gdopt("hide", "on");
871   gMC->Gdopt("shad", "on");
872   gMC->Gsatt("*", "fill", 7);
873   gMC->SetClipBox(".");
874   gMC->SetClipBox("*", 0, 1000, -1000, 1000, -1000, 1000);
875   gMC->DefaultRange();
876   gMC->Gdraw("alic", 40, 30, 0, 12, 9.5, .02, .02);
877   gMC->Gdhead(1111, "Time Of Flight");
878   gMC->Gdman(18, 4, "MAN");
879   gMC->Gdopt("hide","off");
880 }
881 //_____________________________________________________________________________
882 void AliTOFv3::DrawDetectorModules()
883 {
884 //
885 // Draw a shaded view of the TOF detector version 3
886 //
887  
888  AliMC* pMC = AliMC::GetMC();
889  
890 //Set ALIC mother transparent
891  pMC->Gsatt("ALIC","SEEN",0);
892
893 //
894 //Set volumes visible
895 // 
896 //=====> Level 1
897   // Level 1 for TOF volumes
898   gMC->Gsatt("B077","seen",0);
899  
900  
901 //==========> Level 2
902   // Level 2
903   gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped -
904   gMC->Gsatt("B071","seen",0);
905   gMC->Gsatt("B074","seen",0);
906   gMC->Gsatt("B075","seen",0);
907   gMC->Gsatt("B080","seen",0); // B080 does not has sub-level                
908
909
910   // Level 2 of B071
911   gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped   -
912   gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped   -
913   gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped   -
914   gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped   -
915   gMC->Gsatt("B056","seen",0);  // B056 does not has sub-levels  -
916   gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped   -
917   gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped   -
918   gMC->Gsatt("BTR1","seen",0);  // BTR1 do not have sub-levels   -
919   gMC->Gsatt("BTO1","seen",0);
920
921  
922   // Level 2 of B074
923   gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
924   gMC->Gsatt("BTO2","seen",0);
925
926   // Level 2 of B075
927   gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
928   gMC->Gsatt("BTO3","seen",0);
929
930 // ==================> Level 3
931   // Level 3 of B071 / Level 2 of BTO1
932   gMC->Gsatt("FTOC","seen",-2);
933   gMC->Gsatt("FTOB","seen",-2);
934   gMC->Gsatt("FTOA","seen",-2);
935  
936   // Level 3 of B074 / Level 2 of BTO2
937   // -> cfr previous settings
938  
939   // Level 3 of B075 / Level 2 of BTO3
940   // -> cfr previous settings
941
942   gMC->Gdopt("hide","on");
943   gMC->Gdopt("shad","on");
944   gMC->Gsatt("*", "fill", 5);
945   gMC->SetClipBox(".");
946   gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000);
947   gMC->DefaultRange();
948   gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015);
949   gMC->Gdhead(1111,"TOF detector V1");
950   gMC->Gdman(18, 4, "MAN");
951   gMC->Gdopt("hide","off");
952 }                                 
953
954 //_____________________________________________________________________________
955 void AliTOFv3::DrawDetectorStrips()
956 {
957 //
958 // Draw a shaded view of the TOF strips for version 3
959 //
960  
961  AliMC* pMC = AliMC::GetMC();
962  
963 //Set ALIC mother transparent
964  pMC->Gsatt("ALIC","SEEN",0);
965
966 //
967 //Set volumes visible 
968 //=====> Level 1
969   // Level 1 for TOF volumes
970   gMC->Gsatt("B077","seen",0);
971   
972 //==========> Level 2
973   // Level 2
974   gMC->Gsatt("B076","seen",-1); // all B076 sub-levels skipped -
975   gMC->Gsatt("B071","seen",0);
976   gMC->Gsatt("B074","seen",0);
977   gMC->Gsatt("B075","seen",0);
978   gMC->Gsatt("B080","seen",0); // B080 does not has sub-level
979
980   // Level 2 of B071
981   gMC->Gsatt("B063","seen",-1); // all B063 sub-levels skipped   -
982   gMC->Gsatt("B065","seen",-1); // all B065 sub-levels skipped   -
983   gMC->Gsatt("B067","seen",-1); // all B067 sub-levels skipped   -
984   gMC->Gsatt("B069","seen",-1); // all B069 sub-levels skipped   -
985   gMC->Gsatt("B056","seen",0);  // B056 does not has sub-levels  -
986   gMC->Gsatt("B059","seen",-1); // all B059 sub-levels skipped   -
987   gMC->Gsatt("B072","seen",-1); // all B072 sub-levels skipped   -
988   gMC->Gsatt("BTR1","seen",0);  // BTR1 do not have sub-levels   -
989   gMC->Gsatt("BTO1","seen",0);
990
991 // ==================> Level 3
992   // Level 3 of B071 / Level 2 of BTO1
993   gMC->Gsatt("FTOC","seen",0);
994   gMC->Gsatt("FTOB","seen",0);
995   gMC->Gsatt("FTOA","seen",0);
996  
997   // Level 3 of B074 / Level 2 of BTO2
998   // -> cfr previous settings
999  
1000   // Level 3 of B075 / Level 2 of BTO3
1001   // -> cfr previous settings
1002
1003
1004 // ==========================> Level 4
1005   // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOC
1006   gMC->Gsatt("FLTC","seen",0);
1007   // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOB
1008   gMC->Gsatt("FLTB","seen",0);
1009   // Level 4 of B071 / Level 3 of BTO1 / Level 2 of FTOA
1010   gMC->Gsatt("FLTA","seen",0);
1011  
1012   // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOC
1013   // -> cfr previous settings
1014   // Level 4 of B074 / Level 3 of BTO2 / Level 2 of FTOB
1015   // -> cfr previous settings
1016  
1017   // Level 4 of B075 / Level 3 of BTO3 / Level 2 of FTOC
1018   // -> cfr previous settings
1019
1020 //======================================> Level 5
1021   // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOC / Level 2 of FLTC
1022   gMC->Gsatt("FALC","seen",0); // no children for FALC
1023   gMC->Gsatt("FSTR","seen",-2);
1024   gMC->Gsatt("FPEC","seen",0); // no children for FPEC
1025   gMC->Gsatt("FECC","seen",0); // no children for FECC
1026   gMC->Gsatt("FWAC","seen",0); // no children for FWAC
1027   gMC->Gsatt("FAIC","seen",0); // no children for FAIC
1028
1029   // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOB / Level 2 of FLTB
1030   gMC->Gsatt("FALB","seen",0); // no children for FALB
1031 //-->  gMC->Gsatt("FSTR","seen",-2);
1032
1033
1034   // -> cfr previous settings
1035   gMC->Gsatt("FPEB","seen",0); // no children for FPEB
1036   gMC->Gsatt("FECB","seen",0); // no children for FECB
1037   gMC->Gsatt("FWAB","seen",0); // no children for FWAB
1038   gMC->Gsatt("FAIB","seen",0); // no children for FAIB
1039  
1040   // Level 5 of B071 / Level 4 of BTO1 / Level 3 of FTOA / Level 2 of FLTA
1041   gMC->Gsatt("FALA","seen",0); // no children for FALB
1042 //-->  gMC->Gsatt("FSTR","seen",-2);
1043   // -> cfr previous settings
1044   gMC->Gsatt("FPEA","seen",0); // no children for FPEA
1045   gMC->Gsatt("FECA","seen",0); // no children for FECA
1046   gMC->Gsatt("FWAA","seen",0); // no children for FWAA
1047   gMC->Gsatt("FAIA","seen",0); // no children for FAIA
1048
1049   // Level 2 of B074
1050   gMC->Gsatt("BTR2","seen",0); // BTR2 does not has sub-levels -
1051   gMC->Gsatt("BTO2","seen",0);
1052
1053   // Level 2 of B075
1054   gMC->Gsatt("BTR3","seen",0); // BTR3 do not have sub-levels -
1055   gMC->Gsatt("BTO3","seen",0);
1056
1057 // for others Level 5, cfr. previous settings
1058
1059   gMC->Gdopt("hide","on");
1060   gMC->Gdopt("shad","on");
1061   gMC->Gsatt("*", "fill", 5);
1062   gMC->SetClipBox(".");
1063   gMC->SetClipBox("*", 0, 1000, 0, 1000, 0, 1000);
1064   gMC->DefaultRange();
1065   gMC->Gdraw("alic", 45, 40, 0, 10, 10, .015, .015);
1066   gMC->Gdhead(1111,"TOF Strips V1");
1067   gMC->Gdman(18, 4, "MAN");
1068   gMC->Gdopt("hide","off");
1069 }
1070
1071 //_____________________________________________________________________________
1072 void AliTOFv3::CreateMaterials()
1073 {
1074   //
1075   // Define materials for the Time Of Flight
1076   //
1077   AliTOF::CreateMaterials();
1078 }
1079  
1080 //_____________________________________________________________________________
1081 void AliTOFv3::Init()
1082 {
1083   //
1084   // Initialise the detector after the geometry has been defined
1085   //
1086   if(fDebug) {
1087     printf("%s: **************************************"
1088            "  TOF  "
1089            "**************************************\n",ClassName());
1090     printf("\n%s   Version 3 of TOF initialing, "
1091                 "TOF with holes for RICH detector\n",ClassName());
1092   }
1093
1094   AliTOF::Init();
1095
1096   fIdFTOA = gMC->VolId("FTOA");
1097   fIdFTOB = gMC->VolId("FTOB");
1098   fIdFTOC = gMC->VolId("FTOC");
1099   fIdFLTA = gMC->VolId("FLTA");
1100   fIdFLTB = gMC->VolId("FLTB");
1101   fIdFLTC = gMC->VolId("FLTC");
1102
1103  if(fDebug) {
1104     printf("%s: **************************************"
1105            "  TOF  "
1106            "**************************************\n",ClassName());
1107  }
1108 }
1109  
1110 //_____________________________________________________________________________
1111 void AliTOFv3::StepManager()
1112 {
1113   //
1114   // Procedure called at each step in the Time Of Flight
1115   //
1116   TLorentzVector mom, pos;
1117   Float_t xm[3],pm[3],xpad[3],ppad[3];
1118   Float_t hits[13],phi,phid,z;
1119   Int_t   vol[5];
1120   Int_t   sector, plate, padx, padz, strip;
1121   Int_t   copy, padzid, padxid, stripid, i;
1122   Int_t   *idtmed = fIdtmed->GetArray()-499;
1123   Float_t incidenceAngle;
1124   
1125   if(gMC->GetMedium()==idtmed[513] && 
1126      gMC->IsTrackEntering() && gMC->TrackCharge()
1127      && gMC->CurrentVolID(copy)==fIdSens) 
1128   {    
1129     // getting information about hit volumes
1130     
1131     padzid=gMC->CurrentVolOffID(2,copy);
1132     padz=copy;  
1133     
1134     padxid=gMC->CurrentVolOffID(1,copy);
1135     padx=copy;  
1136     
1137     stripid=gMC->CurrentVolOffID(4,copy);
1138     strip=copy;  
1139
1140     gMC->TrackPosition(pos);
1141     gMC->TrackMomentum(mom);
1142
1143 //    Double_t NormPos=1./pos.Rho();
1144     Double_t normMom=1./mom.Rho();
1145
1146 //  getting the cohordinates in pad ref system
1147     xm[0] = (Float_t)pos.X();
1148     xm[1] = (Float_t)pos.Y();
1149     xm[2] = (Float_t)pos.Z();
1150
1151     pm[0] = (Float_t)mom.X()*normMom;
1152     pm[1] = (Float_t)mom.Y()*normMom;
1153     pm[2] = (Float_t)mom.Z()*normMom;
1154  
1155     gMC->Gmtod(xm,xpad,1);
1156     gMC->Gmtod(pm,ppad,2);
1157
1158     incidenceAngle = TMath::ACos(ppad[1])*kRaddeg;
1159
1160     z = pos[2];
1161
1162     plate = 0;   
1163     if (TMath::Abs(z) <=  fZlenA*0.5)  plate = 3;
1164     if (z < (fZlenA*0.5+fZlenB) && 
1165         z >  fZlenA*0.5)               plate = 4;
1166     if (z >-(fZlenA*0.5+fZlenB) &&
1167         z < -fZlenA*0.5)               plate = 2;
1168     if (z > (fZlenA*0.5+fZlenB))       plate = 5;
1169     if (z <-(fZlenA*0.5+fZlenB))       plate = 1;
1170
1171     phi = pos.Phi();
1172     phid = phi*kRaddeg+180.;
1173     sector = Int_t (phid/20.);
1174     sector++;
1175
1176     for(i=0;i<3;++i) {
1177       hits[i]   = pos[i];
1178       hits[i+3] = pm[i];
1179     }
1180
1181     hits[6] = mom.Rho();
1182     hits[7] = pos[3];
1183     hits[8] = xpad[0];
1184     hits[9] = xpad[1];
1185     hits[10]= xpad[2];
1186     hits[11]= incidenceAngle;
1187     hits[12]= gMC->Edep();
1188     
1189     vol[0]= sector;
1190     vol[1]= plate;
1191     vol[2]= strip;
1192     vol[3]= padx;
1193     vol[4]= padz;
1194     
1195     AddHit(gAlice->CurrentTrack(),vol, hits);
1196   }
1197 }