]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSvPPRcoarseasymm.cxx
cb6700abc1cfa15b9f49f47142d8191fb97c332c
[u/mrichter/AliRoot.git] / ITS / AliITSvPPRcoarseasymm.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.10  2000/10/27 17:19:50  barbera
19 Position of rails w.r.t. the interaction point corrected.
20
21 Revision 1.9  2000/10/27 13:31:29  barbera
22 Rails between ITS and TPC added.
23
24 Revision 1.8  2000/10/27 13:03:08  barbera
25 Small changes in the SPD volumes and materials
26
27 Revision 1.6  2000/10/16 14:45:37  barbera
28 Mother volume ITSD modified to avoid some overlaps
29
30 Revision 1.5  2000/10/16 13:49:15  barbera
31 Services volumes slightly modified and material added following Pierluigi Barberis' information
32
33 Revision 1.4  2000/10/07 15:33:07  barbera
34 Small corrections to the ITSV mother volume
35
36 Revision 1.3  2000/10/07 13:06:50  barbera
37 Some new materials and media defined
38
39 Revision 1.2  2000/10/07 10:58:15  barbera
40 Mother volume ITSV corrected
41
42 Revision 1.1  2000/10/06 23:09:24  barbera
43 New coarse geometry (asymmetric services
44
45 Revision 1.20  2000/10/02 21:28:08  fca
46 Removal of useless dependecies via forward declarations
47
48 Revision 1.19  2000/07/10 16:07:19  fca
49 Release version of ITS code
50
51 Revision 1.14.2.2  2000/05/19 10:09:21  nilsen
52 fix for bug with HP and Sun unix + fix for event display in ITS-working branch
53
54 Revision 1.14.2.1  2000/03/04 23:45:19  nilsen
55 Fixed up the comments/documentation.
56
57 Revision 1.14  1999/11/25 06:52:56  fca
58 Correct value of drca
59
60 Revision 1.13.2.1  1999/11/25 06:52:21  fca
61 Correct value of drca
62
63 Revision 1.13  1999/10/27 11:16:26  fca
64 Correction of problem in geometry
65
66 Revision 1.12  1999/10/22 08:25:25  fca
67 remove double definition of destructors
68
69 Revision 1.11  1999/10/22 08:16:49  fca
70 Correct destructors, thanks to I.Hrivnacova
71
72 Revision 1.10  1999/10/06 19:56:50  fca
73 Add destructor
74
75 Revision 1.9  1999/10/05 08:05:09  fca
76 Minor corrections for uninitialised variables.
77
78 Revision 1.8  1999/09/29 09:24:20  fca
79 Introduction of the Copyright and cvs Log
80
81 */
82
83 ///////////////////////////////////////////////////////////////////////////////
84 //                                                                           //
85 //  Inner Traking System version PPR coarse asymmetric                                         //
86 //  This class contains the base procedures for the Inner Tracking System    //
87 //                                                                           //
88 // Authors: R. Barbera
89 // version 6.
90 // Created  2000.
91 //
92 //  NOTE: THIS IS THE COARSE ASYMMETRIC PPR geometry of the ITS. 
93 // THIS WILL NOT WORK
94 // with the geometry or module classes or any analysis classes. You are 
95 // strongly encouraged to uses AliITSv5.
96 //                                                                           //
97 ///////////////////////////////////////////////////////////////////////////////
98  
99 #include <TMath.h>
100 #include <TRandom.h>
101 #include <TVector.h>
102 #include <TGeometry.h>
103 #include <TNode.h>
104 #include <TTUBE.h>
105 #include <TFile.h>    // only required for Tracking function?
106 #include <TCanvas.h>
107 #include <TObjArray.h>
108 #include <TClonesArray.h>
109
110
111 #include "AliMC.h"
112 #include "AliMagF.h"
113 #include "AliConst.h"
114
115 #include "AliITShit.h"
116 #include "AliITSvPPRcoarseasymm.h"
117 #include "AliRun.h"
118
119
120 ClassImp(AliITSvPPRcoarseasymm)
121  
122 //_____________________________________________________________________________
123 AliITSvPPRcoarseasymm::AliITSvPPRcoarseasymm() {
124 ////////////////////////////////////////////////////////////////////////
125 //    Standard default constructor for the ITS version 6.
126 ////////////////////////////////////////////////////////////////////////
127
128   fIdN = 6;
129   fIdName = new TString[fIdN];
130   fIdName[0] = "ITS1";
131   fIdName[1] = "ITS2";
132   fIdName[2] = "ITS3";
133   fIdName[3] = "ITS4";
134   fIdName[4] = "ITS5";
135   fIdName[5] = "ITS6";
136   fIdSens    = new Int_t[fIdN];
137   for (Int_t i=0;i<fIdN;i++) fIdSens[i]=fIdName[i].Length();
138 }
139 //_____________________________________________________________________________
140 AliITSvPPRcoarseasymm::AliITSvPPRcoarseasymm(const char *name, const char *title) : AliITS(name, title){
141 ////////////////////////////////////////////////////////////////////////
142 //    Standard constructor for the ITS version 6.
143 ////////////////////////////////////////////////////////////////////////
144
145   fIdN = 6;
146   fIdName = new TString[fIdN];
147   fIdName[0] = "ITS1";
148   fIdName[1] = "ITS2";
149   fIdName[2] = "ITS3";
150   fIdName[3] = "ITS4";
151   fIdName[4] = "ITS5";
152   fIdName[5] = "ITS6";
153   fIdSens    = new Int_t[fIdN];
154   for (Int_t i=0;i<fIdN;i++) fIdSens[i]=fIdName[i].Length();
155
156 }
157 //____________________________________________________________________________
158 AliITSvPPRcoarseasymm::AliITSvPPRcoarseasymm(const AliITSvPPRcoarseasymm &source){
159 ////////////////////////////////////////////////////////////////////////
160 //     Copy Constructor for ITS version 6.
161 ////////////////////////////////////////////////////////////////////////
162     if(&source == this) return;
163     printf("Not allowed to copy AliITSvPPRcoarseasymm\n");
164     return;
165 }
166 //_____________________________________________________________________________
167 AliITSvPPRcoarseasymm& AliITSvPPRcoarseasymm::operator=(const AliITSvPPRcoarseasymm &source){
168 ////////////////////////////////////////////////////////////////////////
169 //    Assignment operator for the ITS version 6.
170 ////////////////////////////////////////////////////////////////////////
171   if(&source == this) return *this;
172     printf("Not allowed to copy AliITSvPPRcoarseasymm\n");
173   return *this;
174 }
175 //_____________________________________________________________________________
176 AliITSvPPRcoarseasymm::~AliITSvPPRcoarseasymm() {
177 ////////////////////////////////////////////////////////////////////////
178 //    Standard destructor for the ITS version 6.
179 ////////////////////////////////////////////////////////////////////////
180 }
181
182 //__________________________________________________________________________
183 void AliITSvPPRcoarseasymm::BuildGeometry(){
184 ////////////////////////////////////////////////////////////////////////
185 //    Geometry builder for the ITS version 6.
186 ////////////////////////////////////////////////////////////////////////
187     TNode *node, *top;
188     const int kColorITS=kYellow;
189     //
190     top = gAlice->GetGeometry()->GetNode("alice");
191
192     new TTUBE("S_layer1","Layer1 of ITS","void",3.95,3.95+0.05475,12.25);
193     top->cd();
194     node = new TNode("Layer1","Layer1","S_layer1",0,0,0,"");
195     node->SetLineColor(kColorITS);
196     fNodes->Add(node);
197
198     new TTUBE("S_layer2","Layer2 of ITS","void",7.,7.+0.05475,16.3);
199     top->cd();
200     node = new TNode("Layer2","Layer2","S_layer2",0,0,0,"");
201     node->SetLineColor(kColorITS);
202     fNodes->Add(node);
203
204     new TTUBE("S_layer3","Layer3 of ITS","void",15.,15.+0.05288,21.1);
205     top->cd();
206     node = new TNode("Layer3","Layer3","S_layer3",0,0,0,"");
207     node->SetLineColor(kColorITS);
208     fNodes->Add(node);
209
210     new TTUBE("S_layer4","Layer4 of ITS","void",24,24+0.05288,29.6);
211     top->cd();
212     node = new TNode("Layer4","Layer4","S_layer4",0,0,0,"");
213     node->SetLineColor(kColorITS);
214     fNodes->Add(node);
215
216     new TTUBE("S_layer5","Layer5 of ITS","void",40,40+0.05382,45.1);
217     top->cd();
218     node = new TNode("Layer5","Layer5","S_layer5",0,0,0,"");
219     node->SetLineColor(kColorITS);
220     fNodes->Add(node);
221
222     new TTUBE("S_layer6","Layer6 of ITS","void",45,45+0.05382,50.4);
223     top->cd();
224     node = new TNode("Layer6","Layer6","S_layer6",0,0,0,"");
225     node->SetLineColor(kColorITS);
226     fNodes->Add(node);
227 }
228 //_____________________________________________________________________________
229 void AliITSvPPRcoarseasymm::CreateGeometry(){
230 ////////////////////////////////////////////////////////////////////////
231 //    This routine defines and Creates the geometry for version 6 of the ITS.
232 ////////////////////////////////////////////////////////////////////////
233   
234   //INNER RADII OF THE SILICON LAYERS 
235   Float_t rl[6]    = { 3.8095,7.,15.,24.,38.1,43.5765 };   
236   //THICKNESSES OF LAYERS (in % radiation length)
237   Float_t drl[6]   = { 1.03,1.03,0.94,0.95,0.91,0.87 };   
238   //HALF LENGTHS OF LAYERS  
239   Float_t dzl[6]   = { 14.35,14.35,25.1,32.1,49.405,55.27 };
240   //LENGTHS OF END-LADDER BOXES (ALL INCLUDED)
241   Float_t dzb[6]   = { 12.4,12.4,19.,19.,12.,11. };   
242   //THICKNESSES OF END-LADDER BOXES (ALL INCLUDED)
243   Float_t drb[6]   = { rl[1]-rl[0],0.2,5.,5.,3.,3. };        
244
245  
246   Float_t dits[3], rlim, zmax;
247   Float_t zpos;
248   Float_t pcits[15], xltpc;
249   Int_t idrotm[399], i;
250   Float_t dgh[50];
251   
252   Int_t *idtmed = fIdtmed->GetArray()-199;
253   
254   //     CONVERT INTO CM (RL(SI)=9.36 CM) 
255   for (i = 0; i < 6; ++i) {
256     drl[i] = drl[i] / 100. * 9.36;
257   }
258     
259   //     FIELD CAGE HALF LENGTH 
260   
261   rlim  = 56.;
262   zmax  = 76.708;
263   xltpc = 284.;
264   
265   // --- Define ghost volume containing the whole ITS (including services) 
266   //     and fill it with air 
267   
268   dgh[0] = 0.;
269   dgh[1] = 360.;
270   dgh[2] = 12.;
271   dgh[3] = -xltpc-5.-0.1;
272   dgh[4] = 44.9;
273   dgh[5] = 85.;
274   dgh[6] = -xltpc;
275   dgh[7] = 44.9;
276   dgh[8] = 85.;
277   dgh[9] = -xltpc;
278   dgh[10] = 44.9;
279   dgh[11] = 56.1;
280   dgh[12] = -100.7;
281   dgh[13] = 44.9;
282   dgh[14] = 56.1;
283   dgh[15] = -77.2;
284   dgh[16] = 44.9;
285   dgh[17] = 56.1;
286   dgh[18] = -40.;
287   dgh[19] = 3.295;
288   dgh[20] = 56.1; 
289   dgh[21] = 40.;
290   dgh[22] = 3.295;
291   dgh[23] = 56.1;
292   dgh[24] = 77.2;
293   dgh[25] = 44.9;
294   dgh[26] = 56.1;
295   dgh[27] = 100.7;
296   dgh[28] = 44.9;
297   dgh[29] = 56.1;
298   dgh[30] = xltpc;
299   dgh[31] = 61.5;
300   dgh[32] = 61.5+4.;
301   dgh[33] = xltpc;
302   dgh[34] = 61.5;
303   dgh[35] = 85.;
304   dgh[36] = xltpc+4.+0.1;
305   dgh[37] = 62.4;
306   dgh[38] = 85.;
307
308   gMC->Gsvolu("ITSV", "PCON", idtmed[275], dgh, 39);
309   
310   // --- Place the ghost volume in its mother volume (ALIC) and make it 
311   //     invisible 
312   
313   gMC->Gspos("ITSV", 1, "ALIC", 0., 0., 0., 0, "ONLY");
314   gMC->Gsatt("ITSV", "SEEN", 0); 
315
316
317   // --- Define ghost volume containing the six layers and fill it with air 
318   
319   dgh[0] = 0.;
320   dgh[1] = 360.;
321   dgh[2] = 4.;
322   dgh[3] = -77.2;
323   dgh[4] = 45.;
324   dgh[5] = 56.;
325   dgh[6] = -40.;     
326   dgh[7] = 3.3;
327   dgh[8] = 56.;
328   dgh[9] = 40.;
329   dgh[10] = 3.3;
330   dgh[11] = 56.;
331   dgh[12] = 77.2;
332   dgh[13] = 45.;
333   dgh[14] = 56.;
334   gMC->Gsvolu("ITSD", "PCON", idtmed[275], dgh, 15);
335   
336   // --- Place the ghost volume in its mother volume (ITSV) and make it 
337   //     invisible 
338   
339   gMC->Gspos("ITSD", 1, "ITSV", 0., 0., 0., 0, "ONLY");
340   //gMC->Gsatt("ITSD", "SEEN", 0);
341   
342   //     ITS LAYERS (SILICON) 
343   
344   dits[0] = rl[0];
345   dits[1] = rl[0] + drl[0];
346   dits[2] = dzl[0];
347   gMC->Gsvolu("ITS1", "TUBE", idtmed[199], dits, 3);
348   gMC->Gspos("ITS1", 1, "ITSD", 0., 0., 0., 0, "ONLY");
349   
350   dits[0] = rl[1];
351   dits[1] = rl[1] + drl[1];
352   dits[2] = dzl[1];
353   gMC->Gsvolu("ITS2", "TUBE", idtmed[199], dits, 3);
354   gMC->Gspos("ITS2", 1, "ITSD", 0., 0., 0., 0, "ONLY");
355   
356   dits[0] = rl[2];
357   dits[1] = rl[2] + drl[2];
358   dits[2] = dzl[2];
359   gMC->Gsvolu("ITS3", "TUBE", idtmed[224], dits, 3);
360   gMC->Gspos("ITS3", 1, "ITSD", 0., 0., 0., 0, "ONLY");
361   
362   dits[0] = rl[3];
363   dits[1] = rl[3] + drl[3];
364   dits[2] = dzl[3];
365   gMC->Gsvolu("ITS4", "TUBE", idtmed[224], dits, 3);
366   gMC->Gspos("ITS4", 1, "ITSD", 0., 0., 0., 0, "ONLY");
367   
368   dits[0] = rl[4];
369   dits[1] = rl[4] + drl[4];
370   dits[2] = dzl[4];
371   gMC->Gsvolu("ITS5", "TUBE", idtmed[249], dits, 3);
372   gMC->Gspos("ITS5", 1, "ITSD", 0., 0., 0., 0, "ONLY");
373   
374   dits[0] = rl[5];
375   dits[1] = rl[5] + drl[5];
376   dits[2] = dzl[5];
377   gMC->Gsvolu("ITS6", "TUBE", idtmed[249], dits, 3);
378   gMC->Gspos("ITS6", 1, "ITSD", 0., 0., 0., 0, "ONLY");
379   
380   // END-LADDER ELECTRONICS BOXES AND CABLES FOR SPD
381   
382   gMC->Gsvolu("IEL1", "TUBE", idtmed[208], dits, 0); 
383   for (i = 0; i < 2; i++) {
384     dits[0] = rl[i];
385     dits[1] = dits[0] + drb[i];
386     dits[2] = dzb[i] / 2.;
387     zpos = dzl[i] + dits[2];
388     gMC->Gsposp("IEL1", i+1, "ITSD", 0., 0., zpos, 0, "ONLY", dits, 3);
389     gMC->Gsposp("IEL1", i+1+6, "ITSD", 0., 0.,-zpos, 0, "ONLY", dits, 3);
390   }
391   
392   // END-LADDER ELECTRONICS BOXES AND CABLES FOR SDD
393   
394   gMC->Gsvolu("IEL2", "TUBE", idtmed[237], dits, 0); 
395   for (i = 2; i < 4; i++) {
396     dits[0] = rl[i];
397     dits[1] = dits[0] + drb[i];
398     dits[2] = dzb[i] / 2.;
399     zpos = dzl[i] + dits[2];
400     gMC->Gsposp("IEL2", i+1, "ITSD", 0., 0., zpos, 0, "ONLY", dits, 3);
401     gMC->Gsposp("IEL2", i+1+6, "ITSD", 0., 0.,-zpos, 0, "ONLY", dits, 3);
402   }
403   
404   // END-LADDER ELECTRONICS BOXES AND CABLES FOR SSD
405   
406   gMC->Gsvolu("IEL3", "TUBE", idtmed[263], dits, 0); 
407   for (i = 4; i < 6; i++) {
408     dits[0] = rl[i];
409     dits[1] = dits[0] + drb[i];
410     dits[2] = dzb[i] / 2.;
411     zpos = dzl[i] + dits[2];
412     gMC->Gsposp("IEL3", i+1, "ITSD", 0., 0., zpos, 0, "ONLY", dits, 3);
413     gMC->Gsposp("IEL3", i+1+6, "ITSD", 0., 0.,-zpos, 0, "ONLY", dits, 3);
414   }    
415     
416
417   //    DEFINE THERMAL SCREEN FOR SPD
418   
419   pcits[0] = 8.3;
420   pcits[1] = 8.5;
421   pcits[2] = 42.5;
422   gMC->Gsvolu("ICY1", "TUBE", idtmed[274], pcits, 3);   
423   gMC->Gspos("ICY1", 1, "ITSD", 0., 0., 0., 0, "ONLY");
424
425   //    DEFINE END CONES FOR SDD
426   
427   pcits[0] = (59.-42.5)/2.;
428   pcits[1] = 8.5;
429   pcits[2] = 8.5+3.0;
430   pcits[3] = 28.;
431   pcits[4] = 28.+3.0;  
432   gMC->Gsvolu("ICO1", "CONE", idtmed[274], pcits, 5);    
433   AliMatrix(idrotm[200], 90., 0., 90., 90., 180., 0.);
434   gMC->Gspos("ICO1", 1, "ITSD", 0., 0., 42.5+pcits[0], 0, "ONLY");
435   gMC->Gspos("ICO1", 2, "ITSD", 0., 0., -(42.5+pcits[0]), idrotm[200], "ONLY");
436
437   //    DEFINE CYLINDER BETWEEN SDD AND SSD
438   
439   pcits[0] = (59.5-0.13/2.)/2.;
440   pcits[1] = (59.5+0.13/2.)/2.;
441   pcits[2] = 57.;
442   gMC->Gsvolu("ICY2", "TUBE", idtmed[274], pcits, 3);   
443   gMC->Gspos("ICY2", 1, "ITSD", 0., 0., 0., 0, "ONLY"); 
444
445   //    DEFINE END CONES FOR SSD
446   
447   pcits[0] = (74.-59.)/2.;
448   pcits[1] = 28.;
449   pcits[2] = 28.+4.;
450   pcits[3] = 47.;
451   pcits[4] = 47.+4.;
452   gMC->Gsvolu("ICO2", "CONE", idtmed[274], pcits, 5);    
453   gMC->Gspos("ICO2", 1, "ITSD", 0., 0., 59.+pcits[0], 0, "ONLY");
454   
455   // SERVICES
456     
457   // --- DEFINE CABLES AT THE END OF THE ITS CONES - COPPER PART
458   
459   dgh[0] = 45.;
460   dgh[1] = 45.+1.0;
461   dgh[2] = 9.5;
462   
463   gMC->Gsvolu("ICCU", "TUBE", idtmed[279], dgh, 3);  
464   gMC->Gspos("ICCU", 1, "ITSV", 0., 0., 86.7, 0, "ONLY");
465   gMC->Gspos("ICCU", 2, "ITSV", 0., 0., -86.7, idrotm[200], "ONLY");
466   
467   // --- DEFINE CABLES AT THE END OF THE ITS CONES - CARBON PART
468   
469   dgh[0] = 45.+1.0;
470   dgh[1] = 45.+1.0+1.5;
471   dgh[2] = 9.5;
472   
473   gMC->Gsvolu("ICCC", "TUBE", idtmed[274], dgh, 3);  
474   gMC->Gspos("ICCC", 1, "ITSV", 0., 0., 86.7, 0, "ONLY");
475   gMC->Gspos("ICCC", 2, "ITSV", 0., 0., -86.7, idrotm[200], "ONLY");  
476   
477   // --- DEFINE PATCH PANELS AT THE END OF THE ITS CONES
478   
479   dgh[0] = 45.;
480   dgh[1] = 56.;
481   dgh[2] = 2.25;
482   
483   gMC->Gsvolu("IPAN", "TUBE", idtmed[285], dgh, 3);  
484   gMC->Gspos("IPAN", 1, "ITSV", 0., 0., 98.45, 0, "ONLY");  
485   gMC->Gspos("IPAN", 2, "ITSV", 0., 0., -98.45, idrotm[200], "ONLY"); 
486   
487   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - COPPER PART
488   //     UPPER PART
489   
490   dgh[0] = (xltpc-100.7)/2.;
491   dgh[1] = 45.2;
492   dgh[2] = 45.2+1.0;
493   dgh[3] = 61.8;
494   dgh[4] = 61.8+1.0;
495   dgh[5] = 12.;    
496   dgh[6] = 168.;
497   gMC->Gsvolu("ICU1", "CONS", idtmed[279], dgh, 7);    
498   gMC->Gspos("ICU1", 1, "ITSV", 0., 0., 100.7+dgh[0], 0, "ONLY");    
499   
500   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - COPPER PART
501   //     LOWER PART
502   
503   dgh[0] = (xltpc-100.7)/2.;
504   dgh[1] = 45.2;
505   dgh[2] = 45.2+1.0;
506   dgh[3] = 61.8;
507   dgh[4] = 61.8+1.0;
508   dgh[5] = 192.;    
509   dgh[6] = 348.;
510   gMC->Gsvolu("ICU2", "CONS", idtmed[279], dgh, 7);    
511   gMC->Gspos("ICU2", 1, "ITSV", 0., 0., 100.7+dgh[0], 0, "ONLY");  
512
513    // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - CARBON PART
514    //     UPPER PART
515   
516   dgh[0] = (xltpc-100.7)/2.;
517   dgh[1] = 45.2+1.0;
518   dgh[2] = 45.2+1.0+1.5;
519   dgh[3] = 61.8+1.0;
520   dgh[4] = 61.8+1.0+1.5;
521   dgh[5] = 12.;    
522   dgh[6] = 168.;  
523   gMC->Gsvolu("ICC1", "CONS", idtmed[274], dgh, 7);    
524   gMC->Gspos("ICC1", 1, "ITSV", 0., 0., 100.7+dgh[0], 0, "ONLY");   
525   
526   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - CARBON PART
527   //     LOWER PART
528   
529   dgh[0] = (xltpc-100.7)/2.;
530   dgh[1] = 45.2+1.0;
531   dgh[2] = 45.2+1.0+1.5;
532   dgh[3] = 61.8+1.0;
533   dgh[4] = 61.8+1.0+1.5;
534   dgh[5] = 192.;    
535   dgh[6] = 348.;  
536   gMC->Gsvolu("ICC2", "CONS", idtmed[274], dgh, 7);    
537   gMC->Gspos("ICC2", 1, "ITSV", 0., 0., 100.7+dgh[0], 0, "ONLY");  
538    
539   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - COPPER PART
540   //     UPPER PART
541     
542   dgh[0] = 62.5;
543   dgh[1] = 74.5;
544   dgh[2] = 0.5;
545   dgh[3] = 12.;
546   dgh[4] = 168.;
547   gMC->Gsvolu("ICU3", "TUBS", idtmed[279], dgh, 5);    
548   gMC->Gspos("ICU3", 1, "ITSV", 0., 0., xltpc+1.5+dgh[2], 0, "ONLY");  
549
550   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - COPPER PART
551   //     LOWER PART
552   
553   dgh[0] = 62.5;
554   dgh[1] = 74.5;
555   dgh[2] = 0.5;
556   dgh[3] = 192.;
557   dgh[4] = 348.;
558   gMC->Gsvolu("ICU4", "TUBS", idtmed[279], dgh, 5);    
559   gMC->Gspos("ICU4", 1, "ITSV", 0., 0., xltpc+1.5+dgh[2], 0, "ONLY");      
560      
561   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - CARBON PART
562   //     UPPER PART
563
564   dgh[0] = 62.5;
565   dgh[1] = 74.5;
566   dgh[2] = 0.75;
567   dgh[3] = 12.;
568   dgh[4] = 168.;
569   gMC->Gsvolu("ICC3", "TUBS", idtmed[274], dgh, 5);    
570   gMC->Gspos("ICC3", 1, "ITSV", 0., 0., xltpc+dgh[2], 0, "ONLY");   
571     
572   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - CARBON PART
573   //     LOWER PART
574
575   dgh[0] = 62.5;
576   dgh[1] = 74.5;
577   dgh[2] = 0.75;
578   dgh[3] = 192.;
579   dgh[4] = 348.;
580   gMC->Gsvolu("ICC4", "TUBS", idtmed[274], dgh, 5);    
581   gMC->Gspos("ICC4", 1, "ITSV", 0., 0., xltpc+dgh[2], 0, "ONLY");  
582   
583   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
584   //     THE ABSORBER - COPPER PART
585   
586   dgh[0] = 45.;
587   dgh[1] = 45.+1.0;
588   dgh[2] = (xltpc-100.7+1.5)/2.;
589   gMC->Gsvolu("ICU5", "TUBE", idtmed[279], dgh, 3);   
590   gMC->Gspos("ICU5", 1, "ITSV", 0., 0., -100.7-dgh[2], 0, "ONLY");  
591   
592   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
593   //     THE ABSORBER - CARBON PART
594   
595   dgh[0] = 45.+1.0;
596   dgh[1] = 45.+1.0+1.5;
597   dgh[2] = (xltpc-100.7)/2.;
598   gMC->Gsvolu("ICC5", "TUBE", idtmed[274], dgh, 3);   
599   gMC->Gspos("ICC5", 1, "ITSV", 0., 0., -100.7-dgh[2], 0, "ONLY");    
600
601   
602   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
603   //     COPPER PART
604     
605   dgh[0] = 45.;
606   dgh[1] = 74.5;
607   dgh[2] = 0.5;
608   gMC->Gsvolu("ICU6", "TUBE", idtmed[279], dgh, 3);   
609   gMC->Gspos("ICU6", 1, "ITSV", 0., 0., -(xltpc+1.5+dgh[2]), 0, "ONLY");    
610   
611   
612   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
613   //     CARBON PART
614   
615   dgh[0] = 45.+1.0;
616   dgh[1] = 74.5;
617   dgh[2] = 0.75;
618   gMC->Gsvolu("ICC6", "TUBE", idtmed[274], dgh, 3);   
619   gMC->Gspos("ICC6", 1, "ITSV", 0., 0., -(xltpc+dgh[2]), 0, "ONLY");      
620     
621   // --- DEFINE HOOK TO THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
622   
623   dgh[0] = 74.5;
624   dgh[1] = 79.5;
625   dgh[2] = 2.5;
626   gMC->Gsvolu("IHOK", "TUBE", idtmed[284], dgh, 3);  
627   gMC->Gspos("IHOK", 1, "ITSV", 0., 0., -xltpc-dgh[2], 0, "ONLY");    
628   
629   // --- DEFINE RAILS BETWEEN THE ITS AND THE TPC
630   
631   dgh[0] = 0.85;
632   dgh[1] = 10.;
633   dgh[2] = 190.;  
634   gMC->Gsvolu("IRAI", "BOX ", idtmed[285], dgh, 3);   
635   gMC->Gspos("IRAI", 1, "ITSV", 53., 0., -69.5, 0, "ONLY");
636   gMC->Gspos("IRAI", 2, "ITSV", -53., 0., -69.5, 0, "ONLY");        
637
638   // --- DEFINE CYLINDERS HOLDING RAILS BETWEEN THE ITS AND THE TPC
639   
640 /*
641   dgh[0] = 58.;
642   dgh[1] = 59.;
643   dgh[2] = 0.2;  //check the thickness  
644   gMC->Gsvolu("ICYL", "TUBE", idtmed[285], dgh, 3);   
645   gMC->Gspos("ICYL", 1, "ITSV", 0., 0., 74., 0, "ONLY");
646   gMC->Gspos("ICYL", 2, "ITSV", 0., 0., -74., idrtom[200], "ONLY");     
647 */
648   
649   // --- Outputs the geometry tree in the EUCLID/CAD format 
650   
651   if (fEuclidOut) {
652     gMC->WriteEuclid("ITSgeometry", "ITSV", 1, 5);
653   }
654 }
655 //_____________________________________________________________________________
656 void AliITSvPPRcoarseasymm::CreateMaterials(){
657 ////////////////////////////////////////////////////////////////////////
658   //
659   // Create ITS materials
660   //     This function defines the default materials used in the Geant
661   // Monte Carlo simulations for the geometries AliITSv1, AliITSv3,
662   // AliITSvPPRcoarseasymm.
663   // In general it is automatically replaced by
664   // the CreatMaterials routine defined in AliITSv?. Should the function
665   // CreateMaterials not exist for the geometry version you are using this
666   // one is used. See the definition found in AliITSv5 or the other routine
667   // for a complete definition.
668   //
669   // Water H2O
670   Float_t awat[2]  = { 1.00794,15.9994 };
671   Float_t zwat[2]  = { 1.,8. };
672   Float_t wwat[2]  = { 2.,1. };
673   Float_t denswat  = 1.;
674   // Freon
675   Float_t afre[2]  = { 12.011,18.9984032 };
676   Float_t zfre[2]  = { 6.,9. };
677   Float_t wfre[2]  = { 5.,12. };
678   Float_t densfre  = 1.5;
679   // Ceramics
680   //     94.4% Al2O3 , 2.8% SiO2 , 2.3% MnO , 0.5% Cr2O3 
681   Float_t acer[5]  = { 26.981539,15.9994,28.0855,54.93805,51.9961 };
682   Float_t zcer[5]  = { 13.,8.,14.,25.,      24. };
683   Float_t wcer[5]  = { .49976,1.01233,.01307,       .01782,.00342 };
684   Float_t denscer  = 3.6;
685   //
686   //     60% SiO2 , 40% G10FR4 
687   // PC board
688   Float_t apcb[3]  = { 28.0855,15.9994,17.749 };
689   Float_t zpcb[3]  = { 14.,8.,8.875 };
690   Float_t wpcb[3]  = { .28,.32,.4 };
691   Float_t denspcb  = 1.8;
692   // POLYETHYL
693   Float_t apoly[2] = { 12.01,1. };
694   Float_t zpoly[2] = { 6.,1. };
695   Float_t wpoly[2] = { .33,.67 };
696   // old SERVICES
697   Float_t zserv[4] = { 1.,6.,26.,29. };
698   Float_t aserv[4] = { 1.,12.,55.8,63.5 };
699   Float_t wserv[4] = { .014,.086,.42,.48 };
700   // Stainless steel
701   Float_t asteel[4] = { 55.847,51.9961,58.6934,28.0855 };
702   Float_t zsteel[4] = { 26.,24.,28.,14. };
703   Float_t wsteel[4] = { .715,.18,.1,.005 };
704   
705   
706   Int_t  isxfld  = gAlice->Field()->Integ();
707   Float_t sxmgmx = gAlice->Field()->Max();
708   
709   
710   // --- Define the various materials for GEANT --- 
711   
712   //  200-224 --> Silicon Pixel Detectors (detectors, chips, buses, cooling,..)
713   
714   AliMaterial(0, "SPD Si$",      28.0855, 14., 2.33, 9.36, 999);
715   AliMaterial(1, "SPD Si chip$", 28.0855, 14., 2.33, 9.36, 999);
716   AliMaterial(2, "SPD Si bus$",  28.0855, 14., 2.33, 9.36, 999);
717   AliMaterial(3, "SPD C$",       12.011,   6., 2.265,18.8, 999);
718   // v. dens 
719   AliMaterial(4, "SPD Air$",    14.61, 7.3, .001205, 30423., 999);
720   AliMaterial(5, "SPD Vacuum$", 1e-16, 1e-16, 1e-16, 1e16, 1e16);
721   AliMaterial(6, "SPD Al$",     26.981539, 13., 2.6989, 8.9, 999);
722   AliMixture( 7, "SPD Water $", awat, zwat, denswat, -2, wwat);
723   AliMixture( 8, "SPD Freon$",  afre, zfre, densfre, -2, wfre);
724   AliMaterial(9, "SPD End ladder$", 55.845, 26., 7.87/10., 1.76*10., 999); 
725   AliMaterial(10, "SPD cone$",28.0855, 14., 2.33, 9.36, 999);       // check !!!!
726   // ** 
727   AliMedium(0, "SPD Si$",       0, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
728   AliMedium(1, "SPD Si chip$",  1, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
729   AliMedium(2, "SPD Si bus$",   2, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
730   AliMedium(3, "SPD C$",        3, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
731   AliMedium(4, "SPD Air$",      4, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
732   AliMedium(5, "SPD Vacuum$",   5, 0,isxfld,sxmgmx, 10.,1.00, .1, .100,10.00);
733   AliMedium(6, "SPD Al$",       6, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
734   AliMedium(7, "SPD Water $",   7, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
735   AliMedium(8, "SPD Freon$",    8, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
736   AliMedium(9, "SPD End ladder",9, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
737   AliMedium(10, "SPD cone$",   10, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);   
738   
739   //  225-249 --> Silicon Drift Detectors (detectors, chips, buses, cooling,..)
740   
741   AliMaterial(25, "SDD Si$",      28.0855, 14., 2.33,  9.36, 999);
742   AliMaterial(26, "SDD Si chip$", 28.0855, 14., 2.33,  9.36, 999);
743   AliMaterial(27, "SDD Si bus$",  28.0855, 14., 2.33,  9.36, 999);
744   AliMaterial(28, "SDD C$",       12.011,   6., 2.265,18.8,  999);
745   // v. dens 
746   AliMaterial(29, "SDD Air$",     14.61, 7.3, .001205, 30423., 999);
747   AliMaterial(30, "SDD Vacuum$",  1e-16, 1e-16, 1e-16, 1e16,  1e16);
748   AliMaterial(31, "SDD Al$",      26.981539, 13., 2.6989, 8.9, 999);
749   // After a call with ratios by number (negative number of elements), 
750   // the ratio array is changed to the ratio by weight, so all successive 
751   // calls with the same array must specify the number of elements as 
752   // positive 
753   AliMixture(32, "SDD Water $", awat, zwat, denswat, 2, wwat);
754   // After a call with ratios by number (negative number of elements), 
755   // the ratio array is changed to the ratio by weight, so all successive 
756   // calls with the same array must specify the number of elements as 
757   // positive 
758   AliMixture( 33, "SDD Freon$", afre, zfre, densfre, 2, wfre);
759   AliMixture( 34, "SDD PCB$",   apcb, zpcb, denspcb, 3, wpcb);
760   AliMaterial(35, "SDD Copper$", 63.546, 29., 8.96, 1.43, 999);
761   AliMixture( 36, "SDD Ceramics$", acer, zcer, denscer, -5, wcer);
762   AliMaterial(37, "SDD Kapton$", 12.011, 6., 1.3, 31.27, 999);
763   AliMaterial(38, "SDD End ladder$",28.0855, 14., 2.33, 9.36, 999); // check !!!!
764   AliMaterial(39, "SDD cone$",28.0855, 14., 2.33, 9.36, 999);       // check !!!!
765   // ** 
766   // check A and Z 
767   AliMedium(25, "SDD Si$",      25, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
768   AliMedium(26, "SDD Si chip$", 26, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
769   AliMedium(27, "SDD Si bus$",  27, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
770   AliMedium(28, "SDD C$",       28, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
771   AliMedium(29, "SDD Air$",     29, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
772   AliMedium(30, "SDD Vacuum$",  30, 0,isxfld,sxmgmx, 10.,1.00, .1, .100,10.00);
773   AliMedium(31, "SDD Al$",      31, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
774   AliMedium(32, "SDD Water $",  32, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
775   AliMedium(33, "SDD Freon$",   33, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
776   AliMedium(34, "SDD PCB$",     34, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
777   AliMedium(35, "SDD Copper$",  35, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
778   AliMedium(36, "SDD Ceramics$",36, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
779   AliMedium(37, "SDD Kapton$",  37, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
780   AliMedium(38, "SDD End ladder",38, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
781   AliMedium(39, "SDD cone$",   39, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
782   
783   //  250-274 --> Silicon Strip Detectors (detectors, chips, buses, cooling,..)
784   
785   AliMaterial(50, "SSD Si$",      28.0855, 14., 2.33, 9.36, 999.);
786   AliMaterial(51, "SSD Si chip$", 28.0855, 14., 2.33, 9.36, 999.);
787   AliMaterial(52, "SSD Si bus$",  28.0855, 14., 2.33, 9.36, 999.);
788   AliMaterial(53, "SSD C$",       12.011,   6., 2.265,18.8, 999.);
789   // v. dens 
790   AliMaterial(54, "SSD Air$",     14.61, 7.3, .001205, 30423., 999);
791   AliMaterial(55, "SSD Vacuum$",  1e-16, 1e-16, 1e-16, 1e16, 1e16);
792   AliMaterial(56, "SSD Al$",      26.981539, 13., 2.6989, 8.9, 999);
793   // After a call with ratios by number (negative number of elements), 
794   // the ratio array is changed to the ratio by weight, so all successive 
795   // calls with the same array must specify the number of elements as 
796   // positive 
797   AliMixture(57, "SSD Water $", awat, zwat, denswat, 2, wwat);
798   // After a call with ratios by number (negative number of elements), 
799   // the ratio array is changed to the ratio by weight, so all successive 
800   // calls with the same array must specify the number of elements as 
801   // positive 
802   AliMixture(58, "SSD Freon$", afre, zfre, densfre, 2, wfre);
803   AliMixture(59, "SSD PCB$",   apcb, zpcb, denspcb, 3, wpcb);
804   AliMaterial(60, "SSD Copper$", 63.546, 29., 8.96, 1.43, 999.);
805   // After a call with ratios by number (negative number of elements), 
806   // the ratio array is changed to the ratio by weight, so all successive 
807   // calls with the same array must specify the number of elements as 
808   // positive 
809   AliMixture( 61, "SSD Ceramics$", acer, zcer, denscer, 5, wcer);
810   AliMaterial(62, "SSD Kapton$", 12.011, 6., 1.3, 31.27, 999.);
811   // check A and Z 
812   AliMaterial(63, "SSD G10FR4$", 17.749, 8.875, 1.8, 21.822, 999.);
813   AliMaterial(64, "SSD End ladder$",28.0855, 14., 2.33, 9.36, 999); // check !!!!
814   AliMaterial(65, "SSD cone$",28.0855, 14., 2.33, 9.36, 999);       // check !!!! 
815   // ** 
816   AliMedium(50, "SSD Si$",      50, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
817   AliMedium(51, "SSD Si chip$", 51, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
818   AliMedium(52, "SSD Si bus$",  52, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
819   AliMedium(53, "SSD C$",       53, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
820   AliMedium(54, "SSD Air$",     54, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
821   AliMedium(55, "SSD Vacuum$",  55, 0,isxfld,sxmgmx, 10.,1.00, .1, .100,10.00);
822   AliMedium(56, "SSD Al$",      56, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
823   AliMedium(57, "SSD Water $",  57, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
824   AliMedium(58, "SSD Freon$",   58, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
825   AliMedium(59, "SSD PCB$",     59, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
826   AliMedium(60, "SSD Copper$",  60, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
827   AliMedium(61, "SSD Ceramics$",61, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
828   AliMedium(62, "SSD Kapton$",  62, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
829   AliMedium(63, "SSD G10FR4$",  63, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
830   AliMedium(64, "SPD End ladder",64, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
831   AliMedium(65, "SPD cone$",   65, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
832   
833   //     275-299 --> General (end-caps, frames, cooling, cables, etc.) 
834   
835   AliMaterial(75, "GEN C$", 12.011, 6., 2.265, 18.8, 999.);
836   // verify density 
837   AliMaterial(76, "GEN Air$", 14.61, 7.3, .001205, 30423., 999);
838   AliMaterial(77, "GEN Vacuum$", 1e-16, 1e-16, 1e-16, 1e16, 1e16);
839   AliMixture( 78, "GEN POLYETHYL$", apoly, zpoly, .95, -2, wpoly);
840   AliMixture( 79, "GEN SERVICES$",  aserv, zserv, 4.68, 4, wserv);
841   AliMaterial(80, "GEN Copper$", 63.546, 29., 8.96, 1.43, 999.);
842   // After a call with ratios by number (negative number of elements), 
843   // the ratio array is changed to the ratio by weight, so all successive 
844   // calls with the same array must specify the number of elements as 
845   // positive 
846   AliMixture(81, "GEN Water $", awat, zwat, denswat, 2, wwat);
847 //  AliMaterial(82, "GEN Cables$", 12.011, 6., 2.265, 18.8, 999.);  // check !!!
848 //  AliMaterial(83, "GEN patch pan$", 12.011, 6., 2.265, 18.8, 999.);  // check !!!  
849 //  AliMaterial(84, "GEN serv$", 12.011, 6., 2.265, 18.8, 999.);  // check !!!  
850   AliMixture(85, "GEN Inox$", asteel, zsteel, 7.88, 4, wsteel);
851   AliMaterial(86, "GEN Al$",      26.981539, 13., 2.6989, 8.9, 999);
852   // ** 
853   AliMedium(75,"GEN C$",        75, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
854   AliMedium(76,"GEN Air$",      76, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
855   AliMedium(77,"GEN Vacuum$",   77, 0,isxfld,sxmgmx, 10., .10, .1, .100,10.00);
856   AliMedium(78,"GEN POLYETHYL$",78, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
857   AliMedium(79,"GEN SERVICES$", 79, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
858   AliMedium(80,"GEN Copper$",   80, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
859   AliMedium(81,"GEN Water $",   81, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
860 //  AliMedium(82,"GEN Cables$",   82, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
861 //  AliMedium(83,"GEN patch pan$",83, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);  
862 //  AliMedium(84,"GEN serv$",     84, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
863   AliMedium(85,"GEN Inox$",     85, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
864   AliMedium(86, "GEN Al$",      86, 0,isxfld,sxmgmx, 10., .01, .1, .003, .003);
865 }
866 //_____________________________________________________________________________
867 void AliITSvPPRcoarseasymm::Init(){
868 ////////////////////////////////////////////////////////////////////////
869 //     Initialise the ITS after it has been created.
870 ////////////////////////////////////////////////////////////////////////
871
872     //
873     AliITS::Init();
874     fMajorVersion = 1;
875     fMinorVersion = 0;
876 }  
877  
878 //_____________________________________________________________________________
879 void AliITSvPPRcoarseasymm::DrawModule(){
880 ////////////////////////////////////////////////////////////////////////
881 //     Draw a shaded view of the FMD version 6.
882 ////////////////////////////////////////////////////////////////////////
883   
884   // Set everything unseen
885   gMC->Gsatt("*", "seen", -1);
886   // 
887   // Set ALIC mother visible
888   gMC->Gsatt("ALIC","SEEN",0);
889   //
890   // Set the volumes visible
891   gMC->Gsatt("ITSD","SEEN",0);
892   gMC->Gsatt("ITS1","SEEN",1);
893   gMC->Gsatt("ITS2","SEEN",1);
894   gMC->Gsatt("ITS3","SEEN",1);
895   gMC->Gsatt("ITS4","SEEN",1);
896   gMC->Gsatt("ITS5","SEEN",1);
897   gMC->Gsatt("ITS6","SEEN",1);
898
899   gMC->Gsatt("IPCB","SEEN",1);
900   gMC->Gsatt("ICO2","SEEN",1);
901   gMC->Gsatt("ICER","SEEN",0);
902   gMC->Gsatt("ISI2","SEEN",0);
903   gMC->Gsatt("IPLA","SEEN",0);
904   gMC->Gsatt("ICO3","SEEN",0);
905   gMC->Gsatt("IEPX","SEEN",0);
906   gMC->Gsatt("ISI3","SEEN",1);
907   gMC->Gsatt("ISUP","SEEN",0);
908   gMC->Gsatt("ICHO","SEEN",0);
909   gMC->Gsatt("ICMO","SEEN",0);
910   gMC->Gsatt("ICMD","SEEN",0);
911   gMC->Gsatt("ICCO","SEEN",1);
912   gMC->Gsatt("ICCM","SEEN",0);
913   gMC->Gsatt("ITMD","SEEN",0);
914   gMC->Gsatt("ITTT","SEEN",1);
915
916   //
917   gMC->Gdopt("hide", "on");
918   gMC->Gdopt("shad", "on");
919   gMC->Gsatt("*", "fill", 7);
920   gMC->SetClipBox(".");
921   gMC->SetClipBox("*", 0, 300, -300, 300, -300, 300);
922   gMC->DefaultRange();
923   gMC->Gdraw("alic", 40, 30, 0, 11, 10, .07, .07);
924   gMC->Gdhead(1111, "Inner Tracking System Version 1");
925   gMC->Gdman(17, 6, "MAN");
926 }
927 //_____________________________________________________________________________
928 void AliITSvPPRcoarseasymm::StepManager(){
929 ////////////////////////////////////////////////////////////////////////
930 //    Called for every step in the ITS, then calls the AliITShit class
931 // creator with the information to be recoreded about that hit.
932 ////////////////////////////////////////////////////////////////////////
933
934 /*
935   Int_t         copy, id;
936   Float_t       hits[8];
937   Int_t         vol[4];
938   TLorentzVector position, momentum;
939 //  TClonesArray &lhits = *fHits;
940 //
941 // no hits for this coarse asymmetric version.
942 //
943
944   //
945   // Track status
946   vol[3] = 0;
947   if(gMC->IsTrackInside())      vol[3] +=  1;
948   if(gMC->IsTrackEntering())    vol[3] +=  2;
949   if(gMC->IsTrackExiting())     vol[3] +=  4;
950   if(gMC->IsTrackOut())         vol[3] +=  8;
951   if(gMC->IsTrackDisappeared()) vol[3] += 16;
952   if(gMC->IsTrackStop())        vol[3] += 32;
953   if(gMC->IsTrackAlive())       vol[3] += 64;
954   //
955   // Fill hit structure.
956   if( !(gMC->TrackCharge()) ) return;
957     //
958     // Only entering charged tracks
959     if((id=gMC->CurrentVolID(copy))==fIdSens[0]) {  
960       vol[0]=1;
961       id=gMC->CurrentVolOffID(1,copy);      
962       vol[1]=copy;
963       id=gMC->CurrentVolOffID(2,copy);
964       vol[2]=copy;                       
965     } else if(id==fIdSens[1]) {
966       vol[0]=2;
967       id=gMC->CurrentVolOffID(1,copy);       
968       vol[1]=copy;
969       id=gMC->CurrentVolOffID(2,copy);
970       vol[2]=copy;                    
971     } else if(id==fIdSens[2]) {
972       vol[0]=3;
973       vol[1]=copy;
974       id=gMC->CurrentVolOffID(1,copy);
975       vol[2]=copy;             
976     } else if(id==fIdSens[3]) {
977       vol[0]=4;
978       vol[1]=copy;
979       id=gMC->CurrentVolOffID(1,copy);
980       vol[2]=copy;                  
981     } else if(id==fIdSens[4]) {
982       vol[0]=5;
983       vol[1]=copy;
984       id=gMC->CurrentVolOffID(1,copy);
985       vol[2]=copy;               
986     } else if(id==fIdSens[5]) {
987       vol[0]=6;
988       vol[1]=copy;
989       id=gMC->CurrentVolOffID(1,copy);
990       vol[2]=copy;                      
991     } else return;
992     gMC->TrackPosition(position);
993     gMC->TrackMomentum(momentum);
994     hits[0]=position[0];
995     hits[1]=position[1];
996     hits[2]=position[2];          
997     hits[3]=momentum[0];
998     hits[4]=momentum[1];
999     hits[5]=momentum[2];
1000     hits[6]=gMC->Edep();
1001     hits[7]=gMC->TrackTime();
1002 //    new(lhits[fNhits++]) AliITShit(fIshunt,gAlice->CurrentTrack(),vol,hits);
1003 //
1004 // no hits for this coarse asymmetric version.
1005 //
1006 */
1007 }
1008 /*
1009 //____________________________________________________________________________
1010 void AliITSvPPRcoarseasymm::Streamer(TBuffer &R__b){
1011 ////////////////////////////////////////////////////////////////////////
1012 //    A dummy Streamer function for this class AliITSvPPRcoarseasymm. By default it
1013 // only streams the AliITS class as it is required. Since this class
1014 // dosen't contain any "real" data to be saved, it doesn't.
1015 ////////////////////////////////////////////////////////////////////////
1016
1017    if (R__b.IsReading()) {
1018       Version_t R__v = R__b.ReadVersion(); if (R__v) { }
1019       AliITS::Streamer(R__b);
1020    } else {
1021       R__b.WriteVersion(AliITSvPPRcoarseasymm::IsA());
1022       AliITS::Streamer(R__b);
1023    } // end if R__b.IsReading()
1024 }
1025 */