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