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