]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSvPPRasymmFMD.cxx
fix some coding violations.
[u/mrichter/AliRoot.git] / ITS / AliITSvPPRasymmFMD.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17 ///////////////////////////////////////////////////////////////////////////////
18 //                                                                           //
19 //  Inner Traking System version PPR  asymmetric for the FMD                 //
20 //  This class contains the base procedures for the Inner Tracking System    //
21 //                                                                           //
22 // Authors: R. Barbera                                                       //
23 // version 10.                                                               //
24 // Created  January 15 2001.                                                 //
25 //                                                                           //
26 //  NOTE: THIS IS THE  ASYMMETRIC PPR geometry of the ITS for the PMD.       //
27 //                                                                           //
28 ///////////////////////////////////////////////////////////////////////////////
29
30 // See AliITSvPPRasymmFMD::StepManager().
31
32 #include <Riostream.h>
33 // #include <stdio.h>
34 // #include <stdlib.h>
35
36 // #include <TBRIK.h>
37 // #include <TCanvas.h>
38 #include <TClonesArray.h>
39 // #include <TFile.h>    // only required for Tracking function?
40 #include <TGeometry.h>
41 #include <TLorentzVector.h>
42 #include <TMath.h>
43 #include <TNode.h>
44 // #include <TObjArray.h>
45 // #include <TObjString.h>
46 // #include <TPCON.h>
47 // #include <TSystem.h>
48 #include <TTUBE.h>
49 // #include <TTUBS.h>
50 // #include <TVirtualMC.h>
51
52 // #include "AliConst.h"
53 #include "AliITS.h"
54 // #include "AliITSClusterFinderSDD.h"
55 // #include "AliITSClusterFinderSPD.h"
56 // #include "AliITSClusterFinderSSD.h"
57 #include "AliITSDetType.h"
58 #include "AliITSGeant3Geometry.h"
59 #include "AliITSgeom.h"
60 #include "AliITSgeomSDD.h"
61 #include "AliITSgeomSPD.h"
62 #include "AliITSgeomSSD.h"
63 #include "AliITShit.h"
64 #include "AliITSresponseSDD.h"
65 #include "AliITSresponseSPD.h"
66 #include "AliITSresponseSSD.h"
67 #include "AliITSsegmentationSDD.h"
68 #include "AliITSsegmentationSPD.h"
69 #include "AliITSsegmentationSSD.h"
70 // #include "AliITSsimulationSDD.h"
71 // #include "AliITSsimulationSPD.h"
72 // #include "AliITSsimulationSSD.h"
73 #include "AliITSvPPRasymmFMD.h"
74 #include "AliMagF.h"
75 #include "AliRun.h"
76 #include "AliTrackReference.h"
77 #include "AliMC.h"
78
79 #define GEANTGEOMETRY kTRUE
80
81 ClassImp(AliITSvPPRasymmFMD)
82  
83 //______________________________________________________________________
84 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD() {
85     //    Standard default constructor for the ITS version 10.
86     // Inputs:
87     //   none.
88     // Outputs:
89     //   none.
90     // Return:
91     //   none.
92     Int_t i;
93
94     fIdN          = 0;
95     fIdName       = 0;
96     fIdSens       = 0;
97     fEuclidOut    = kFALSE; // Don't write Euclide file
98     fGeomDetOut   = kFALSE; // Don't write .det file
99     fGeomDetIn    = kTRUE; // Read .det file
100     fMajorVersion = IsVersion();
101     fMinorVersion = -1;
102     for(i=0;i<60;i++) fRead[i] = '\0';
103     for(i=0;i<60;i++) fWrite[i] = '\0';
104     for(i=0;i<60;i++) fEuclidGeomDet[i] = '\0';
105     strncpy(fRead,"$ALICE_ROOT/ITS/ITSgeometry_vPPRasymmFMD.det",60);
106 }
107 //______________________________________________________________________
108 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD(const char *name, const char *title) 
109     : AliITS("ITS", title){
110     //    Standard constructor for the ITS version 10.
111     // Inputs:
112     //   const char * name   Ignored, set to "ITS"
113     //   const char * title  Arbitrary title
114     // Outputs:
115     //   none.
116     // Return:
117     //   none.
118     Int_t i;
119
120     fIdN = 6;
121     fIdName = new TString[fIdN];
122     fIdName[0] = name; // removes warning message
123     fIdName[0] = "ITS1";
124     fIdName[1] = "ITS2";
125     fIdName[2] = "ITS3";
126     fIdName[3] = "ITS4";
127     fIdName[4] = "ITS5";
128     fIdName[5] = "ITS6";
129     fIdSens    = new Int_t[fIdN];
130     for(i=0;i<fIdN;i++) fIdSens[i] = 0;
131     fMajorVersion = IsVersion();
132     fMinorVersion = 2;
133     fEuclidOut    = kFALSE; // Don't write Euclide file
134     fGeomDetOut   = kFALSE; // Don't write .det file
135     fGeomDetIn    = kTRUE; // Read .det file
136     SetThicknessDet1();
137     SetThicknessDet2();
138     SetThicknessChip1();
139     SetThicknessChip2();
140     SetDensityServicesByThickness();
141
142     fEuclidGeometry="$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.euc";
143     strncpy(fEuclidGeomDet,"$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det",60);
144     strncpy(fRead,fEuclidGeomDet,60);
145     strncpy(fWrite,fEuclidGeomDet,60);
146     strncpy(fRead,"$ALICE_ROOT/ITS/ITSgeometry_vPPRasymmFMD.det",60);
147 }
148 //______________________________________________________________________
149 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD(const AliITSvPPRasymmFMD &source) :
150  AliITS(source){
151     //     Copy Constructor for ITS version 10. This function is not to be
152     // used. If any other instance of this function, other than "this" is
153     // passed, an error message is returned.
154     // Inputs:
155     //   const AliITSvPPRasymmFMD &source This class
156     // Outputs:
157     //   none.
158     // Return:
159     //   an error message
160
161     if(&source == this) return;
162     Warning("Copy Constructor","Not allowed to copy AliITSvPPRasymmFMD");
163     return;
164 }
165 //______________________________________________________________________
166 AliITSvPPRasymmFMD& AliITSvPPRasymmFMD::operator=(const AliITSvPPRasymmFMD 
167                                                   &source){
168     //    Assignment operator for the ITS version 10. This function is not 
169     // to be used. If any other instance of this function, other than "this" 
170     // is passed, an error message is returned.
171     // Inputs:
172     //   const AliITSvPPRasymmFMD &source This class
173     // Outputs:
174     //   none.
175     // Return:
176     //   an error message
177
178     if(&source == this) return *this;
179     Warning("= operator","Not allowed to copy AliITSvPPRasymmFMD");
180     return *this;
181 }
182 //______________________________________________________________________
183 AliITSvPPRasymmFMD::~AliITSvPPRasymmFMD() {
184     //    Standard destructor for the ITS version 10.
185     // Inputs:
186     //   none.
187     // Outputs:
188     //   none.
189     // Return:
190     //   none.
191 }
192 //______________________________________________________________________
193 void AliITSvPPRasymmFMD::BuildGeometry(){
194     //    Geometry builder for the ITS version 10. Event Display geometry.
195     // Inputs:
196     //   none.
197     // Outputs:
198     //   none.
199     // Return:
200     //   none.
201
202     TNode *node, *top;
203     
204     const Int_t kColorITS=kYellow;
205     //
206     top = gAlice->GetGeometry()->GetNode("alice");
207
208
209     new TTUBE("S_layer1","Layer1 of ITS","void",
210               3.8095,3.8095+1.03*9.36/100.,14.35);
211     top->cd();
212     node = new TNode("Layer1","Layer1","S_layer1",0,0,0,"");
213     node->SetLineColor(kColorITS);
214     fNodes->Add(node);
215
216     new TTUBE("S_layer2","Layer2 of ITS","void",7.,7.+1.03*9.36/100.,14.35);
217     top->cd();
218     node = new TNode("Layer2","Layer2","S_layer2",0,0,0,"");
219     node->SetLineColor(kColorITS);
220     fNodes->Add(node);
221
222     new TTUBE("S_layer3","Layer3 of ITS","void",15.,15.+0.94*9.36/100.,25.1);
223     top->cd();
224     node = new TNode("Layer3","Layer3","S_layer3",0,0,0,"");
225     node->SetLineColor(kColorITS);
226     fNodes->Add(node);
227
228     new TTUBE("S_layer4","Layer4 of ITS","void",24.1,24.1+0.95*9.36/100.,32.1);
229     top->cd();
230     node = new TNode("Layer4","Layer4","S_layer4",0,0,0,"");
231     node->SetLineColor(kColorITS);
232     fNodes->Add(node);
233
234     new TTUBE("S_layer5","Layer5 of ITS","void",
235               38.5,38.5+0.91*9.36/100.,49.405);
236     top->cd();
237     node = new TNode("Layer5","Layer5","S_layer5",0,0,0,"");
238     node->SetLineColor(kColorITS);
239     fNodes->Add(node);
240
241     new TTUBE("S_layer6","Layer6 of ITS","void",
242               43.5765,43.5765+0.87*9.36/100.,55.27);
243     top->cd();
244     node = new TNode("Layer6","Layer6","S_layer6",0,0,0,"");
245     node->SetLineColor(kColorITS);
246     fNodes->Add(node);
247 }
248 //______________________________________________________________________
249 void AliITSvPPRasymmFMD::CreateGeometry(){
250     //    This routine defines and Creates the geometry for version 10 of 
251     // the ITS.
252     // Inputs:
253     //   none.
254     // Outputs:
255     //   none.
256     // Return:
257     //   none.
258
259     //Begin_Html
260     /*
261       <img src="picts/ITS/ITS_full_vPPRasymm.jpg">
262       </pre>
263       <br clear=left>
264       <font size=+2 color=red>
265       <p>This shows the full ITS geometry.
266       </font>
267       <img src="picts/ITS/ITS_SPD_Barrel_vPPRasymm.jpg">
268       </pre>
269       < br clear=left>
270       <font size=+2 color=red>
271       <p>This shows the full SPD Barrel of the ITS geometry.
272       </font>
273       <img src="picts/ITS/ITS_SDD_Barrel_vPPRasymm.jpg">
274       </pre>
275       <br clear=left>
276       <font size=+2 color=red>
277       <p>This shows the full SDD Barrel of the ITS geometry.
278       </font>
279       <img src="picts/ITS/ITS_SSD_Barrel_vPPRasymm.jpg">
280       </pre>
281       <br clear=left>
282       <font size=+2 color=red>
283       <p>This shows the full SSD Barrel of the ITS geometry.
284       </font>
285     */
286     //End_Html
287     //INNER RADII OF THE SILICON LAYERS 
288     // Float_t rl[6]    = { 3.8095,7.,15.,24.,38.1,43.5765 };   
289     //THICKNESSES OF LAYERS (in % radiation length)
290     Float_t drl[6]   = { 1.03,1.03,0.94,0.95,0.91,0.87 };   
291     //HALF LENGTHS OF LAYERS  
292     // Float_t dzl[6]   = { 14.35,14.35,25.1,32.1,49.405,55.27 };
293     //LENGTHS OF END-LADDER BOXES (ALL INCLUDED)
294     // Float_t dzb[6]   = { 12.4,12.4,13.5,15.,7.5,7.5 };   
295     //THICKNESSES OF END-LADDER BOXES (ALL INCLUDED)
296     // Float_t drb[6]   = { rl[1]-rl[0],0.2,5.,5.,4.,4. };
297
298
299     Float_t dits[100], rlim, zmax;
300     // Float_t zpos;
301     // Float_t pcits[50]
302     Float_t ztpc;
303     Int_t idrotm[1999], i;
304     Float_t dgh[100];
305
306
307     // Define some variables for SPD
308
309     Float_t dits1[3], di101[3], di107[3], di10b[3], di106[3];// for layer 1 
310     Float_t di103[3], di10a[3], di102[3];                    // for layer 1
311     Float_t dits2[3], di1d1[3], di1d7[3], di20b[3], di1d6[3];// for layer 2
312     Float_t di1d3[3], di20a[3], di1d2[3];                    // for layer 2  
313     Float_t di108[3], di104[3];                              // for both layers
314
315     Float_t ddet1=200.;     // total detector thickness on layer 1 (micron)
316     Float_t dchip1=200.;    // total chip thickness on layer 1 (micron)
317   
318     Float_t ddet2=200.;     // total detector thickness on layer 2 (micron)
319     Float_t dchip2=200.;    // total chip thickness on layer 2 (micron)
320
321     Float_t dbus=300.;      // total bus thickness on both layers (micron)
322
323     ddet1 = GetThicknessDet1();
324     ddet2 = GetThicknessDet2();
325     dchip1 = GetThicknessChip1();
326     dchip2 = GetThicknessChip2();    
327
328     if(ddet1 < 100. || ddet1 > 300.) {
329         cout << "ITS - WARNING: the detector thickness for layer 1 is outside "
330             "the range of [100,300] microns. The default value of 200 microns "
331             "will be used." << endl;
332         ddet1=200.;
333     } // end if
334   
335     if(ddet2 < 100. || ddet2 > 300.) {
336         cout << "ITS - WARNING: the detector thickness for layer 2 is outside "
337             "the range of [100,300] microns. The default value of 200 microns "
338             "will be used." << endl;
339         ddet2=200.;
340     }// end if
341   
342     if(dchip1 < 100. || dchip1 > 300.) {
343         cout << "ITS - WARNING: the chip thickness for layer 1 is outside "
344             "the range of [100,300] microns. The default value of 200 microns "
345             "will be used." << endl;
346         dchip1=200.;
347     }// end if
348   
349     if(dchip2 < 100. || dchip2 > 300.) {
350         cout << "ITS - WARNING: the chip thickness for layer 2 is outside "
351             "the range of [100,300] microns. The default value of 200 microns"
352             " will be used." << endl;
353         dchip2=200.;
354     }// end if
355
356     Int_t rails = 1;  // flag for rails (1 --> rails in; 0 --> rails out)
357   
358     Int_t fluid = 1;  // flag for the cooling fluid (1 --> water; 0 --> freon)
359
360     rails = GetRails();
361
362     fluid = GetCoolingFluid();
363
364     if(rails != 0 && rails != 1) {
365         cout << "ITS - WARNING: the switch for rails is not set neither "
366             "to 0 (rails out) nor to 1 (rails in). The default value of "
367             "1 (rails in) will be used." << endl;
368     }// end if
369
370     if(fluid != 0 && fluid != 1) {
371         cout << "ITS - WARNING: the switch for cooling fluid is not set "
372             "neither to 0 (freon) nor to 1 (water). The default value of "
373             "1 (water) will be used." << endl;  
374     }// end if
375
376     cout << "ITS: Detector thickness on layer 1 is set to " << 
377         ddet1 << " microns." << endl;
378     cout << "ITS: Chip thickness on layer 1 is set to " << 
379         dchip1 << " microns." << endl;
380     cout << "ITS: Detector thickness on layer 2 is set to " << 
381         ddet2 << " microns." << endl;
382     cout << "ITS: Chip thickness on layer 2 is set to " << 
383         dchip2 << " microns." << endl;
384     if(rails == 0 ) {
385         cout << "ITS: Rails are out." << endl; 
386     } else {
387         cout << "ITS: Rails are in." << endl;
388     }// end if
389     if(fluid == 0 ) {
390         cout << "ITS: The cooling fluid is freon." << endl; 
391     } else {
392         cout << "ITS: The cooling fluid is water." << endl;
393     }// end if
394
395     ddet1  = ddet1*0.0001/2.; // conversion from tot length in um to half in cm
396     ddet2  = ddet2*0.0001/2.; // conversion from tot length in um to half in cm
397     dchip1 = dchip1*0.0001/2.;// conversion from tot length in um to half in cm
398     dchip2 = dchip2*0.0001/2.;// conversion from tot length in um to half in cm
399     dbus   = dbus*0.0001/2.;  // conversion from tot length in um to half in cm
400
401     Float_t deltax, deltay; 
402
403     Int_t thickness = fMinorVersion/10;
404     Int_t option    = fMinorVersion - 10*thickness;
405
406
407     // Define some variables for SDD
408
409
410     Float_t sin30, cos30;
411
412     // SDD electronics+services main volumes
413     Float_t iI018dits[3], iI024dits[3], iI047dits[3], iI048dits[3];
414
415     // SDD detector ladder
416
417     Float_t iI302dits[3], iI402dits[3], iI004dits[3], iI005dits[3];
418     Float_t ySDDsep = 0.20;
419     Float_t ySDD;
420     Int_t   iSDD;
421     Float_t zSDDlay3[6] = { 18.55, 10.95, 3.70, -3.70,-11.20,-18.35};
422     Float_t zSDDlay4[8] = { 25.75, 18.60, 11.00, 3.70, -3.70,-11.20,
423                              -18.45,-26.05};
424
425     // ladder foot and end-ladder (frame and cooling)
426     Float_t iI028dits[3], iI420dits[3], iI421dits[3], iI422dits[6], iI423dits[3];
427     Float_t iI424dits[3], xI424, yI424;
428     Float_t iI425dits[3];
429     Int_t    indI425;
430     Float_t iI029dits[4], iI030dits[4], iI031dits[3], iI032dits[3];
431
432     // SDD ladder frame and cooling
433     Float_t iSDDCoolPipe[3] = {1.7000, -0.5500, 0.0000};
434     Float_t iI035dits[3], iI037dits[3], iI038dits[3];
435     Float_t iI039dits[3], xI039, yI039;
436     Float_t iI041dits[5];
437
438     // SDD hybrid, chips and capacitors
439     Float_t iI050dits[3], xI050, yI050;
440     Float_t iI052dits[3], xI052, yI052;
441     Float_t iI042dits[3], xI042, yI042;
442     Float_t xI042space = 0.17;
443     Float_t iI043dits[3], xI043, yI043;
444     Float_t xI043space = 0.17;
445     Float_t zchip, zChipSpace;
446     Float_t iI051dits[3], xI051, yI051, zI051, yI051space, xcap;
447     Int_t     ichip, icap;
448
449     // SDD microcables
450     Float_t iI044dits[4], xI044, yI044, volI044;
451     Float_t xHV, yHV, zHV, xLV, yLV, zLV;
452     Char_t   nameHV[5], nameLV[5];
453
454
455     // Define media off-set
456   
457     Int_t *idtmed = fIdtmed->GetArray()-199;
458
459   
460     // Rotation matrices
461   
462     // SPD - option 'a' (this is NOT the default so leave commented)
463   
464   
465     if (option == 1) {
466         AliMatrix(idrotm[201],90.0,90.0,90.0,180.0,0.0,0.0);
467         AliMatrix(idrotm[202],90.0,90.0,90.0,0.0,0.0,0.0);
468         AliMatrix(idrotm[203],90.0,350.0,90.0,260.0,0.0,0.0);
469         AliMatrix(idrotm[204],90.0,170.0,90.0,80.0,0.0,0.0);
470         AliMatrix(idrotm[205],90.0,10.0,90.0,100.0,0.0,0.0);
471         AliMatrix(idrotm[206],90.0,190.0,90.0,280.0,0.0,0.0);
472         AliMatrix(idrotm[207],90.0,342.0,90.0,72.0,0.0,0.0);
473         AliMatrix(idrotm[208],90.0,156.999893,90.0,246.999893,0.0,0.0);
474         AliMatrix(idrotm[209],90.0,147.999802,90.0,237.999893,0.0,0.0);
475         AliMatrix(idrotm[210],90.0,138.999802,90.0,228.999802,0.0,0.0);
476         AliMatrix(idrotm[211],90.0,129.999802,90.0,219.999802,0.0,0.0);
477         AliMatrix(idrotm[212],90.0,36.7896,90.0,126.789597,0.0,0.0);
478         AliMatrix(idrotm[213],90.0,343.579712,90.0,73.579697,0.0,0.0);
479         AliMatrix(idrotm[214],90.0,95.413696,90.0,185.413696,0.0,0.0);
480         AliMatrix(idrotm[215],90.0,5.4141,90.0,95.414101,0.0,0.0);
481         AliMatrix(idrotm[216],90.0,318.296906,90.0,48.296902,0.0,0.0);
482         AliMatrix(idrotm[217],90.0,67.000099,90.0,157.000107,0.0,0.0);
483         AliMatrix(idrotm[218],90.0,337.003998,90.0,67.003998,0.0,0.0);
484         AliMatrix(idrotm[219],90.0,247.000305,90.0,337.000305,0.0,0.0);
485         AliMatrix(idrotm[220],90.0,305.633514,90.0,35.633499,0.0,0.0);
486         AliMatrix(idrotm[221],90.0,58.000198,90.0,148.000198,0.0,0.0);
487         AliMatrix(idrotm[222],90.0,327.997101,90.0,57.997101,0.0,0.0 );
488         AliMatrix(idrotm[223],90.0,237.994202,90.0,327.994202,0.0,0.0);
489         AliMatrix(idrotm[224],90.0,296.627502,90.0,26.627399,0.0,0.0);
490         AliMatrix(idrotm[225],90.0,48.994099,90.0,138.994095,0.0,0.0);
491         AliMatrix(idrotm[226],90.0,318.990997,90.0,48.991001,0.0,0.0);
492         AliMatrix(idrotm[227],90.0,228.988205,90.0,318.98819,0.0,0.0);
493         AliMatrix(idrotm[228],90.0,287.621399,90.0,17.621401,0.0,0.0);
494         AliMatrix(idrotm[229],90.0,39.988098,90.0,129.988098,0.0,0.0);
495         AliMatrix(idrotm[230],90.0,309.984985,90.0,39.985001,0.0,0.0);
496         AliMatrix(idrotm[231],90.0,327.2612,90.0,57.2612,0.0,0.0);
497         AliMatrix(idrotm[232],90.0,237.261398,90.0,327.261414,0.0,0.0);
498         AliMatrix(idrotm[233],90.0,252.000504,90.0,342.000488,0.0,0.0 );
499         AliMatrix(idrotm[234],90.0,71.9991,90.0,161.9991,0.0,0.0);
500         AliMatrix(idrotm[235],90.0,270.0,90.0,0.0,0.0,0.0);
501         AliMatrix(idrotm[236],90.0,180.013702,90.0,270.013702,0.0,0.0);
502         AliMatrix(idrotm[237],90.0,0.0,90.0,90.0,0.0,0.0);
503         AliMatrix(idrotm[238],90.0,144.0,90.0,234.0,0.0,0.0);
504         AliMatrix(idrotm[239],90.0,216.0,90.0,306.0,0.0,0.0);
505         AliMatrix(idrotm[240],90.0,288.0,90.0,18.0,0.0,0.0);
506         AliMatrix(idrotm[241],90.0,324.0,90.0,54.0,0.0,0.0);
507         AliMatrix(idrotm[242],90.0,36.0,90.0,126.0,0.0,0.0);
508         AliMatrix(idrotm[243],90.0,108.0,90.0,198.0,0.0,0.0);
509         AliMatrix(idrotm[244],90.0,180.0,90.0,270.0,0.0,0.0);
510         AliMatrix(idrotm[245],90.0,162.0,90.0,252.0,0.0,0.0);
511         AliMatrix(idrotm[246],90.0,310.0,90.0,40.0,0.0,0.0);
512         AliMatrix(idrotm[247],90.0,319.0,90.0,49.0,0.0,0.0);
513         AliMatrix(idrotm[248],90.0,328.0,90.0,58.0,0.0,0.0);
514         AliMatrix(idrotm[249],90.0,337.0,90.0,67.0,0.0,0.0);
515         AliMatrix(idrotm[1003],90.0,73.5,90.0,163.5,0.0,0.0);
516         AliMatrix(idrotm[1011],90.0,342.0,90.0,72.0,0.0,0.0);
517         AliMatrix(idrotm[1039],90.0,72.0,90.0,162.0,0.0,0.0);
518         AliMatrix(idrotm[1043],90.0,66.91,90.0,156.91,0.0,0.0);
519         AliMatrix(idrotm[1065],90.0,144.0,90.0,234.0,0.0,0.0);
520         AliMatrix(idrotm[1078],90.0,180.0,90.0,270.0,0.0,0.0);
521         AliMatrix(idrotm[1088],90.0,57.41,90.0,147.41,0.0,0.0);
522         AliMatrix(idrotm[1089],90.0,333.0,90.0,63.0,0.0,0.0);
523         AliMatrix(idrotm[1090],90.0,351.0,90.0,81.0,0.0,0.0);
524         AliMatrix(idrotm[1091],90.0,216.0,90.0,306.0,0.0,0.0);
525         AliMatrix(idrotm[1092],90.0,27.0,90.0,117.0,0.0,0.0);
526         AliMatrix(idrotm[1093],90.0,18.0,90.0,108.0,0.0,0.0);
527         AliMatrix(idrotm[1094],90.0,9.0,90.0,99.0,0.0,0.0);
528         AliMatrix(idrotm[1104],90.0,252.0,90.0,342.0,0.0,0.0);
529         AliMatrix(idrotm[1106],90.0,36.0,90.0,126.0,0.0,0.0);
530         AliMatrix(idrotm[1107],90.0,108.0,90.0,198.0,0.0,0.0);
531         AliMatrix(idrotm[1108],90.0,324.0,90.0,54.0,180.0,0.0);
532         AliMatrix(idrotm[1109],90.0,0.0,90.0,90.0,180.0,0.0);
533         AliMatrix(idrotm[1110],90.0,36.0,90.0,126.0,180.0,0.0);
534         AliMatrix(idrotm[1111],90.0,72.0,90.0,162.0,180.0,0.0);
535         AliMatrix(idrotm[1112],90.0,108.0,90.0,198.0,180.0,0.0);
536         AliMatrix(idrotm[1113],90.0,144.0,90.0,234.0,180.0,0.0);
537         AliMatrix(idrotm[1114],90.0,180.0,90.0,270.0,180.0,0.0);
538         AliMatrix(idrotm[1115],90.0,216.0,90.0,306.0,180.0,0.0);
539         AliMatrix(idrotm[1116],90.0,252.0,90.0,342.0,180.0,0.0);
540         AliMatrix(idrotm[1117],90.0,288.0,90.0,18.0,0.0,0.0);
541         AliMatrix(idrotm[1118],90.0,288.0,90.0,18.0,180.0,0.0);
542         AliMatrix(idrotm[1130],90.0,324.0,90.0,54.0,0.0,0.0);
543     }// end if option == 1
544
545     // SPD - option 'b' (this is the default)
546
547     if (option == 2) {
548         AliMatrix(idrotm[201],90.0,0.0,90.0,90.0,0.0,0.0);
549         AliMatrix(idrotm[202],90.0,90.0,90.0,0.0,0.0,0.0);
550         AliMatrix(idrotm[203],90.0,350.0,90.0,260.0,0.0,0.0);
551         AliMatrix(idrotm[204],90.0,170.0,90.0,80.0,0.0,0.0);
552         AliMatrix(idrotm[205],90.0,10.0,90.0,100.0,0.0,0.0);
553         AliMatrix(idrotm[206],90.0,190.0,90.0,280.0,0.0,0.0);
554         AliMatrix(idrotm[207],90.0,342.0,90.0,72.0,0.0,0.0);
555         AliMatrix(idrotm[208],90.0,156.999893,90.0,246.999893,0.0,0.0);
556         AliMatrix(idrotm[209],90.0,147.999802,90.0,237.999893,0.0,0.0);
557         AliMatrix(idrotm[210],90.0,138.999802,90.0,228.999802,0.0,0.0);
558         AliMatrix(idrotm[211],90.0,129.999802,90.0,219.999802,0.0,0.0);
559         AliMatrix(idrotm[212],90.0,36.7896,90.0,126.789597,0.0,0.0);
560         AliMatrix(idrotm[213],90.0,343.579712,90.0,73.579697,0.0,0.0);
561         AliMatrix(idrotm[214],90.0,95.413696,90.0,185.413696,0.0,0.0);
562         AliMatrix(idrotm[215],90.0,5.4141,90.0,95.414101,0.0,0.0);
563         AliMatrix(idrotm[216],90.0,318.296906,90.0,48.296902,0.0,0.0);
564         AliMatrix(idrotm[217],90.0,67.000099,90.0,157.000107,0.0,0.0);
565         AliMatrix(idrotm[218],90.0,337.003998,90.0,67.003998,0.0,0.0);
566         AliMatrix(idrotm[219],90.0,247.000305,90.0,337.000305,0.0,0.0);
567         AliMatrix(idrotm[220],90.0,305.633514,90.0,35.633499,0.0,0.0);
568         AliMatrix(idrotm[221],90.0,58.000198,90.0,148.000198,0.0,0.0);
569         AliMatrix(idrotm[222],90.0,327.997101,90.0,57.997101,0.0,0.0);
570         AliMatrix(idrotm[223],90.0,237.994202,90.0,327.994202,0.0,0.0);
571         AliMatrix(idrotm[224],90.0,296.627502,90.0,26.627399,0.0,0.0);
572         AliMatrix(idrotm[225],90.0,48.994099,90.0,138.994095,0.0,0.0);
573         AliMatrix(idrotm[226],90.0,318.990997,90.0,48.991001,0.0,0.0);
574         AliMatrix(idrotm[227],90.0,228.988205,90.0,318.98819,0.0,0.0);
575         AliMatrix(idrotm[228],90.0,287.621399,90.0,17.621401,0.0,0.0);
576         AliMatrix(idrotm[229],90.0,39.988098,90.0,129.988098,0.0,0.0);
577         AliMatrix(idrotm[230],90.0,309.984985,90.0,39.985001,0.0,0.0);
578         AliMatrix(idrotm[231],90.0,327.2612,90.0,57.2612,0.0,0.0);
579         AliMatrix(idrotm[232],90.0,237.261398,90.0,327.261414,0.0,0.0);
580         AliMatrix(idrotm[233],90.0,252.000504,90.0,342.000488,0.0,0.0);
581         AliMatrix(idrotm[234],90.0,71.9991,90.0,161.9991,0.0,0.0);
582         AliMatrix(idrotm[235],90.0,270.0,90.0,0.0,0.0,0.0);
583         AliMatrix(idrotm[236],90.0,180.013702,90.0,270.013702,0.0,0.0);
584         AliMatrix(idrotm[237],90.0,90.0,90.0,180.0,0.0,0.0);
585         AliMatrix(idrotm[238],90.0,180.0,90.0,270.0,0.0,0.0);
586         AliMatrix(idrotm[239],90.0,162.0,90.0,252.0,0.0,0.0);
587         AliMatrix(idrotm[240],90.0,310.0,90.0,40.0,0.0,0.0);
588         AliMatrix(idrotm[241],90.0,319.0,90.0,49.0,0.0,0.0);
589         AliMatrix(idrotm[242],90.0,328.0,90.0,58.0,0.0,0.0);
590         AliMatrix(idrotm[243],90.0,337.0,90.0,67.0,0.0,0.0);
591         AliMatrix(idrotm[244],90.0,216.0,90.0,306.0,0.0,0.0);
592         AliMatrix(idrotm[245],90.0,36.0,90.0,126.0,0.0,0.0);
593         AliMatrix(idrotm[246],90.0,108.0,90.0,198.0,0.0,0.0);
594         AliMatrix(idrotm[247],90.0,144.0,90.0,234.0,0.0,0.0);
595         AliMatrix(idrotm[248],90.0,288.0,90.0,18.0,0.0,0.0);
596         AliMatrix(idrotm[249],90.0,324.0,90.0,54.0,0.0,0.0);  
597         AliMatrix(idrotm[1003],90.0,73.5,90.0,163.5,0.0,0.0);
598         AliMatrix(idrotm[1011],90.0,342.0,90.0,72.0,0.0,0.0);
599         AliMatrix(idrotm[1039],90.0,72.0,90.0,162.0,0.0,0.0);
600         AliMatrix(idrotm[1043],90.0,66.91,90.0,156.91,0.0,0.0);
601         AliMatrix(idrotm[1065],90.0,144.0,90.0,234.0,0.0,0.0);
602         AliMatrix(idrotm[1078],90.0,180.0,90.0,270.0,0.0,0.0);
603         AliMatrix(idrotm[1088],90.0,57.41,90.0,147.41,0.0,0.0);
604         AliMatrix(idrotm[1089],90.0,333.0,90.0,63.0,0.0,0.0);
605         AliMatrix(idrotm[1090],90.0,351.0,90.0,81.0,0.0,0.0);
606         AliMatrix(idrotm[1091],90.0,216.0,90.0,306.0,0.0,0.0);
607         AliMatrix(idrotm[1092],90.0,27.0,90.0,117.0,0.0,0.0);
608         AliMatrix(idrotm[1093],90.0,18.0,90.0,108.0,0.0,0.0);
609         AliMatrix(idrotm[1094],90.0,9.0,90.0,99.0,0.0,0.0);
610         AliMatrix(idrotm[1104],90.0,252.0,90.0,342.0,0.0,0.0);
611         AliMatrix(idrotm[1106],90.0,36.0,90.0,126.0,0.0,0.0);
612         AliMatrix(idrotm[1107],90.0,108.0,90.0,198.0,0.0,0.0);
613         AliMatrix(idrotm[1108],90.0,324.0,90.0,54.0,180.0,0.0);
614         AliMatrix(idrotm[1109],90.0,0.0,90.0,90.0,180.0,0.0);
615         AliMatrix(idrotm[1110],90.0,36.0,90.0,126.0,180.0,0.0);
616         AliMatrix(idrotm[1111],90.0,72.0,90.0,162.0,180.0,0.0);
617         AliMatrix(idrotm[1112],90.0,108.0,90.0,198.0,180.0,0.0);
618         AliMatrix(idrotm[1113],90.0,144.0,90.0,234.0,180.0,0.0);
619         AliMatrix(idrotm[1114],90.0,180.0,90.0,270.0,180.0,0.0);
620         AliMatrix(idrotm[1115],90.0,216.0,90.0,306.0,180.0,0.0);
621         AliMatrix(idrotm[1116],90.0,252.0,90.0,342.0,180.0,0.0);
622         AliMatrix(idrotm[1117],90.0,288.0,90.0,18.0,0.0,0.0);
623         AliMatrix(idrotm[1118],90.0,288.0,90.0,18.0,180.0,0.0);
624         AliMatrix(idrotm[1130],90.0,324.0,90.0,54.0,0.0,0.0);
625     }// end if option==2
626     
627     // SDD
628     AliMatrix(idrotm[301],0.0,0.0,90.0,90.0,90.0,180.0);  
629     AliMatrix(idrotm[302],0.0,0.0,90.0,90.0,90.0,0.0);
630     AliMatrix(idrotm[303],180.0,0.0,90.0,90.0,90.0,0.0); 
631     AliMatrix(idrotm[304],180.0,0.0,90.0,90.0,90.0,180.0); 
632     AliMatrix(idrotm[305],90.0,347.14,90.0,77.14,0.0,0.0); 
633     AliMatrix(idrotm[306],90.0,321.43,90.0,51.43,0.0,0.0); 
634     AliMatrix(idrotm[307],90.0,295.71,90.0,25.71,0.0,0.0);
635     AliMatrix(idrotm[308],90.0,244.29,90.0,334.29,0.0,0.0);
636     AliMatrix(idrotm[309],90.0,218.57,90.0,308.57,0.0,0.0);
637     AliMatrix(idrotm[310],90.0,167.14,90.0,257.14,0.0,0.0);
638     AliMatrix(idrotm[311],90.0,141.43,90.0,231.43,0.0,0.0);  
639     AliMatrix(idrotm[312],90.0,0.0,0.0,0.0,90.0,270.0);
640     AliMatrix(idrotm[313],90.0,115.71,90.0,205.71,0.0,0.0); 
641     AliMatrix(idrotm[314],90.0,335.45,90.0,65.45,0.0,0.0); 
642     AliMatrix(idrotm[315],90.0,319.09,90.0,49.09,0.0,0.0); 
643     AliMatrix(idrotm[316],90.0,302.73,90.0,32.73,0.0,0.0); 
644     AliMatrix(idrotm[317],90.0,286.36,90.0,16.36,0.0,0.0);
645     AliMatrix(idrotm[318],90.0,270.0,90.0,360.0,0.0,0.0);
646     AliMatrix(idrotm[319],90.0,253.64,90.0,343.64,0.0,0.0);
647     AliMatrix(idrotm[320],90.0,237.27,90.0,327.27,0.0,0.0);
648     AliMatrix(idrotm[321],90.0,12.86,90.0,102.86,0.0,0.0);  
649     AliMatrix(idrotm[322],90.0,220.91,90.0,310.91,0.0,0.0);
650     AliMatrix(idrotm[323],90.0,204.55,90.0,294.55,0.0,0.0); 
651     AliMatrix(idrotm[324],90.0,188.18,90.0,278.18,0.0,0.0); 
652     AliMatrix(idrotm[325],90.0,171.82,90.0,261.82,0.0,0.0); 
653     AliMatrix(idrotm[326],90.0,155.45,90.0,245.45,0.0,0.0); 
654     AliMatrix(idrotm[327],90.0,139.09,90.0,229.09,0.0,0.0);
655     AliMatrix(idrotm[328],90.0,122.73,90.0,212.73,0.0,0.0);
656     AliMatrix(idrotm[329],90.0,106.36,90.0,196.36,0.0,0.0);
657     AliMatrix(idrotm[330],90.0,73.64,90.0,163.64,0.0,0.0);    
658     AliMatrix(idrotm[331],90.0,40.91,90.0,130.91,0.0,0.0);  
659     AliMatrix(idrotm[332],90.0,24.55,90.0,114.55,0.0,0.0);
660     AliMatrix(idrotm[333],90.0,38.57,90.0,128.57,0.0,0.0); 
661     AliMatrix(idrotm[334],90.0,351.82,90.0,81.82,0.0,0.0); 
662     AliMatrix(idrotm[335],90.0,8.18,90.0,98.18,0.0,0.0); 
663     AliMatrix(idrotm[336],90.0,64.29,90.0,154.29,0.0,0.0); 
664     AliMatrix(idrotm[337],111.0,300.0,21.0,300.0,90.0,30.0);
665     AliMatrix(idrotm[338],69.0,240.0,159.0,240.0,90.0,150.0);
666     AliMatrix(idrotm[339],111.0,240.0,21.0,240.0,90.0,150.0);
667     AliMatrix(idrotm[340],69.0,300.0,159.0,300.0,90.0,30.0);  
668     AliMatrix(idrotm[341],128.0,0.0,38.0,0.0,90.0,270.0);  
669     AliMatrix(idrotm[342],90.0,240.0,180.0,0.0,90.0,330.);
670     AliMatrix(idrotm[343],90.0,120.0,180.0,0.0,90.0,210.0); 
671     AliMatrix(idrotm[344],90.0,0.0,180.0,0.0,90.0,90.0); 
672     AliMatrix(idrotm[345],90.0,180.0,90.0,90.0,0.0,0.0); 
673     AliMatrix(idrotm[346],90.0,300.0,90.0,30.0,0.0,0.0); 
674     AliMatrix(idrotm[347],90.0,240.0,90.0,150.0,0.0,0.0);
675     AliMatrix(idrotm[348],90.0,180.0,0.0,0.0,90.0,270.0);
676     AliMatrix(idrotm[349],90.0,235.0,90.0,145.0,0.0,0.0);
677     AliMatrix(idrotm[350],90.0,90.0,90.0,180.0,0.0,0.0);  
678     AliMatrix(idrotm[351],90.0,305.0,90.0,35.0,0.0,0.0);  
679     AliMatrix(idrotm[352],0.0,0.0,90.0,0.0,90.0,90.0);
680     AliMatrix(idrotm[353],90.0,60.0,90.0,150.0,0.0,0.0); 
681     AliMatrix(idrotm[354],90.0,120.0,90.0,30.0,0.0,0.0); 
682     AliMatrix(idrotm[355],90.0,180.0,90.0,90.0,180.0,0.0); 
683     AliMatrix(idrotm[356],90.0,270.0,90.0,0.0,0.0,0.0); 
684     AliMatrix(idrotm[366],90.0,57.27,90.0,147.27,0.0,0.0); 
685     AliMatrix(idrotm[386],90.0,192.86,90.0,282.86,0.0,0.0);
686
687     // SSD
688     AliMatrix(idrotm[501],90.0,148.24,90.0,238.24,0.0,0.0);
689     AliMatrix(idrotm[503],90.0,137.65,90.0,227.65,0.0,0.0); 
690     AliMatrix(idrotm[504],90.0,127.06,90.0,217.06,0.0,0.0);  
691     AliMatrix(idrotm[505],90.0,116.47,90.0,206.47,0.0,0.0);  
692     AliMatrix(idrotm[506],90.0,105.88,90.0,195.88,0.0,0.0);  
693     AliMatrix(idrotm[507],90.0,95.29,90.0,185.29,0.0,0.0);  
694     AliMatrix(idrotm[508],90.0,84.71,90.0,174.71,0.0,0.0);
695     AliMatrix(idrotm[509],90.0,74.12,90.0,164.12,0.0,0.0);
696     AliMatrix(idrotm[510],90.0,63.53,90.0,153.53,0.0,0.0);  
697     AliMatrix(idrotm[511],90.0,52.94,90.0,142.94,0.0,0.0);
698     AliMatrix(idrotm[512],90.0,42.35,90.0,132.35,0.0,0.0);
699     AliMatrix(idrotm[513],90.0,31.76,90.0,121.76,0.0,0.0); 
700     AliMatrix(idrotm[514],90.0,10.59,90.0,100.59,0.0,0.0);  
701     AliMatrix(idrotm[515],90.0,349.41,90.0,79.41,0.0,0.0);  
702     AliMatrix(idrotm[516],90.0,338.82,90.0,68.82,0.0,0.0);  
703     AliMatrix(idrotm[517],90.0,328.24,90.0,58.24,0.0,0.0);  
704     AliMatrix(idrotm[518],90.0,317.65,90.0,47.65,0.0,0.0);
705     AliMatrix(idrotm[519],90.0,307.06,90.0,37.06,0.0,0.0);
706     AliMatrix(idrotm[520],90.0,296.47,90.0,26.47,0.0,0.0);  
707     AliMatrix(idrotm[521],90.0,285.88,90.0,15.88,0.0,0.0);
708     AliMatrix(idrotm[522],90.0,275.29,90.0,5.29,0.0,0.0);
709     AliMatrix(idrotm[523],90.0,264.71,90.0,354.71,0.0,0.0); 
710     AliMatrix(idrotm[524],90.0,254.12,90.0,344.12,0.0,0.0);  
711     AliMatrix(idrotm[525],90.0,243.53,90.0,333.53,0.0,0.0);  
712     AliMatrix(idrotm[526],90.0,232.94,90.0,322.94,0.0,0.0);  
713     AliMatrix(idrotm[527],90.0,222.35,90.0,312.35,0.0,0.0);  
714     AliMatrix(idrotm[528],90.0,211.76,90.0,301.76,0.0,0.0);
715     AliMatrix(idrotm[529],90.0,190.59,90.0,280.59,0.0,0.0);
716     AliMatrix(idrotm[530],90.0,169.41,90.0,259.41,0.0,0.0);  
717     AliMatrix(idrotm[531],90.0,158.82,90.0,248.82,0.0,0.0);
718     AliMatrix(idrotm[532],90.0,360.0,90.0,90.0,0.0,0.0);
719     AliMatrix(idrotm[533],90.0,180.0,90.0,270.0,0.0,0.0); 
720     AliMatrix(idrotm[534],90.0,189.47,90.0,279.47,0.0,0.0);  
721     AliMatrix(idrotm[535],90.0,198.95,90.0,288.95,0.0,0.0);  
722     AliMatrix(idrotm[537],90.0,217.89,90.0,307.89,0.0,0.0);  
723     AliMatrix(idrotm[538],90.0,227.37,90.0,317.37,0.0,0.0);
724     AliMatrix(idrotm[539],90.0,236.84,90.0,326.84,0.0,0.0);
725     AliMatrix(idrotm[540],90.0,246.32,90.0,336.32,0.0,0.0);  
726     AliMatrix(idrotm[541],90.0,255.79,90.0,345.79,0.0,0.0);
727     AliMatrix(idrotm[542],90.0,265.26,90.0,355.26,0.0,0.0);
728     AliMatrix(idrotm[543],90.0,274.74,90.0,4.74,0.0,0.0); 
729     AliMatrix(idrotm[544],90.0,284.21,90.0,14.21,0.0,0.0);  
730     AliMatrix(idrotm[545],90.0,293.68,90.0,23.68,0.0,0.0);  
731     AliMatrix(idrotm[546],90.0,303.16,90.0,33.16,0.0,0.0);  
732     AliMatrix(idrotm[547],90.0,312.63,90.0,42.63,0.0,0.0);  
733     AliMatrix(idrotm[548],90.0,322.11,90.0,52.11,0.0,0.0);
734     AliMatrix(idrotm[549],90.0,331.58,90.0,61.58,0.0,0.0);
735     AliMatrix(idrotm[550],90.0,341.05,90.0,71.05,0.0,0.0);  
736     AliMatrix(idrotm[551],90.0,350.53,90.0,80.53,0.0,0.0);
737     AliMatrix(idrotm[552],90.0,9.47,90.0,99.47,0.0,0.0);
738     AliMatrix(idrotm[553],90.0,18.95,90.0,108.95,0.0,0.0); 
739     AliMatrix(idrotm[555],90.0,37.89,90.0,127.89,0.0,0.0);  
740     AliMatrix(idrotm[556],90.0,47.37,90.0,137.37,0.0,0.0);  
741     AliMatrix(idrotm[557],90.0,56.84,90.0,146.84,0.0,0.0);  
742     AliMatrix(idrotm[558],90.0,66.32,90.0,156.32,0.0,0.0);
743     AliMatrix(idrotm[559],90.0,75.79,90.0,165.79,0.0,0.0);
744     AliMatrix(idrotm[560],90.0,85.26,90.0,175.26,0.0,0.0);  
745     AliMatrix(idrotm[561],90.0,94.74,90.0,184.74,0.0,0.0);
746     AliMatrix(idrotm[562],90.0,104.21,90.0,194.21,0.0,0.0);
747     AliMatrix(idrotm[563],90.0,113.68,90.0,203.68,0.0,0.0); 
748     AliMatrix(idrotm[564],90.0,123.16,90.0,213.16,0.0,0.0);  
749     AliMatrix(idrotm[565],90.0,132.63,90.0,222.63,0.0,0.0);  
750     AliMatrix(idrotm[566],90.0,142.11,90.0,232.11,0.0,0.0);  
751     AliMatrix(idrotm[567],90.0,151.58,90.0,241.58,0.0,0.0);  
752     AliMatrix(idrotm[568],90.0,161.05,90.0,251.05,0.0,0.0);
753     AliMatrix(idrotm[569],90.0,170.53,90.0,260.53,0.0,0.0);
754     AliMatrix(idrotm[570],90.0,180.0,90.0,90.0,180.0,0.0);  
755     AliMatrix(idrotm[571],90.0,0.0,0.0,0.0,90.0,270.0);
756     AliMatrix(idrotm[572],90.0,180.0,0.0,0.0,90.0,270.0);
757     AliMatrix(idrotm[573],90.0,180.0,90.0,90.0,0.0,0.0); 
758     AliMatrix(idrotm[575],90.0,120.0,180.0,0.0,90.0,210.0);  
759     AliMatrix(idrotm[576],65.71,300.0,90.0,30.0,24.29,120.0);  
760     AliMatrix(idrotm[577],114.29,300.0,90.0,30.0,155.71,120.0);  
761     AliMatrix(idrotm[579],65.71,240.0,90.0,150.0,24.29,60.0);
762     AliMatrix(idrotm[580],114.29,240.0,90.0,150.0,155.71,60.0);  
763     AliMatrix(idrotm[581],90.0,240.0,180.0,0.0,90.0,330.0);
764     AliMatrix(idrotm[583],90.0,0.0,180.0,0.0,90.0,90.0); 
765     AliMatrix(idrotm[584],90.0,180.0,180.0,0.0,90.0,90.0);  
766     AliMatrix(idrotm[586],180.0,0.0,90.0,90.0,90.0,0.0);  
767     AliMatrix(idrotm[618],90.0,201.18,90.0,291.18,0.0,0.0);
768     AliMatrix(idrotm[620],90.0,28.42,90.0,118.42,0.0,0.0);  
769     AliMatrix(idrotm[623],90.0,208.42,90.0,298.42,0.0,0.0);
770     AliMatrix(idrotm[633],132.46,0.0,90.0,90.0,42.46,360.0);
771     AliMatrix(idrotm[653],90.0,21.18,90.0,111.18,0.0,0.0);
772
773     // SDD cone
774     AliMatrix(idrotm[846],90.0,300.0,90.0,30.0,0.0,0.0);
775     AliMatrix(idrotm[851],90.0,305.0,90.0,35.0,0.0,0.0);
776     AliMatrix(idrotm[853],90.0,60.0,90.0,150.0,0.0,0.0);
777     AliMatrix(idrotm[856],90.0,0.0,90.0,90.0,180.0,0.0);
778     AliMatrix(idrotm[857],90.0,5.0,90.0,95.0,180.0,0.0);
779     AliMatrix(idrotm[858],90.0,65.0,90.0,155.0,180.0,0.0);
780     AliMatrix(idrotm[859],90.0,305.0,90.0,35.0,180.0,0.0);
781     AliMatrix(idrotm[860],90.0,245.0,90.0,335.0,180.0,0.0);
782     AliMatrix(idrotm[861],90.0,185.0,90.0,275.0,180.0,0.0);
783     AliMatrix(idrotm[862],90.0,125.0,90.0,215.0,180.0,0.0);
784     AliMatrix(idrotm[863],90.0,257.5,90.0,347.5,180.0,0.0);
785     AliMatrix(idrotm[864],90.0,227.5,90.0,317.5,180.0,0.0);
786     AliMatrix(idrotm[865],90.0,197.5,90.0,287.5,180.0,0.0);
787     AliMatrix(idrotm[867],90.0,167.5,90.0,257.5,180.0,0.0);
788     AliMatrix(idrotm[868],90.0,287.5,90.0,17.5,0.0,0.0);  
789     AliMatrix(idrotm[869],90.0,137.5,90.0,227.5,180.0,0.0);
790     AliMatrix(idrotm[870],90.0,107.5,90.0,197.5,180.0,0.0);
791     AliMatrix(idrotm[871],90.0,77.5,90.0,167.5,180.0,0.0);
792     AliMatrix(idrotm[872],90.0,47.5,90.0,137.5,180.0,0.0);
793     AliMatrix(idrotm[873],90.0,17.5,90.0,107.5,180.0,0.0);
794     AliMatrix(idrotm[874],90.0,347.5,90.0,77.5,180.0,0.0);
795     AliMatrix(idrotm[875],90.0,317.5,90.0,47.5,180.0,0.0);
796     AliMatrix(idrotm[876],90.0,287.5,90.0,17.5,180.0,0.0);
797     AliMatrix(idrotm[877],90.0,185.0,90.0,275.0,0.0,0.0);
798     AliMatrix(idrotm[878],90.0,180.0,90.0,270.0,0.0,0.0);  
799     AliMatrix(idrotm[879],90.0,125.0,90.0,215.0,0.0,0.0);
800     AliMatrix(idrotm[880],90.0,65.0,90.0,155.0,0.0,0.0);
801     AliMatrix(idrotm[881],90.0,5.0,90.0,95.0,0.0,0.0);
802     AliMatrix(idrotm[882],90.0,245.0,90.0,335.0,0.0,0.0);
803     AliMatrix(idrotm[883],90.0,47.5,90.0,137.5,0.0,0.0);
804     AliMatrix(idrotm[884],90.0,77.5,90.0,167.5,0.0,0.0);
805     AliMatrix(idrotm[885],90.0,107.5,90.0,197.5,0.0,0.0);
806     AliMatrix(idrotm[887],90.0,137.5,90.0,227.5,0.0,0.0);
807     AliMatrix(idrotm[888],90.0,167.5,90.0,257.5,0.0,0.0);
808     AliMatrix(idrotm[889],90.0,197.5,90.0,287.5,0.0,0.0);
809     AliMatrix(idrotm[890],90.0,227.5,90.0,317.5,0.0,0.0);
810     AliMatrix(idrotm[891],90.0,347.5,90.0,77.5,0.0,0.0);
811     AliMatrix(idrotm[892],90.0,317.5,90.0,47.5,0.0,0.0);
812     AliMatrix(idrotm[893],90.0,257.5,90.0,347.5,0.0,0.0);
813     AliMatrix(idrotm[894],90.0,270.0,0.0,0.0,90.0,180.0);
814     AliMatrix(idrotm[895],90.0,286.36,0.0,0.0,90.0,196.36);
815     AliMatrix(idrotm[896],90.0,302.73,0.0,0.0,90.0,212.73);
816     AliMatrix(idrotm[897],90.0,319.09,0.0,0.0,90.0,229.09);
817     AliMatrix(idrotm[898],90.0,17.5,90.0,107.5,0.0,0.0);
818     AliMatrix(idrotm[899],90.0,335.45,0.0,0.0,90.0,245.45);
819     AliMatrix(idrotm[900],90.0,351.82,0.0,0.0,90.0,261.82);
820     AliMatrix(idrotm[901],90.0,8.18,0.0,0.0,90.0,278.18);
821     AliMatrix(idrotm[902],90.0,24.55,0.0,0.0,90.0,294.55);
822     AliMatrix(idrotm[903],90.0,40.91,0.0,0.0,90.0,310.91);
823     AliMatrix(idrotm[904],90.0,57.27,0.0,0.0,90.0,327.27);
824     AliMatrix(idrotm[905],90.0,73.64,0.0,0.0,90.0,343.64);
825     AliMatrix(idrotm[906],90.0,90.0,0.0,0.0,90.0,360.0);
826     AliMatrix(idrotm[907],90.0,106.36,0.0,0.0,90.0,16.36);
827     AliMatrix(idrotm[908],90.0,122.73,0.0,0.0,90.0,32.73);
828     AliMatrix(idrotm[909],90.0,139.09,0.0,0.0,90.0,49.09);
829     AliMatrix(idrotm[910],90.0,155.45,0.0,0.0,90.0,65.45);
830     AliMatrix(idrotm[911],90.0,171.82,0.0,0.0,90.0,81.82);
831     AliMatrix(idrotm[912],90.0,188.18,0.0,0.0,90.0,98.18);
832     AliMatrix(idrotm[913],90.0,204.55,0.0,0.0,90.0,114.55);
833     AliMatrix(idrotm[914],90.0,220.91,0.0,0.0,90.0,130.91);
834     AliMatrix(idrotm[915],90.0,237.27,0.0,0.0,90.0,147.27);
835     AliMatrix(idrotm[916],90.0,253.64,0.0,0.0,90.0,163.64);
836     AliMatrix(idrotm[917],90.0,295.71,0.0,0.0,90.0,205.71);
837     AliMatrix(idrotm[918],90.0,321.43,0.0,0.0,90.0,231.43);
838     AliMatrix(idrotm[919],90.0,347.14,0.0,0.0,90.0,257.14);
839     AliMatrix(idrotm[920],90.0,12.86,0.0,0.0,90.0,282.86);
840     AliMatrix(idrotm[921],90.0,38.57,0.0,0.0,90.0,308.57);
841     AliMatrix(idrotm[922],90.0,64.29,0.0,0.0,90.0,334.29);
842     AliMatrix(idrotm[923],90.0,115.71,0.0,0.0,90.0,25.71);
843     AliMatrix(idrotm[924],90.0,141.43,0.0,0.0,90.0,51.43);
844     AliMatrix(idrotm[925],90.0,167.14,0.0,0.0,90.0,77.14);
845     AliMatrix(idrotm[926],90.0,192.86,0.0,0.0,90.0,102.86);
846     AliMatrix(idrotm[927],90.0,218.57,0.0,0.0,90.0,128.57);
847     AliMatrix(idrotm[928],90.0,244.29,0.0,0.0,90.0,154.29);
848     AliMatrix(idrotm[929],90.0,120.0,90.0,210.0,0.0,0.0);
849     AliMatrix(idrotm[930],90.0,240.0,90.0,330.0,0.0,0.0);
850     AliMatrix(idrotm[931],90.0,60.0,90.0,150.0,180.0,0.0);
851     AliMatrix(idrotm[932],90.0,120.0,90.0,210.0,180.0,0.0);
852     AliMatrix(idrotm[933],90.0,180.0,90.0,270.0,180.0,0.0);
853     AliMatrix(idrotm[934],90.0,240.0,90.0,330.0,180.0,0.0);
854     AliMatrix(idrotm[935],90.0,300.0,90.0,30.0,180.0,0.0);
855
856     // SSD cone
857     AliMatrix(idrotm[701],90.0,0.0,90.0,90.0,180.0,0.0);
858     AliMatrix(idrotm[702],90.0,347.5,90.0,77.5,180.0,0.0);
859     AliMatrix(idrotm[703],90.0,17.5,90.0,107.5,180.0,0.0);
860     AliMatrix(idrotm[704],90.0,47.5,90.0,137.5,180.0,0.0);
861     AliMatrix(idrotm[705],90.0,77.5,90.0,167.5,180.0,0.0);
862     AliMatrix(idrotm[706],90.0,107.5,90.0,197.5,180.0,0.0);
863     AliMatrix(idrotm[707],90.0,137.5,90.0,227.5,180.0,0.0);
864     AliMatrix(idrotm[708],90.0,167.5,90.0,257.5,180.0,0.0);
865     AliMatrix(idrotm[709],90.0,197.5,90.0,287.5,180.0,0.0);
866     AliMatrix(idrotm[710],90.0,227.5,90.0,317.5,180.0,0.0);
867     AliMatrix(idrotm[711],90.0,257.5,90.0,347.5,180.0,0.0);
868     AliMatrix(idrotm[712],90.0,287.5,90.0,17.5,180.0,0.0);
869     AliMatrix(idrotm[713],90.0,317.5,90.0,47.5,180.0,0.0);
870     AliMatrix(idrotm[714],90.0,328.4,90.0,58.4,180.0,0.0);
871     AliMatrix(idrotm[715],90.0,28.4,90.0,118.4,180.0,0.0);
872     AliMatrix(idrotm[716],90.0,88.4,90.0,178.4,180.0,0.0);
873     AliMatrix(idrotm[717],90.0,148.4,90.0,238.4,180.0,0.0);
874     AliMatrix(idrotm[718],90.0,208.4,90.0,298.4,180.0,0.0);
875     AliMatrix(idrotm[719],90.0,268.4,90.0,358.4,180.0,0.0);
876     AliMatrix(idrotm[720],90.0,28.4,90.0,118.4,0.0,0.0);
877     AliMatrix(idrotm[721],90.0,88.4,90.0,178.4,0.0,0.0);
878     AliMatrix(idrotm[722],90.0,148.4,90.0,238.4,0.0,0.0);
879     AliMatrix(idrotm[723],90.0,208.4,90.0,298.4,0.0,0.0);
880     AliMatrix(idrotm[724],90.0,268.4,90.0,358.4,0.0,0.0);
881     AliMatrix(idrotm[725],90.0,328.4,90.0,58.4,0.0,0.0);
882     AliMatrix(idrotm[726],90.0,77.5,90.0,167.5,0.0,0.0);
883     AliMatrix(idrotm[727],90.0,107.5,90.0,197.5,0.0,0.0);
884     AliMatrix(idrotm[728],90.0,137.5,90.0,227.5,0.0,0.0);
885     AliMatrix(idrotm[729],90.0,167.5,90.0,257.5,0.0,0.0);
886     AliMatrix(idrotm[730],90.0,227.5,90.0,317.5,0.0,0.0);
887     AliMatrix(idrotm[731],90.0,257.5,90.0,347.5,0.0,0.0);
888     AliMatrix(idrotm[732],90.0,317.5,90.0,47.5,0.0,0.0);  
889     AliMatrix(idrotm[733],90.0,197.5,90.0,287.5,0.0,0.0);
890     AliMatrix(idrotm[734],90.0,347.5,90.0,77.5,0.0,0.0);
891     AliMatrix(idrotm[735],90.0,47.5,90.0,137.5,0.0,0.0);
892     AliMatrix(idrotm[768],90.0,287.5,90.0,17.5,0.0,0.0);
893     AliMatrix(idrotm[798],90.0,17.5,90.0,107.5,0.0,0.0);
894
895     // Services
896     AliMatrix(idrotm[200], 90., 0., 90., 90., 180., 0.);
897
898     // New reference frame: z--->  -z;   x ---> -x;   y ---> y
899     AliMatrix(idrotm[199], 90.,180., 90.,90., 180.,0.);
900
901     //     CONVERT INTO CM (RL(SI)=9.36 CM)
902     for (i = 0; i < 6; ++i) {
903         drl[i] = drl[i] / 100. * 9.36;
904     } // end for i
905
906     //     FIELD CAGE HALF LENGTH
907     rlim  = 50.;
908     zmax  = 74.;
909     ztpc = 284.;
910     // --- Define ghost volume containing the whole ITS (including services) 
911     //     and fill it with air
912     dgh[0] = 0.;
913     dgh[1] = 360.;
914     dgh[2] = 16.;
915     dgh[3] = -ztpc-5.-0.1;
916     dgh[4] = 46;   
917     dgh[5] = 85.;
918     dgh[6] = -ztpc;
919     dgh[7] = 46;   
920     dgh[8] = 85.;
921     dgh[9] = -ztpc;
922     dgh[10] = 46;  
923     dgh[11] = rlim+7.5;
924     dgh[12] = -97.5;
925     dgh[13] = 46;  
926     dgh[14] = rlim+7.5;
927     dgh[15] = -zmax;
928     dgh[16] = 46;  
929     dgh[17] = rlim+7.5;
930     dgh[18] = -48;   
931     dgh[19] = 6;
932     dgh[20] = rlim+7.5;
933     dgh[21] = -28.6;   
934     dgh[22] = 6;
935     dgh[23] = rlim+7.5;    
936     dgh[24] = -27.6;  
937     dgh[25] = 3.295;
938     dgh[26] = rlim+7.5; 
939     dgh[27] = 27.6;   
940     dgh[28] = 3.295;
941     dgh[29] = rlim+7.5;
942     dgh[30] = 28.6;   
943     dgh[31] = 6;
944     dgh[32] = rlim+7.5;
945     dgh[33] = 48;   
946     dgh[34] = 6;
947     dgh[35] = rlim+7.5;  
948     dgh[36] = zmax;
949     dgh[37] = 46;
950     dgh[38] = rlim+7.5;
951     dgh[39] = 97.5;
952     dgh[40] = 46;  
953     dgh[41] = rlim+7.5;
954     dgh[42] = ztpc;
955     dgh[43] = 62;     
956     dgh[44] = 62+4.;  
957     dgh[45] = ztpc;
958     dgh[46] = 62;     
959     dgh[47] = 85.;
960     dgh[48] = ztpc+4.+0.1;
961     dgh[49] = 62.4;
962     dgh[50] = 85.;
963     gMC->Gsvolu("ITSV", "PCON", idtmed[205], dgh, 51);
964
965     // --- Place the ghost volume in its mother volume (ALIC) and make it 
966     //     invisible
967     //    gMC->Gspos("ITSV", 1, "ALIC", 0., 0., 0., 0, "ONLY");
968     gMC->Gspos("ITSV", 1, "ALIC", 0., 0., 0., idrotm[199], "MANY");
969     //gMC->Gsatt("ITSV", "SEEN", 0);
970
971     // --- Define ghost volume containing the six layers and fill it with air 
972   
973     dgh[0] = 0.;
974     dgh[1] = 360.;
975     dgh[2] = 8.;
976     dgh[3] = -zmax;  
977     dgh[4] = 46.;
978     dgh[5] = rlim;
979     dgh[6] = -47.5;    
980     dgh[7] = 6.005;
981     dgh[8] = rlim;
982     dgh[9] = -28.5;    
983     dgh[10] = 6.005;
984     dgh[11] = rlim;  
985     dgh[12] = -27.5;   
986     dgh[13] = 3.3;
987     dgh[14] = rlim;
988     dgh[15] = 27.5;    
989     dgh[16] = 3.3;
990     dgh[17] = rlim;
991     dgh[18] = 28.5;    
992     dgh[19] = 6.005;
993     dgh[20] = rlim;
994     dgh[21] = 47.5;    
995     dgh[22] = 6.005;
996     dgh[23] = rlim;
997     dgh[24] = zmax;    
998     dgh[25] = 46.;
999     dgh[26] = rlim;
1000     gMC->Gsvolu("ITSD", "PCON", idtmed[205], dgh, 27);
1001
1002     // --- Place the ghost volume in its mother volume (ITSV) and make it 
1003     //     invisible
1004     gMC->Gspos("ITSD", 1, "ITSV", 0., 0., 0., 0, "ONLY");
1005     //gMC->Gsatt("ITSD", "SEEN", 0);
1006
1007     // --- Define SPD (option 'a') volumes ----------------------------
1008     // SPD - option 'a' 
1009     // (this is NOT the default)
1010     if (option == 1) {
1011         dits[0] = 3.7;
1012         dits[1] = 7.75;
1013         dits[2] = 26.1;
1014         gMC->Gsvolu("IT12", "TUBE", idtmed[254], dits, 3);
1015
1016         dits[0] = 3.7;
1017         dits[1] = 7.7;
1018         dits[2] = 24;
1019         dits[3] = 57;
1020         dits[4] = 100;
1021         gMC->Gsvolu("I12A", "TUBS", idtmed[254], dits, 5);    // sector
1022
1023         di10a[0] = 0.843;
1024         di10a[1] = ddet1+dchip1+dbus+0.0025;
1025         di10a[2] = 19.344;
1026         gMC->Gsvolu("I10A", "BOX ", idtmed[254], di10a, 3);    // mother volume
1027                                                                // on layer 1
1028         di20a[0] = 0.843;
1029         di20a[1] = ddet2+dchip2+dbus+0.0025;
1030         di20a[2] = 19.344;
1031         gMC->Gsvolu("I20A", "BOX ", idtmed[254], di20a, 3);    // mother volume
1032                                                                // on layer 2
1033         dits[0] = 1.3673;
1034         dits[1] = 0.01;
1035         dits[2] = 24;
1036         gMC->Gsvolu("I123", "BOX ", idtmed[253], dits, 3);
1037
1038         dits[0] = 0.06;
1039         dits[1] = 0.08;
1040         dits[2] = 24;
1041         dits[3] = -36.79;
1042         dits[4] = 21.834;
1043         gMC->Gsvolu("I121", "TUBS", idtmed[253], dits, 5);  
1044
1045         dits[0] = 0.1253;
1046         dits[1] = 0.01;
1047         dits[2] = 24;
1048         gMC->Gsvolu("I122", "BOX ", idtmed[253], dits, 3);
1049
1050         dits[0] = 0.04;
1051         dits[1] = 0.06 ;
1052         dits[2] = 24;
1053         dits[3] = 126.79;
1054         dits[4] = 270;
1055         gMC->Gsvolu("I120", "TUBS", idtmed[253], dits, 5);  
1056
1057         dits[0] = 0.1134;
1058         dits[1] = 0.01;
1059         dits[2] = 24;
1060         gMC->Gsvolu("I144", "BOX ", idtmed[253], dits, 3);  
1061
1062         dits[0] = 0.25;
1063         dits[1] = 0.06;
1064         dits[2] = 24;
1065         gMC->Gsvolu("I113", "BOX ", idtmed[254], dits, 3);  
1066
1067         dits[0] = 0.077;
1068         dits[1] = 0.01;
1069         dits[2] = 24;
1070         gMC->Gsvolu("I143", "BOX ", idtmed[253], dits, 3);   
1071
1072         dits[0] = 0.04;
1073         dits[1] = 0.06;
1074         dits[2] = 24;
1075         dits[3] = 0;
1076         dits[4] = 90;
1077         gMC->Gsvolu("I142", "TUBS", idtmed[253], dits, 5); 
1078
1079         dits[0] = 0.0695;
1080         dits[1] = 0.01;
1081         dits[2] = 24;
1082         gMC->Gsvolu("I141", "BOX ", idtmed[253], dits, 3);  
1083
1084         dits[0] = 0.06;
1085         dits[1] = 0.08;
1086         dits[2] = 24;
1087         dits[3] = 0;
1088         dits[4] = 108;
1089         gMC->Gsvolu("I140", "TUBS", idtmed[253], dits, 5);  
1090
1091         dits[0] = 0.1835;
1092         dits[1] = 0.01;
1093         dits[2] = 24;
1094         gMC->Gsvolu("I139", "BOX ", idtmed[253], dits, 3);
1095
1096         dits[0] = 0.1894 ;
1097         dits[1] = 0.01;
1098         dits[2] = 24;
1099         gMC->Gsvolu("I138", "BOX ", idtmed[253], dits, 3);  
1100
1101         dits[0] = 0.04;
1102         dits[1] = 0.06;
1103         dits[2] = 24;
1104         dits[3] = 0;
1105         dits[4] = 75.261;
1106         gMC->Gsvolu("I137", "TUBS", idtmed[253], dits, 5);  
1107
1108         dits[0] = 1.3401;
1109         dits[1] = 0.01;
1110         dits[2] = 24;
1111         gMC->Gsvolu("I136", "BOX ", idtmed[253], dits, 3);  
1112
1113         dits[0] = 0.05;
1114         dits[1] = 0.07;
1115         dits[2] = 24;
1116         dits[3] = 0;
1117         dits[4] = 72.739;
1118         gMC->Gsvolu("I135", "TUBS", idtmed[253], dits, 5);  
1119
1120         dits[0] = 0.1193;
1121         dits[1] = 0.01;
1122         dits[2] = 24;
1123         gMC->Gsvolu("I134", "BOX ", idtmed[253], dits, 3);    
1124
1125         dits[0] = 0.163;
1126         dits[1] = 0.01;
1127         dits[2] = 24;
1128         gMC->Gsvolu("I133", "BOX ", idtmed[253], dits, 3);   
1129
1130         dits[0] = 0.04;
1131         dits[1] = 0.06;
1132         dits[2] = 24;
1133         dits[3] = 0;
1134         dits[4] = 157.633;
1135         gMC->Gsvolu("I132", "TUBS", idtmed[253], dits, 5); 
1136
1137         dits[0] = 0.2497;
1138         dits[1] = 0.01;
1139         dits[2] = 24;
1140         gMC->Gsvolu("I131", "BOX ", idtmed[253], dits, 3);
1141
1142         dits[0] = 0.06;
1143         dits[1] = 0.08;
1144         dits[2] = 24;
1145         dits[3] = 0;
1146         dits[4] = 148.633;
1147         gMC->Gsvolu("I130", "TUBS", idtmed[253], dits, 5); 
1148
1149         dits[0] = 0.292;
1150         dits[1] = 0.01;
1151         dits[2] = 24;
1152         gMC->Gsvolu("I129", "BOX ", idtmed[253], dits, 3);  
1153
1154         dits[0] = 0.163;
1155         dits[1] = 0.01;
1156         dits[2] = 24;
1157         gMC->Gsvolu("I128", "BOX ", idtmed[253], dits, 3);  
1158
1159         dits[0] = 0.04;
1160         dits[1] = 0.06;
1161         dits[2] = 24;
1162         dits[3] = 0;
1163         dits[4] = 161.297;
1164         gMC->Gsvolu("I126", "TUBS", idtmed[253], dits, 5);
1165
1166         dits[0] = 0.2433;
1167         dits[1] = 0.01;
1168         dits[2] = 24;
1169         gMC->Gsvolu("I125", "BOX ", idtmed[253], dits, 3);  
1170
1171         dits[0] = 0.06;
1172         dits[1] = 0.08;
1173         dits[2] = 24;
1174         dits[3] = 0;
1175         dits[4] = 42.883;
1176         gMC->Gsvolu("I124", "TUBS", idtmed[253], dits, 5);  
1177
1178         di103[0] = 0.793;
1179         di103[1] = ddet1+dchip1;
1180         di103[2] = 3.536;
1181         gMC->Gsvolu("I103", "BOX ", idtmed[254], di103, 3); // contains det 
1182                                                             // and chip layer 1
1183         dits[0] = 0.793;
1184         dits[1] = ddet1+dchip1+dbus+0.0025; 
1185         dits[2] = 2.5;
1186         gMC->Gsvolu("I105", "BOX ", idtmed[290], dits, 3);// end-ladder electr.
1187
1188         di104[0] = 0.843;
1189         di104[1] = dbus;
1190         di104[2] = 14.344;
1191         gMC->Gsvolu("I104", "BOX ", idtmed[275], di104, 3);// bus for both 
1192                                                            // layers
1193
1194         di1d3[0] = 0.793;
1195         di1d3[1] = ddet2+dchip2;
1196         di1d3[2] = 3.536;
1197         gMC->Gsvolu("I1D3", "BOX ", idtmed[254], di1d3, 3); // contains det 
1198                                                             // and chip layer 2
1199         dits[0] = 0.793;
1200         dits[0] = 0.06;
1201         dits[1] = 0.08;
1202         dits[2] = 24;
1203         dits[3] = 0;
1204         dits[4] = 80;
1205         gMC->Gsvolu("I112", "TUBS", idtmed[253], dits, 5);  
1206
1207         dits[0] = 0.04;
1208         dits[1] = 0.06;
1209         dits[2] = 24;
1210         dits[3] = 0;
1211         dits[4] = 80;
1212         gMC->Gsvolu("I111", "TUBS", idtmed[253], dits, 5);  
1213
1214         dits[0] = 0.15;
1215         dits[1] = 0.0146;
1216         dits[2] = 24;
1217         gMC->Gsvolu("I118", "BOX ", idtmed[273], dits, 3);  
1218
1219         dits[0] = 0.1315;
1220         dits[1] = 0.01;
1221         dits[2] = 24;
1222         gMC->Gsvolu("I110", "BOX ", idtmed[253], dits, 3);  
1223
1224         dits[0] = 0.025;
1225         dits[1] = 0.035;
1226         dits[2] = 24;
1227         dits[3] = 0;
1228         dits[4] = 180;
1229         gMC->Gsvolu("I114", "TUBS", idtmed[264], dits, 5);  
1230
1231         if (fluid == 1) {
1232             dits[0] = 0;
1233             dits[1] = 0.025;
1234             dits[2] = 24;
1235             dits[3] = 0;
1236             dits[4] = 180;
1237             gMC->Gsvolu("I115", "TUBS", idtmed[211], dits, 5); // set water 
1238                                                                // as cooling 
1239                                                                // fluid   
1240         } else {
1241             dits[0] = 0;
1242             dits[1] = 0.025;
1243             dits[2] = 24;
1244             dits[3] = 0;
1245             dits[4] = 180;
1246             gMC->Gsvolu("I115", "TUBS", idtmed[212], dits, 5); // set freon 
1247                                                                // as cooling 
1248                                                                // fluid       
1249         } // end if fluid
1250         dits[0] = 0.063;
1251         dits[1] = 0.035;
1252         dits[2] = 24;
1253         gMC->Gsvolu("I116", "BOX ", idtmed[264], dits, 3);
1254
1255         di102[0] = 0.793;
1256         di102[1] = dchip1;
1257         di102[2] = 0.68;
1258         gMC->Gsvolu("I102", "BOX ", idtmed[201], di102, 3);   // chip layer 1
1259           
1260         di1d2[0] = 0.793;
1261         di1d2[1] = dchip2;
1262         di1d2[2] = 0.68;
1263         gMC->Gsvolu("I1D2", "BOX ", idtmed[201], di1d2, 3);   // chip   layer 2
1264
1265         di101[0] = 0.705;
1266         di101[1] = ddet1;
1267         di101[2] = 3.536;
1268         gMC->Gsvolu("I101", "BOX ", idtmed[250], di101, 3);// contains detector
1269                                                            // layer 1
1270         di1d1[0] = 0.705;
1271         di1d1[1] = ddet2;
1272         di1d1[2] = 3.536;
1273         gMC->Gsvolu("I1D1", "BOX ", idtmed[250], di1d1, 3);// contains detector
1274                                                            // layer 2
1275         if (fluid == 1) {
1276             dits[0] = 0.063;
1277             dits[1] = 0.025;
1278             dits[2] = 24;
1279             gMC->Gsvolu("I117", "BOX ", idtmed[211], dits, 3); // set water as
1280                                                                // cooling fuid
1281         } else {
1282             dits[0] = 0.063;
1283             dits[1] = 0.025;
1284             dits[2] = 24;
1285             gMC->Gsvolu("I117", "BOX ", idtmed[212], dits, 3); // set freon
1286                                                                // as cooling
1287                                                                // fluid
1288         }// end if fluid
1289
1290         dits1[0] = 0.64;
1291         dits1[1] = ddet1;
1292         dits1[2] = 3.48;
1293         gMC->Gsvolu("ITS1", "BOX ", idtmed[200], dits1, 3);// detector layer 1
1294
1295         dits2[0] = 0.64;
1296         dits2[1] = ddet2;
1297         dits2[2] = 3.48;
1298         gMC->Gsvolu("ITS2", "BOX ", idtmed[200], dits2, 3);// detector layer 2
1299
1300         dits[0] = 3.701;
1301         dits[1] = 7.699;
1302         dits[2] = 4;
1303         dits[3] = 57.1;
1304         dits[4] = 99.9;  
1305         gMC->Gsvolu("I650", "TUBS", idtmed[254], dits, 5);// was I150 in old
1306                                                            // geom.
1307
1308         dits[0] = 3.7;
1309         dits[1] = 7.75;
1310         dits[2] = 0.05;
1311         gMC->Gsvolu("I651", "TUBE", idtmed[296], dits, 3);  // services disk
1312         //Begin_Html
1313         /*
1314           <img src="http://www.Physics.ohio-state.edu/~nilsen/ITS/ITS_FMD_PMD_SPD_Geom.eps">
1315           </pre>
1316           <br clear=left>
1317           <font size=+2 color=blue>
1318           <p>SPD services volume cone with other forward detectors. Shown in
1319           brown are a posible cabling layout.
1320           </font>
1321         */
1322         //End_Html
1323         dits[0] = 0;
1324         dits[1] = 0.5;
1325         dits[2] = 1.5;
1326         gMC->Gsvolu("I676", "TUBE", idtmed[274], dits, 3); // was I176 in 
1327                                                             // old geom.
1328
1329         dits[0] = 0;
1330         dits[1] = 0.18;
1331         dits[2] = 0.8;
1332         gMC->Gsvolu("I673", "TUBE", idtmed[274], dits, 3); // was I173 in 
1333                                                            // old geom.
1334
1335         dits[0] = 0;
1336         dits[1] = 0.18;
1337         dits[2] = 3;
1338         gMC->Gsvolu("I671", "TUBE", idtmed[274], dits, 3); // was I171 in 
1339                                                            // old geom.
1340
1341         dits[0] = 0;
1342         dits[1] = 0.075;
1343         dits[2] = 0.8;
1344         gMC->Gsvolu("I669", "TUBE", idtmed[264], dits, 3); // was I169 in 
1345                                                            // old geom.
1346
1347         dits[0] = 3.5;
1348         dits[1] = 5.6;
1349         dits[2] = 0.55;
1350         dits[3] = 0;
1351         dits[4] = 38;
1352         gMC->Gsvolu("I667", "TUBS", idtmed[263], dits, 5); // was I167 in old geom.
1353
1354      dits[0] = 6.6;
1355      dits[1] = 7.6;
1356      dits[2] = 0.5;
1357      dits[3] = 0;
1358      dits[4] = 9;
1359      gMC->Gsvolu("I666", "TUBS", idtmed[263], dits, 5); // was I166 in old geom
1360
1361      dits[0] = 0.26;
1362      dits[1] = 0.32;
1363      dits[2] = 0.55;
1364      gMC->Gsvolu("I678", "TUBE", idtmed[263], dits, 3); // was I178 in old geom
1365
1366      if (fluid == 1) {
1367         dits[0] = 0;
1368         dits[1] = 0.3;
1369         dits[2] = 1.5;
1370         gMC->Gsvolu("I677", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1371                                                            // was I177 in old geom.
1372      } else {
1373          dits[0] = 0;
1374         dits[1] = 0.3;
1375         dits[2] = 1.5;
1376         gMC->Gsvolu("I677", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1377                                                            // was I177 in old geom.    
1378      }
1379      
1380      dits[0] = 0.07;
1381      dits[1] = 0.125;
1382      dits[2] = 0.3;
1383      gMC->Gsvolu("I675", "TUBE", idtmed[263], dits, 3); // was I175 in old geom
1384
1385      if (fluid == 1) {
1386         dits[0] = 0;
1387         dits[1] = 0.1;
1388         dits[2] = 0.8;
1389         gMC->Gsvolu("I674", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1390                                                            // was I174 in old geom.
1391      } else {
1392         dits[0] = 0;
1393         dits[1] = 0.1;
1394         dits[2] = 0.8;
1395         gMC->Gsvolu("I674", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1396                                                            // was I174 in old geom.     
1397      }
1398      
1399      if (fluid == 1) {
1400         dits[0] = 0;
1401         dits[1] = 0.1;
1402         dits[2] = 3;
1403         gMC->Gsvolu("I672", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1404                                                            // was I172 in old geom.
1405      } else {
1406         dits[0] = 0;
1407         dits[1] = 0.1;
1408         dits[2] = 3;
1409         gMC->Gsvolu("I672", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1410                                                            // was I172 in old geom.        
1411      }
1412      
1413      if (fluid == 1) {     
1414         dits[0] = 0;
1415         dits[1] = 0.0746;
1416         dits[2] = 0.8;
1417         gMC->Gsvolu("I670", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1418                                                            // was I170 in old geom.
1419      } else {
1420         dits[0] = 0;
1421         dits[1] = 0.0746;
1422         dits[2] = 0.8;
1423         gMC->Gsvolu("I670", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1424                                                            // was I170 in old geom.     
1425      }
1426      
1427      if (fluid == 1) {     
1428         dits[0] = 3.7;
1429         dits[1] = 5.4;
1430         dits[2] = 0.35;
1431         dits[3] = 2;
1432         dits[4] = 36;
1433         gMC->Gsvolu("I668", "TUBS", idtmed[211], dits, 5); // set water as cooling fluid
1434                                                            // was I168 in old geom.
1435      } else {
1436         dits[0] = 3.7;
1437         dits[1] = 5.4;
1438         dits[2] = 0.35;
1439         dits[3] = 2;
1440         dits[4] = 36;
1441         gMC->Gsvolu("I668", "TUBS", idtmed[212], dits, 5); // set freon as cooling fluid
1442                                                            // was I168 in old geom.
1443      }
1444
1445
1446   }
1447
1448   // --- Define SPD (option 'b') volumes ----------------------------
1449   
1450   // SPD - option 'b' 
1451   // (this is the default)
1452
1453   if (option == 2) {
1454   
1455      dits[0] = 3.7;
1456      dits[1] = 7.75;
1457      dits[2] = 26.1;
1458      gMC->Gsvolu("IT12", "TUBE", idtmed[254], dits, 3);   
1459
1460      dits[0] = 3.7;
1461      dits[1] = 7.7;
1462      dits[2] = 24;
1463      dits[3] = 57;
1464      dits[4] = 100;
1465      gMC->Gsvolu("I12B", "TUBS", idtmed[254], dits, 5);   // sector
1466
1467      di10b[0] = 0.843;
1468      di10b[1] = ddet1+dchip1+dbus+0.0025;  
1469      di10b[2] = 19.344;
1470      gMC->Gsvolu("I10B", "BOX ", idtmed[254], di10b, 3);   // mother volume 
1471                                                                 // on layer 1
1472
1473      di20b[0] = 0.843;
1474      di20b[1] = ddet2+dchip2+dbus+0.0025;   
1475      di20b[2] = 19.344;
1476      gMC->Gsvolu("I20B", "BOX ", idtmed[254], di20b, 3);   // mother volume
1477                                                                 // layer 2
1478
1479      dits[0] = 1.3673;
1480      dits[1] = 0.01;
1481      dits[2] = 24;
1482      gMC->Gsvolu("I123", "BOX ", idtmed[253], dits, 3);
1483
1484      dits[0] = 0.06;
1485      dits[1] = 0.08;
1486      dits[2] = 24;
1487      dits[3] = -36.79;
1488      dits[4] = 21.834;
1489      gMC->Gsvolu("I121", "TUBS", idtmed[253], dits, 5);  
1490
1491      dits[0] = 0.1253;
1492      dits[1] = 0.01;
1493      dits[2] = 24;
1494      gMC->Gsvolu("I122", "BOX ", idtmed[253], dits, 3);  
1495
1496      dits[0] = 0.04;
1497      dits[1] = 0.06 ;
1498      dits[2] = 24;
1499      dits[3] = 126.79;
1500      dits[4] = 270;
1501      gMC->Gsvolu("I120", "TUBS", idtmed[253], dits, 5);  
1502
1503      dits[0] = 0.1134;
1504      dits[1] = 0.01;
1505      dits[2] = 24;
1506      gMC->Gsvolu("I144", "BOX ", idtmed[253], dits, 3);  
1507
1508      dits[0] = 0.25;
1509      dits[1] = 0.06;
1510      dits[2] = 24;
1511      gMC->Gsvolu("I113", "BOX ", idtmed[254], dits, 3);  
1512
1513      dits[0] = 0.077;
1514      dits[1] = 0.01;
1515      dits[2] = 24;
1516      gMC->Gsvolu("I143", "BOX ", idtmed[253], dits, 3);   
1517
1518      dits[0] = 0.04;
1519      dits[1] = 0.06;
1520      dits[2] = 24;
1521      dits[3] = 0;
1522      dits[4] = 90;
1523      gMC->Gsvolu("I142", "TUBS", idtmed[253], dits, 5); 
1524
1525      dits[0] = 0.0695;
1526      dits[1] = 0.01;
1527      dits[2] = 24;
1528      gMC->Gsvolu("I141", "BOX ", idtmed[253], dits, 3);  
1529
1530      dits[0] = 0.06;
1531      dits[1] = 0.08;
1532      dits[2] = 24;
1533      dits[3] = 0;
1534      dits[4] = 108;
1535      gMC->Gsvolu("I140", "TUBS", idtmed[253], dits, 5);  
1536
1537      dits[0] = 0.1835;
1538      dits[1] = 0.01;
1539      dits[2] = 24;
1540      gMC->Gsvolu("I139", "BOX ", idtmed[253], dits, 3);
1541
1542      dits[0] = 0.1894 ;
1543      dits[1] = 0.01;
1544      dits[2] = 24;
1545      gMC->Gsvolu("I138", "BOX ", idtmed[253], dits, 3);  
1546
1547      dits[0] = 0.04;
1548      dits[1] = 0.06;
1549      dits[2] = 24;
1550      dits[3] = 0;
1551      dits[4] = 75.261;
1552      gMC->Gsvolu("I137", "TUBS", idtmed[253], dits, 5);  
1553
1554      dits[0] = 1.3401;
1555      dits[1] = 0.01;
1556      dits[2] = 24;
1557      gMC->Gsvolu("I136", "BOX ", idtmed[253], dits, 3);  
1558
1559      dits[0] = 0.05;
1560      dits[1] = 0.07;
1561      dits[2] = 24;
1562      dits[3] = 0;
1563      dits[4] = 72.739;
1564      gMC->Gsvolu("I135", "TUBS", idtmed[253], dits, 5);  
1565
1566      dits[0] = 0.1193;
1567      dits[1] = 0.01;
1568      dits[2] = 24;
1569      gMC->Gsvolu("I134", "BOX ", idtmed[253], dits, 3);    
1570
1571      dits[0] = 0.163;
1572      dits[1] = 0.01;
1573      dits[2] = 24;
1574      gMC->Gsvolu("I133", "BOX ", idtmed[253], dits, 3);   
1575
1576      dits[0] = 0.04;
1577      dits[1] = 0.06;
1578      dits[2] = 24;
1579      dits[3] = 0;
1580      dits[4] = 157.633;
1581      gMC->Gsvolu("I132", "TUBS", idtmed[253], dits, 5); 
1582
1583      dits[0] = 0.2497;
1584      dits[1] = 0.01;
1585      dits[2] = 24;
1586      gMC->Gsvolu("I131", "BOX ", idtmed[253], dits, 3); 
1587
1588      dits[0] = 0.06;
1589      dits[1] = 0.08;
1590      dits[2] = 24;
1591      dits[3] = 0;
1592      dits[4] = 148.633;
1593      gMC->Gsvolu("I130", "TUBS", idtmed[253], dits, 5); 
1594
1595      dits[0] = 0.292;
1596      dits[1] = 0.01;
1597      dits[2] = 24;
1598      gMC->Gsvolu("I129", "BOX ", idtmed[253], dits, 3);  
1599
1600      dits[0] = 0.163;
1601      dits[1] = 0.01;
1602      dits[2] = 24;
1603      gMC->Gsvolu("I128", "BOX ", idtmed[253], dits, 3);  
1604
1605      dits[0] = 0.04;
1606      dits[1] = 0.06;
1607      dits[2] = 24;
1608      dits[3] = 0;
1609      dits[4] = 161.297;
1610      gMC->Gsvolu("I126", "TUBS", idtmed[253], dits, 5);
1611
1612      dits[0] = 0.2433;
1613      dits[1] = 0.01;
1614      dits[2] = 24;
1615      gMC->Gsvolu("I125", "BOX ", idtmed[253], dits, 3);  
1616
1617      dits[0] = 0.06;
1618      dits[1] = 0.08;
1619      dits[2] = 24;
1620      dits[3] = 0;
1621      dits[4] = 42.883;
1622      gMC->Gsvolu("I124", "TUBS", idtmed[253], dits, 5);  
1623
1624      dits[0] = 0.793;
1625      dits[1] = ddet1+dchip1+dbus+0.0025; 
1626      dits[2] = 2.5;
1627      gMC->Gsvolu("I105", "BOX ", idtmed[290], dits, 3);  
1628
1629      di107[0] = 0.793;
1630      di107[1] = ddet1+dchip1;
1631      di107[2] = 3.536;
1632      gMC->Gsvolu("I107", "BOX ", idtmed[254], di107, 3); // contains det and chip   
1633                                                          // layer 1
1634      dits[0] = 0.705;
1635      dits[1] = 0.01;
1636      dits[2] = 2.5;
1637      gMC->Gsvolu("I109", "BOX ", idtmed[275], dits, 3);  
1638
1639      di108[0] = 0.705;
1640      di108[1] = dbus;
1641      di108[2] = 14.344;
1642      gMC->Gsvolu("I108", "BOX ", idtmed[275], di108, 3); // bus for both layers 
1643
1644      di1d7[0] = 0.7975;
1645      di1d7[1] = ddet2+dchip2;   
1646      di1d7[2] = 3.536;
1647      gMC->Gsvolu("I1D7", "BOX ", idtmed[254], di1d7, 3); // contains det and chip
1648                                                          // layer 2
1649      dits[0] = 0.06;
1650      dits[1] = 0.08;
1651      dits[2] = 24;
1652      dits[3] = 0;
1653      dits[4] = 80;
1654      gMC->Gsvolu("I112", "TUBS", idtmed[253], dits, 5);  
1655
1656      dits[0] = 0.04;
1657      dits[1] = 0.06;
1658      dits[2] = 24;
1659      dits[3] = 0;
1660      dits[4] = 80;
1661      gMC->Gsvolu("I111", "TUBS", idtmed[253], dits, 5);  
1662
1663      dits[0] = 0.15;
1664      dits[1] = 0.0146;
1665      dits[2] = 24;
1666      gMC->Gsvolu("I118", "BOX ", idtmed[273], dits, 3);  
1667
1668      dits[0] = 0.1315;
1669      dits[1] = 0.01;
1670      dits[2] = 24;
1671      gMC->Gsvolu("I110", "BOX ", idtmed[253], dits, 3);  
1672
1673      dits[0] = 0.025;
1674      dits[1] = 0.035;
1675      dits[2] = 24;
1676      dits[3] = 0;
1677      dits[4] = 180;
1678      gMC->Gsvolu("I114", "TUBS", idtmed[264], dits, 5);  
1679
1680      if (fluid == 1) {
1681         dits[0] = 0;
1682         dits[1] = 0.025;
1683         dits[2] = 24;
1684         dits[3] = 0;
1685         dits[4] = 180;
1686         gMC->Gsvolu("I115", "TUBS", idtmed[211], dits, 5);  // set water as cooling fluid   
1687      } else {
1688         dits[0] = 0;
1689         dits[1] = 0.025;
1690         dits[2] = 24;
1691         dits[3] = 0;
1692         dits[4] = 180;
1693         gMC->Gsvolu("I115", "TUBS", idtmed[212], dits, 5);  // set freon as cooling fluid
1694      }
1695      
1696      dits[0] = 0.063;
1697      dits[1] = 0.035;
1698      dits[2] = 24;
1699      gMC->Gsvolu("I116", "BOX ", idtmed[264], dits, 3); 
1700
1701      di106[0] = 0.7975;
1702      di106[1] = dchip1;   
1703      di106[2] = 0.68;
1704      gMC->Gsvolu("I106", "BOX ", idtmed[201], di106, 3);   // chip layer 1
1705
1706      di1d6[0] = 0.7975;
1707      di1d6[1] = dchip2;   
1708      di1d6[2] = 0.68;
1709      gMC->Gsvolu("I1D6", "BOX ", idtmed[201], di1d6, 3);   // chip layer 2
1710
1711      di101[0] = 0.705;
1712      di101[1] = ddet1;
1713      di101[2] = 3.536;
1714      gMC->Gsvolu("I101", "BOX ", idtmed[250], di101, 3);  // contains detector
1715                                                           // layer 1
1716      di1d1[0] = 0.705;
1717      di1d1[1] = ddet2;   
1718      di1d1[2] = 3.536;
1719      gMC->Gsvolu("I1D1", "BOX ", idtmed[250], di1d1, 3);  // contains detector
1720                                                           // layer 2
1721    
1722      if (fluid == 1) {
1723         dits[0] = 0.063;
1724         dits[1] = 0.025;
1725         dits[2] = 24;
1726         gMC->Gsvolu("I117", "BOX ", idtmed[211], dits, 3); // set water as cooling fluid
1727      } else {
1728         dits[0] = 0.063;
1729         dits[1] = 0.025;
1730         dits[2] = 24;
1731         gMC->Gsvolu("I117", "BOX ", idtmed[212], dits, 3); // set freon as cooling fluid
1732      }
1733
1734      dits1[0] = 0.64;
1735      dits1[1] = ddet1;
1736      dits1[2] = 3.48;
1737      gMC->Gsvolu("ITS1", "BOX ", idtmed[200], dits1, 3);   // detector layer 1
1738
1739      dits2[0] = 0.64;
1740      dits2[1] = ddet2;  
1741      dits2[2] = 3.48;
1742      gMC->Gsvolu("ITS2", "BOX ", idtmed[200], dits2, 3);   // detector layer 2
1743
1744      dits[0] = 3.701;
1745      dits[1] = 7.699;
1746      dits[2] = 4;
1747      dits[3] = 57.1;
1748      dits[4] = 99.9;  
1749      gMC->Gsvolu("I650", "TUBS", idtmed[254], dits, 5);  // was I150 in old geom.
1750
1751      dits[0] = 3.7;
1752      dits[1] = 7.75;
1753      dits[2] = 0.05;
1754      gMC->Gsvolu("I651", "TUBE", idtmed[296], dits, 3);  // services disk
1755  
1756      dits[0] = 0;
1757      dits[1] = 0.5;
1758      dits[2] = 1.5;
1759      gMC->Gsvolu("I676", "TUBE", idtmed[274], dits, 3); // was I176 in old geom.
1760
1761      dits[0] = 0;
1762      dits[1] = 0.18;
1763      dits[2] = 0.8;
1764      gMC->Gsvolu("I673", "TUBE", idtmed[274], dits, 3); // was I173 in old geom.
1765
1766      dits[0] = 0;
1767      dits[1] = 0.18;
1768      dits[2] = 3;
1769      gMC->Gsvolu("I671", "TUBE", idtmed[274], dits, 3); // was I171 in old geom.
1770
1771      dits[0] = 0;
1772      dits[1] = 0.075;
1773      dits[2] = 0.8;
1774      gMC->Gsvolu("I669", "TUBE", idtmed[264], dits, 3); // was I169 in old geom.
1775
1776      dits[0] = 3.5;
1777      dits[1] = 5.6;
1778      dits[2] = 0.55;
1779      dits[3] = 0;
1780      dits[4] = 38;
1781      gMC->Gsvolu("I667", "TUBS", idtmed[263], dits, 5); // was I167 in old geom.
1782
1783      dits[0] = 6.6;
1784      dits[1] = 7.6;
1785      dits[2] = 0.5;
1786      dits[3] = 0;
1787      dits[4] = 9;
1788      gMC->Gsvolu("I666", "TUBS", idtmed[263], dits, 5); // was I166 in old geom.
1789
1790      dits[0] = 0.26;
1791      dits[1] = 0.32;
1792      dits[2] = 0.55;
1793      gMC->Gsvolu("I678", "TUBE", idtmed[263], dits, 3); // was I178 in old geom.
1794
1795      if (fluid == 1) {
1796         dits[0] = 0;
1797         dits[1] = 0.3;
1798         dits[2] = 1.5;
1799         gMC->Gsvolu("I677", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1800                                                            // was I177 in old geom.
1801      } else {
1802         dits[0] = 0;
1803         dits[1] = 0.3;
1804         dits[2] = 1.5;
1805         gMC->Gsvolu("I677", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1806                                                            // was I177 in old geom.     
1807      }
1808
1809      dits[0] = 0.07;
1810      dits[1] = 0.125;
1811      dits[2] = 0.3;
1812      gMC->Gsvolu("I675", "TUBE", idtmed[263], dits, 3); // was I175 in old geom.
1813
1814      if (fluid == 1) {
1815         dits[0] = 0;
1816         dits[1] = 0.1;
1817         dits[2] = 0.8;
1818         gMC->Gsvolu("I674", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1819                                                            // was I174 in old geom.
1820      } else {
1821         dits[0] = 0;
1822         dits[1] = 0.1;
1823         dits[2] = 0.8;
1824         gMC->Gsvolu("I674", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1825                                                            // was I174 in old geom.     
1826      }
1827      
1828      if (fluid == 1) {
1829         dits[0] = 0;
1830         dits[1] = 0.1;
1831         dits[2] = 3;
1832         gMC->Gsvolu("I672", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1833                                                            // was I172 in old geom.
1834      } else {
1835         dits[0] = 0;
1836         dits[1] = 0.1;
1837         dits[2] = 3;
1838         gMC->Gsvolu("I672", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1839                                                            // was I172 in old geom.     
1840      }
1841      
1842      if (fluid == 1) {
1843         dits[0] = 0;
1844         dits[1] = 0.0746;
1845         dits[2] = 0.8;
1846         gMC->Gsvolu("I670", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1847                                                            // was I170 in old geom.
1848      } else {
1849         dits[0] = 0;
1850         dits[1] = 0.0746;
1851         dits[2] = 0.8;
1852         gMC->Gsvolu("I670", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1853                                                            // was I170 in old geom.     
1854      }
1855      
1856      if (fluid == 1) {
1857         dits[0] = 3.7;
1858         dits[1] = 5.4;
1859         dits[2] = 0.35;
1860         dits[3] = 2;
1861         dits[4] = 36;
1862         gMC->Gsvolu("I668", "TUBS", idtmed[211], dits, 5); //set water as cooling fluid
1863                                                            // was I168 in old geom.
1864      } else {
1865         dits[0] = 3.7;
1866         dits[1] = 5.4;
1867         dits[2] = 0.35;
1868         dits[3] = 2;
1869         dits[4] = 36;
1870         gMC->Gsvolu("I668", "TUBS", idtmed[212], dits, 5); //set freon as cooling fluid
1871                                                            // was I168 in old geom.     
1872      }
1873      
1874
1875   }
1876
1877   // --- Define SDD volumes ------------------------------------------
1878
1879   
1880   cos30 = cos(30.*3.14159/180.);
1881   sin30 = sin(30.*3.14159/180.);
1882
1883   
1884   dits[0] = 0;
1885   dits[1] = 360;
1886   dits[2] = 6;
1887   dits[3] = -34.6; 
1888   dits[4] = 23.49;
1889   dits[5] = 28;
1890   dits[6] = -27.35; 
1891   dits[7] = 23.49;
1892   dits[8] = 28;
1893   dits[9] = -27.35;  
1894   dits[10] = 14.59; 
1895   dits[11] = 28;
1896   dits[12] = 27.35;   
1897   dits[13] = 14.59;
1898   dits[14] = 28;
1899   dits[15] = 27.35;    
1900   dits[16] = 23.49;
1901   dits[17] = 28;
1902   dits[18] = 34.6;  
1903   dits[19] = 23.49;
1904   dits[20] = 28;
1905   gMC->Gsvolu("IT34", "PCON", idtmed[209], dits, 21);  
1906
1907   // block of the SDD electronics and related ladder frame 
1908   iI018dits[0] = 3.2;
1909   iI018dits[1] = 2;
1910   iI018dits[2] = 3.65;
1911   gMC->Gsvolu("I018", "BOX ", idtmed[209], iI018dits, 3);  
1912
1913   // block of the SDD end ladder 
1914   iI024dits[0] = 3.2;
1915   iI024dits[1] = 2;
1916   iI024dits[2] = 2.725;
1917   gMC->Gsvolu("I024", "BOX ", idtmed[209], iI024dits, 3);  
1918
1919   // ladder frame of layer 3 - F.T. March,7-2001
1920   iI047dits[0] = iI018dits[0];
1921   iI047dits[1] = iI018dits[1];
1922   iI047dits[2] = 6*iI018dits[2] + 2*iI024dits[2]; 
1923   gMC->Gsvolu("I047", "BOX ", idtmed[209], iI047dits, 3);  
1924
1925   // ladder frame of layer 4 - F.T. March,7-2001
1926   iI048dits[0] = iI018dits[0];
1927   iI048dits[1] = iI018dits[1];
1928   iI048dits[2] = 8*iI018dits[2] + 2*iI024dits[2]; 
1929   gMC->Gsvolu("I048", "BOX ", idtmed[209], iI048dits, 3);  
1930
1931
1932   // global SDD volume (sensitive + insensitive) 
1933   iI302dits[0] = 3.6250;
1934   iI302dits[1] = 0.0150;
1935   iI302dits[2] = 4.3794;
1936   gMC->Gsvolu("I302", "BOX ", idtmed[278], iI302dits, 3);
1937
1938   // Like for I302 - F.T. March,7-2001
1939   iI402dits[0] = 3.6250;
1940   iI402dits[1] = 0.0150;
1941   iI402dits[2] = 4.3794;
1942   gMC->Gsvolu("I402", "BOX ", idtmed[278], iI402dits, 3);  
1943
1944   // SDD ladder of layer 3 - F.T. March,7-2001
1945   iI004dits[0] = iI302dits[0]+0.005;
1946   iI004dits[1] = 2*iI302dits[1]+ySDDsep/2.;
1947   iI004dits[2] = TMath::Abs(zSDDlay3[0]);
1948   if (iI004dits[2] < TMath::Abs(zSDDlay3[5])) {
1949     iI004dits[2] = TMath::Abs(zSDDlay3[5]);
1950   }
1951   iI004dits[2] = iI004dits[2] + iI302dits[2];
1952   gMC->Gsvolu("I004", "BOX ", idtmed[209], iI004dits, 3);  
1953
1954   // SDD ladder of layer 4 - F.T. March,7-2001
1955   iI005dits[0] = iI402dits[0]+0.005;
1956   iI005dits[1] = 2*iI402dits[1]+ySDDsep/2.;
1957   iI005dits[2] = TMath::Abs(zSDDlay4[0]);
1958   if (iI005dits[2] < TMath::Abs(zSDDlay4[7])) {
1959     iI005dits[2] = TMath::Abs(zSDDlay4[7]);
1960   }
1961   iI005dits[2] = iI005dits[2] + iI402dits[2];
1962   gMC->Gsvolu("I005", "BOX ", idtmed[209], iI005dits, 3);  
1963
1964
1965   // -- block of the SDD ladder foot and end ladder
1966
1967   // ladder foot mother volume
1968   iI028dits[0] = 3.0000;
1969   iI028dits[1] = 0.4000;
1970   iI028dits[2] = 0.9000;
1971   gMC->Gsvolu("I028", "BOX ", idtmed[224], iI028dits, 3);  
1972
1973   // positioning-box #1 at SDD end-ladder - F.T. March,7-2001
1974   iI420dits[0] = 0.4500;
1975   iI420dits[1] = 0.4000;
1976   iI420dits[2] = 0.4500;
1977   gMC->Gsvolu("I420", "BOX ", idtmed[264], iI420dits, 3);  
1978
1979   // positioning-box #2 at SDD end-ladder - F.T. March,7-2001
1980   iI421dits[0] = 0.;
1981   iI421dits[1] = 0.25;
1982   iI421dits[2] = iI420dits[1];
1983   gMC->Gsvolu("I421", "TUBE", idtmed[209], iI421dits, 3);  
1984
1985   // reference ruby-sphere at SDD end-ladder - F.T. March,7-2001 
1986   iI422dits[0] = 0.0000;
1987   iI422dits[1] = 0.2000;
1988   iI422dits[2] = 0.0000;
1989   iI422dits[3] = 180.00;
1990   iI422dits[4] = 0.0000;
1991   iI422dits[5] = 360.00;
1992   gMC->Gsvolu("I422", "SPHE", idtmed[277], iI422dits, 6);  
1993
1994   // support for ruby-sphere (I422) - F.T. March,7-2001
1995   iI423dits[0] = 0.0000;
1996   iI423dits[1] = 0.1000;
1997   iI423dits[2] = (iI420dits[1]-iI422dits[1])/2.;
1998   gMC->Gsvolu("I423", "TUBE", idtmed[264], iI423dits, 3);  
1999
2000   // passage for HV microcables - F.T. March,7-2001
2001   iI424dits[0] = 1.5000;
2002   iI424dits[1] = 0.1500;
2003   iI424dits[2] = iI421dits[2];
2004   gMC->Gsvolu("I424", "BOX ", idtmed[209], iI424dits, 3);  
2005
2006   // HV microcables segment at the end ladder - F.T. March,7-2001
2007   iI425dits[0] = 1.350000;
2008   iI425dits[1] = 0.015250;
2009   iI425dits[2] = iI024dits[2];
2010   gMC->Gsvolu("I425", "BOX ", idtmed[279], iI425dits, 3);  
2011
2012   // lower edge of SDD ladder frame at end-ladder - part 1
2013   dits[0] = 0.2;
2014   dits[1] = 0.1815;
2015   dits[2] = iI024dits[2];
2016   dits[3] = 0.015;
2017   gMC->Gsvolu("I025", "TRD1", idtmed[208], dits, 4);  
2018
2019   // lower edge of SDD ladder frame at end-ladder - part 2
2020   dits[0] = 0.183;
2021   dits[1] = 0.165;
2022   dits[2] = iI024dits[2];
2023   dits[3] = 0.015;
2024   gMC->Gsvolu("I026", "TRD1", idtmed[208], dits, 4);  
2025
2026   // new: for the 1st top rod of the structure 
2027   // at the end-ladder - F.T. March,7-2001
2028   iI029dits[0] = 0.2;
2029   iI029dits[1] = 0.1815;
2030   iI029dits[2] = 1.0100;
2031   iI029dits[3] = 0.015;
2032   gMC->Gsvolu("I029", "TRD1", idtmed[208], iI029dits, 4);  
2033
2034   // new: for the 2nd top rod of the structure 
2035   // at the end-ladder - F.T. March,7-2001
2036   iI030dits[0] = 0.1830;
2037   iI030dits[1] = 0.1650;
2038   iI030dits[2] = 1.0100;
2039   iI030dits[3] = 0.0150;
2040   gMC->Gsvolu("I030", "TRD1", idtmed[208], iI030dits, 4);  
2041
2042   // inox cooling tubes for the end ladder - F.T. March,7-2001
2043   iI031dits[0] = 0.093;
2044   iI031dits[1] = 0.1;
2045   iI031dits[2] = iI024dits[2];
2046   gMC->Gsvolu("I031", "TUBE", idtmed[264], iI031dits, 3);  
2047
2048   if (fluid == 1) {
2049      // cooling water for the end ladder - F.T. March,7-2001
2050      iI032dits[0] = 0;
2051      iI032dits[1] = iI031dits[0];
2052      iI032dits[2] = iI024dits[2];
2053      gMC->Gsvolu("I032", "TUBE", idtmed[211], iI032dits, 3);  
2054   } else {
2055      // cooling freon for the end ladder - R.B. March,21-2001
2056      iI032dits[0] = 0;
2057      iI032dits[1] = iI031dits[0];
2058      iI032dits[2] = iI024dits[2];
2059      gMC->Gsvolu("I032", "TUBE", idtmed[212], iI032dits, 3);    
2060   }
2061   
2062   // -- block of the SDD ladder frame holding the electronics
2063
2064   // edge of the ladder frame - part 1
2065   dits[0] = 0.2;
2066   dits[1] = 0.182;
2067   dits[2] = 3.65;
2068   dits[3] = 0.015;
2069   gMC->Gsvolu("I019", "TRD1", idtmed[208], dits, 4);  
2070
2071   // edge of the ladder frame - part 2
2072   dits[0] = 0.183;
2073   dits[1] = 0.165;
2074   dits[2] = 3.65;
2075   dits[3] = 0.015;
2076   gMC->Gsvolu("I020", "TRD1", idtmed[208], dits, 4);  
2077
2078   // inclined segments of the ladder frame
2079   dits[0] = 2.23;
2080   dits[1] = 2.1;
2081   dits[2] = 0.05;
2082   dits[3] = 0.03;
2083   gMC->Gsvolu("I021", "TRD1", idtmed[208], dits, 4);  
2084
2085   // horiz.segments of the ladders, normal to ladder edges
2086   dits[0] = 2.1;
2087   dits[1] = 2;
2088   dits[2] = 0.06;
2089   dits[3] = 0.04;
2090   gMC->Gsvolu("I022", "TRD1", idtmed[208], dits, 4);  
2091
2092   // horiz.segments of the ladders, at 45 deg. to ladder edges
2093   dits[0] = 2.615;
2094   dits[1] = 2.465;
2095   dits[2] = 0.06;
2096   dits[3] = 0.04;
2097   gMC->Gsvolu("I023", "TRD1", idtmed[208], dits, 4);  
2098
2099   // supports of the ceramic pins holding the detectors
2100   dits[0] = 0.3;
2101   dits[1] = 0.05;
2102   dits[2] = 0.15;
2103   gMC->Gsvolu("I033", "BOX ", idtmed[208], dits, 3);  
2104
2105   // ceramic pins holding the detectors
2106   dits[0] = 0;
2107   dits[1] = 0.05;
2108   dits[2] = 0.225;
2109   gMC->Gsvolu("I034", "TUBE", idtmed[277], dits, 3);  
2110
2111   // holders of cooling tubes
2112   iI035dits[0] = 0.1;
2113   iI035dits[1] = 0.15;
2114   iI035dits[2] = 0.2;
2115   gMC->Gsvolu("I035", "TUBE", idtmed[208], iI035dits, 3);
2116
2117   // top holders of microcables
2118   dits[0] = 0.2;
2119   dits[1] = 0.01;
2120   dits[2] = 0.05;
2121   gMC->Gsvolu("I036", "BOX ", idtmed[208], dits, 3);  
2122
2123   // inox cooling tubes - F.T. March,7-2001
2124   iI037dits[0] = 0.093;
2125   iI037dits[1] = 0.1;
2126   iI037dits[2] = iI018dits[2];
2127   gMC->Gsvolu("I037", "TUBE", idtmed[264], iI037dits, 3);
2128
2129   if (fluid == 1) {
2130      // cooling water - F.T. March,7-2001
2131      iI038dits[0] = 0;
2132      iI038dits[1] = iI037dits[0];
2133      iI038dits[2] = iI018dits[2];
2134      gMC->Gsvolu("I038", "TUBE", idtmed[211], iI038dits, 3);  
2135   } else {
2136      // cooling freon - R.B. March,21-2001
2137      iI038dits[0] = 0;
2138      iI038dits[1] = iI037dits[0];
2139      iI038dits[2] = iI018dits[2];
2140      gMC->Gsvolu("I038", "TUBE", idtmed[212], iI038dits, 3);    
2141   }
2142   // -- block of the SDD electronics (heat bridge, chips, hybrid, anode microcable)
2143
2144   // SDD heat bridge - F.T. March,7-2001
2145   iI039dits[0] = 1.1000;
2146   iI039dits[1] = 0.0087;
2147   iI039dits[2] = 3.2500;
2148   gMC->Gsvolu("I039", "BOX ", idtmed[268], iI039dits, 3);  
2149
2150   // SDD clip part 1
2151   dits[0] = 0.25;
2152   dits[1] = 0.01;
2153   dits[2] = iI039dits[2];
2154   gMC->Gsvolu("I040", "BOX ", idtmed[268], dits, 3);  
2155
2156   // SDD clip part 2
2157   iI041dits[0] = 0.1;
2158   iI041dits[1] = 0.12;
2159   iI041dits[2] = iI039dits[2];
2160   iI041dits[3] = 90;
2161   iI041dits[4] = 320;
2162   gMC->Gsvolu("I041", "TUBS", idtmed[268], iI041dits, 5);  
2163
2164
2165   // SDD PASCAL - F.T. March,7-2001
2166   iI042dits[0] = 0.5000;
2167   iI042dits[1] = 0.0175;
2168   iI042dits[2] = 0.5000;
2169   gMC->Gsvolu("I042", "BOX ", idtmed[206], iI042dits, 3);  
2170
2171   // SDD AMBRA - F.T. March,7-2001
2172   iI043dits[0] = 0.3500;
2173   iI043dits[1] = 0.0175;
2174   iI043dits[2] = 0.5000;
2175   gMC->Gsvolu("I043", "BOX ", idtmed[206], iI043dits, 3);  
2176
2177   // SDD capacitors - F.T. March,7-2001
2178   iI051dits[0] = 0.1400;
2179   iI051dits[1] = 0.0350;
2180   iI051dits[2] = 0.0625;
2181   gMC->Gsvolu("I051", "BOX ", idtmed[276], iI051dits, 3);  
2182
2183   // SDD hybrid circuit - F.T. March,7-2001
2184   iI052dits[0] = 1.725000;
2185   iI052dits[1] = 0.003743;
2186   iI052dits[2] = iI039dits[2];
2187   gMC->Gsvolu("I052", "BOX ", idtmed[281], iI052dits, 3);
2188
2189   // SDD anode microcable : changed - F.T. March,7-2001
2190   iI044dits[0] = iI018dits[2];
2191   iI044dits[1] = iI039dits[2];
2192   iI044dits[2] = 0.00084;
2193   iI044dits[3] = (15.189149/(iI044dits[0]+iI044dits[1]))/2;
2194   gMC->Gsvolu("I044", "TRD1", idtmed[282], iI044dits, 4);  
2195   volI044 = ((2*iI044dits[0] + 2*iI044dits[1]) * 2*iI044dits[2])/2 * 2*iI044dits[3];
2196
2197   // SDD electronics box - F.T. March,7-2001
2198   iI050dits[1] = iI039dits[1]+iI052dits[1]+iI051dits[1]+iI044dits[2];
2199   iI050dits[0] = iI018dits[1]/cos(30.*3.14159/180.)-iI050dits[1]*sin(30.*3.14159/180.);
2200   iI050dits[2] = iI018dits[2];
2201   gMC->Gsvolu("I050", "BOX ", idtmed[209], iI050dits, 3);
2202
2203   // SDD sensitive volume
2204   dits[0] = 3.50850;
2205   dits[1] = 0.01499; // not 0.015 because it is included into I302 which is 0.015
2206   dits[2] = 3.76320;
2207   gMC->Gsvolu("ITS3", "BOX ", idtmed[200], dits, 3);  
2208
2209   // Like for ITS3 - F.T. March,7-2001
2210   dits[0] = 3.50850;
2211   dits[1] = 0.01499; // not 0.015 because it is included into I402 which is 0.015
2212   dits[2] = 3.76320;
2213   gMC->Gsvolu("ITS4", "BOX ", idtmed[200], dits, 3);  
2214
2215
2216   // --- Define SSD volumes ------------------------------------------
2217
2218     
2219   dits[0] = 0;
2220   dits[1] = 360;
2221   dits[2] = 6;
2222   dits[3] = -57.45;
2223   dits[4] = 43.6;
2224   dits[5] = 48;  
2225   dits[6] = -49.15; 
2226   dits[7] = 43.6;
2227   dits[8] = 48;  
2228   dits[9] = -49.15;  
2229   dits[10] = 36.9;
2230   dits[11] = 48;  
2231   dits[12] = 50.55;  
2232   dits[13] = 36.9;
2233   dits[14] = 48;  
2234   dits[15] = 50.55;  
2235   dits[16] = 43.6;
2236   dits[17] = 48;  
2237   dits[18] = 57.45;
2238   dits[19] = 43.6;
2239   dits[20] = 48;   
2240   gMC->Gsvolu("IT56", "PCON", idtmed[220], dits, 21);   
2241   
2242   dits[0] =  3.4;
2243   dits[1] = 1.955;
2244   dits[2] = 56.5; 
2245   gMC->Gsvolu("I570", "BOX ", idtmed[204], dits, 3);  
2246   
2247   dits[0] = 3.75;
2248   dits[1] = 0.045;
2249   dits[2] = 50.975;
2250   gMC->Gsvolu("I569", "BOX ", idtmed[204], dits, 3);  
2251   
2252   dits[0] = 3.4;
2253   dits[1] = 1.955;
2254   dits[2] = 47; 
2255   gMC->Gsvolu("I571", "BOX ", idtmed[204], dits, 3);  
2256   
2257   dits[0] = 3.75;
2258   dits[1] = 0.045;
2259   dits[2] = 43.3;  
2260   gMC->Gsvolu("I565", "BOX ", idtmed[204], dits, 3);  
2261   
2262   dits[0] = 3.4;
2263   dits[1] = 1.955;
2264   dits[2] = 3.15;
2265   gMC->Gsvolu("I553", "BOX ", idtmed[204], dits, 3);  
2266   
2267   dits[0] = 3.405;
2268   dits[1] = 1.955;
2269   dits[2] = 1.955;
2270   gMC->Gsvolu("I523", "BOX ", idtmed[204], dits, 3);  
2271   
2272   dits[0] = 3.75;
2273   dits[1] = 0.015;
2274   dits[2] = 2.1;
2275   gMC->Gsvolu("I566", "BOX ", idtmed[206], dits, 3); 
2276   
2277   dits[0] = 3.4;
2278   dits[1] = 1.955;
2279   dits[2] = 3.15;
2280   gMC->Gsvolu("I544", "BOX ", idtmed[204], dits, 3);  
2281   
2282   dits[0] = 3.41;
2283   dits[1] = 1.955;
2284   dits[2] = 1.955;
2285   gMC->Gsvolu("I516", "BOX ", idtmed[204], dits, 3);  
2286   
2287   dits[0] = 3.75;
2288   dits[1] = 0.015;
2289   dits[2] = 2.1;
2290   gMC->Gsvolu("I562", "BOX ", idtmed[206], dits, 3);   
2291   
2292   if (fluid == 1) {
2293      dits[0] = 0;
2294      dits[1] = 0.07;
2295      dits[2] = 3.15;
2296      gMC->Gsvolu("I559", "TUBE", idtmed[211], dits, 3);  // set water as cooling fluid
2297   } else {
2298      dits[0] = 0;
2299      dits[1] = 0.07;
2300      dits[2] = 3.15;
2301      gMC->Gsvolu("I559", "TUBE", idtmed[212], dits, 3);  // set freon as cooling fluid
2302   }
2303   
2304   dits[0] = 0.07;
2305   dits[1] = 0.1;
2306   dits[2] = 3.15;
2307   gMC->Gsvolu("I560", "TUBE", idtmed[210], dits, 3);  
2308   
2309   dits[0] = 0.225;
2310   dits[1] = 0.195;
2311   dits[2] = 3.15;
2312   dits[3] = 0.025;
2313   gMC->Gsvolu("I558", "TRD1", idtmed[203], dits, 4);  
2314   
2315   dits[0] = 0.25;
2316   dits[1] = 0.22;
2317   dits[2] = 3.15;
2318   dits[3] = 0.025;
2319   gMC->Gsvolu("I557", "TRD1", idtmed[203], dits, 4);  
2320   
2321   dits[0] = 2.17;
2322   dits[1] = 0.035;
2323   dits[2] = 0.05;
2324   gMC->Gsvolu("I556", "BOX ", idtmed[203], dits, 3);  
2325   
2326   dits[0] = 2 ;
2327   dits[1] = 0.035;
2328   dits[2] = 0.05;
2329   gMC->Gsvolu("I554", "BOX ", idtmed[203], dits, 3);  
2330   
2331   dits[0] = 2.675;
2332   dits[1] = 0.035;
2333   dits[2] = 0.05;
2334   gMC->Gsvolu("I555", "BOX ", idtmed[203], dits, 3); 
2335   
2336   dits[0] = 0.3;
2337   dits[1] = 0.15;
2338   dits[2] = 0.15;
2339   gMC->Gsvolu("I561", "BOX ", idtmed[203], dits, 3);  
2340   
2341   dits[0] = 0.025;
2342   dits[1] = 0.025;
2343   dits[2] = 0.05;
2344   gMC->Gsvolu("I519", "BOX ", idtmed[214], dits, 3);  
2345   
2346   dits[0] = 0.304;
2347   dits[1] = 0.0275;
2348   dits[2] = 0.432;
2349   gMC->Gsvolu("I521", "BOX ", idtmed[206], dits, 3);   
2350   
2351   dits[0] = 0.16;
2352   dits[1] = 0.08;
2353   dits[2] = 0.08;
2354   gMC->Gsvolu("I520", "BOX ", idtmed[214], dits, 3);  
2355   
2356   dits[0] = 3.4;
2357   dits[1] = 0.015;
2358   dits[2] = 0.525;
2359   gMC->Gsvolu("I518", "BOX ", idtmed[203], dits, 3);  
2360   
2361   dits[0] = 0.15;
2362   dits[1] = 0.105;
2363   dits[2] = 0.29;
2364   dits[3] = 0.08;
2365   gMC->Gsvolu("I522", "TRD1", idtmed[203], dits, 4);  
2366   
2367   dits[0] = 0.07;
2368   dits[1] = 0.1;
2369   dits[2] = 1.955;
2370   gMC->Gsvolu("I542", "TUBE", idtmed[210], dits, 3);  
2371   
2372   if (fluid == 1) {
2373      dits[0] = 0;
2374      dits[1] = 0.07;
2375      dits[2] = 1.955;
2376      gMC->Gsvolu("I541", "TUBE", idtmed[211], dits, 3);  // set water as cooling fluid 
2377   } else {
2378      dits[0] = 0;
2379      dits[1] = 0.07;
2380      dits[2] = 1.955;
2381      gMC->Gsvolu("I541", "TUBE", idtmed[212], dits, 3);  // set freon as cooling fluid
2382   }
2383   
2384   dits[0] = 0.3;
2385   dits[1] = 0.15;
2386   dits[2] = 0.15;
2387   gMC->Gsvolu("I543", "BOX ", idtmed[203], dits, 3);  
2388   
2389   dits[0] = 0.25;
2390   dits[1] = 0.22;
2391   dits[2] = 1.955;
2392   dits[3] = 0.025;
2393   gMC->Gsvolu("I537", "TRD1", idtmed[203], dits, 4); 
2394   
2395   dits[0] = 0.225;
2396   dits[1] = 0.195;
2397   dits[2] = 1.955;
2398   dits[4] = 0.025;
2399   gMC->Gsvolu("I538", "TRD1", idtmed[203], dits, 4);  
2400   
2401   dits[0] = 2.17;
2402   dits[1] = 0.035;
2403   dits[2] = 0.05;
2404   gMC->Gsvolu("I536", "BOX ", idtmed[203], dits, 3);  
2405   
2406   dits[0] = 2.675;
2407   dits[1] = 0.035;
2408   dits[2] = 0.05;
2409   gMC->Gsvolu("I535", "BOX ", idtmed[203], dits, 3);   
2410   
2411   dits[0] = 2;
2412   dits[1] = 0.035;
2413   dits[2] = 0.05;
2414   gMC->Gsvolu("I534", "BOX ", idtmed[203], dits, 3);  
2415   
2416   dits[0] = 0;
2417   dits[1] = 0.05;
2418   dits[2] = 0.17;
2419   gMC->Gsvolu("I540", "TUBE", idtmed[203], dits, 3);  
2420   
2421   dits[0] = 0;
2422   dits[1] = 0.05;
2423   dits[2] = 0.205;
2424   gMC->Gsvolu("I539", "TUBE", idtmed[203], dits, 3);  
2425   
2426   dits[0] = 3.65;
2427   dits[1] = 0.015;
2428   dits[2] = 2;
2429   gMC->Gsvolu("ITS6", "BOX ", idtmed[200], dits, 3);  
2430   
2431   if (fluid == 1) {
2432      dits[0] = 0;
2433      dits[1] = 0.07;
2434      dits[2] = 3.15;
2435      gMC->Gsvolu("I550", "TUBE", idtmed[211], dits, 3);  // set water as cooling fluid
2436   } else {
2437      dits[0] = 0;
2438      dits[1] = 0.07;
2439      dits[2] = 3.15;
2440      gMC->Gsvolu("I550", "TUBE", idtmed[212], dits, 3);  // set freon as cooling fluid
2441   }
2442   
2443   dits[0] = 0.07;
2444   dits[1] = 0.1;
2445   dits[2] = 3.15;
2446   gMC->Gsvolu("I551", "TUBE", idtmed[210], dits, 3);  
2447   
2448   dits[0] = 0.225;
2449   dits[1] = 0.195;
2450   dits[2] = 3.15;
2451   dits[3] = 0.025;
2452   gMC->Gsvolu("I549", "TRD1", idtmed[203], dits, 4); 
2453   
2454   dits[0] = 0.25;
2455   dits[1] = 0.22;
2456   dits[2] = 3.15;
2457   dits[3] = 0.025;
2458   gMC->Gsvolu("I548", "TRD1", idtmed[203], dits, 4);  
2459   
2460   dits[0] = 2.17;
2461   dits[1] = 0.035;
2462   dits[2] = 0.05;
2463   gMC->Gsvolu("I547", "BOX ", idtmed[203], dits, 3);  
2464   
2465   dits[0] = 2;
2466   dits[1] = 0.035;
2467   dits[2] = 0.05;
2468   gMC->Gsvolu("I545", "BOX ", idtmed[203], dits, 3);   
2469   
2470   dits[0] = 2.675;
2471   dits[1] = 0.035;
2472   dits[2] = 0.05;
2473   gMC->Gsvolu("I546", "BOX ", idtmed[203], dits, 3);  
2474   
2475   dits[0] = 0.3;
2476   dits[1] = 0.15;
2477   dits[2] = 0.15;
2478   gMC->Gsvolu("I552", "BOX ", idtmed[203], dits, 3);  
2479   
2480   dits[0] = 0.304;
2481   dits[1] = 0.0275;
2482   dits[2] = 0.4322;
2483   gMC->Gsvolu("I515", "BOX ", idtmed[206], dits, 3);  
2484   
2485   dits[0] = 0.025;
2486   dits[1] = 0.025;
2487   dits[2] = 0.05;
2488   gMC->Gsvolu("I513", "BOX ", idtmed[214], dits, 3);  
2489   
2490   dits[0] = 0.16;
2491   dits[1] = 0.08;
2492   dits[2] = 0.08;
2493   gMC->Gsvolu("I514", "BOX ", idtmed[214], dits, 3);  
2494   
2495   dits[0] = 3.4;
2496   dits[1] = 0.015;
2497   dits[2] = 0.525;
2498   gMC->Gsvolu("I512", "BOX ", idtmed[203], dits, 3);  
2499   
2500   dits[0] = 0.225;
2501   dits[1] = 0.195;
2502   dits[2] = 1.955;
2503   dits[3] = 0.025;
2504   gMC->Gsvolu("I528", "TRD1", idtmed[203], dits, 4); 
2505   
2506   dits[0] = 0.25;
2507   dits[1] = 0.22;
2508   dits[2] = 1.955;
2509   dits[3] = 0.025;
2510   gMC->Gsvolu("I527", "TRD1", idtmed[203], dits, 4);  
2511   
2512   dits[0] = 2.17;
2513   dits[1] = 0.035;
2514   dits[2] = 0.05;
2515   gMC->Gsvolu("I526", "BOX ", idtmed[203], dits, 3);  
2516   
2517   dits[0] = 2.675;
2518   dits[1] = 0.035;
2519   dits[2] = 0.05;
2520   gMC->Gsvolu("I525", "BOX ", idtmed[203], dits, 3);  
2521    
2522   dits[0] = 2;
2523   dits[1] = 0.035;
2524   dits[2] = 0.05;
2525   gMC->Gsvolu("I524", "BOX ", idtmed[203], dits, 3);  
2526    
2527   dits[0] = 0;
2528   dits[1] = 0.05;
2529   dits[2] = 0.205;
2530   gMC->Gsvolu("I529", "TUBE", idtmed[203], dits, 3);  
2531    
2532   dits[0] = 0;
2533   dits[1] = 0.05;
2534   dits[2] = 0.17;
2535   gMC->Gsvolu("I530", "TUBE", idtmed[203], dits, 3);  
2536    
2537   dits[0] = 0.15;
2538   dits[1] = 0.105;
2539   dits[2] = 0.29;
2540   dits[3] = 0.08;
2541   gMC->Gsvolu("I517", "TRD1", idtmed[203], dits, 4);  
2542   
2543   if (fluid == 1) {
2544      dits[0] = 0;
2545      dits[1] = 0.07;
2546      dits[2] = 1.955;
2547      gMC->Gsvolu("I531", "TUBE", idtmed[211], dits, 3);  // set water as cooling fluid
2548   } else {
2549      dits[0] = 0;
2550      dits[1] = 0.07;
2551      dits[2] = 1.955;
2552      gMC->Gsvolu("I531", "TUBE", idtmed[212], dits, 3);  // set freon as cooling fluid
2553   }
2554      
2555   dits[0] = 0.07;
2556   dits[1] = 0.1;
2557   dits[2] = 1.955;
2558   gMC->Gsvolu("I532", "TUBE", idtmed[210], dits, 3);  
2559  
2560   dits[0] = 0.3;
2561   dits[1] = 0.15;
2562   dits[2] = 0.15;
2563   gMC->Gsvolu("I533", "BOX ", idtmed[203], dits, 3);  
2564   
2565   dits[0] = 3.65;
2566   dits[1] = 0.015;
2567   dits[2] = 2;
2568   gMC->Gsvolu("ITS5", "BOX ", idtmed[200], dits, 3);  
2569
2570
2571
2572   // --- Define volumes of shield of SPD ----------------
2573
2574
2575   dits[0] = 8.37;
2576   dits[1] = 9.93;
2577   dits[2] = 25;
2578   gMC->Gsvolu("IC01", "TUBE", idtmed[289], dits, 3);   
2579
2580   dits[0] = 8.3;
2581   dits[1] = 9.995;
2582   dits[2] = 17.5/2.;
2583   gMC->Gsvolu("IC02", "TUBE", idtmed[289], dits, 3);    
2584   
2585  
2586   // --- Define volume of first cylinder between SPD and SDD --------------
2587   
2588   dits[0] = (21.-0.128)/2.;      
2589   dits[1] = 21./2.;
2590   dits[2] = 39.4;      
2591   gMC->Gsvolu("ICY1", "TUBE", idtmed[208], dits, 3);
2592          
2593   // --- Define volume of second cylinder between SDD and SSD --------------
2594
2595   dits[0] = (59.5-0.128)/2.;      
2596   dits[1] = 59.5/2.;
2597   dits[2] = 56.2;      // was 57
2598   gMC->Gsvolu("ICY2", "TUBE", idtmed[208], dits, 3);
2599
2600   // --- Define volumes of SDD cone ---------------------------------- 
2601
2602   dits[0] = 0;
2603   dits[1] = 360;
2604   dits[2] = 12;
2605   dits[3] = -59.7;
2606   dits[4] = 27;
2607   dits[5] = 28.6;
2608   dits[6] = -42.7;
2609   dits[7] = 10;
2610   dits[8] = 28.6;
2611   dits[9] = -34.65;
2612   dits[10] = 10;
2613   dits[11] = 28.6;
2614   dits[12] = -34.65;
2615   dits[13] = 10;
2616   dits[14] = 23.495;
2617   dits[15] = -23.7;
2618   dits[16] = 10;
2619   dits[17] = 23.495;
2620   dits[18] = -23.7;
2621   dits[19] = 10;
2622   dits[20] = 14.595;
2623   dits[21] = 23.7;
2624   dits[22] = 10;
2625   dits[23] = 14.595;
2626   dits[24] = 23.7;
2627   dits[25] = 10;
2628   dits[26] = 23.495;
2629   dits[27] = 34.65;
2630   dits[28] = 10;
2631   dits[29] = 23.495;
2632   dits[30] = 34.65;
2633   dits[31] = 10;
2634   dits[32] = 28.6;
2635   dits[33] = 42.7;
2636   dits[34] = 10;
2637   dits[35] = 28.6;
2638   dits[36] = 59.7;
2639   dits[37] = 27.2637;
2640   dits[38] = 28.6;             
2641   gMC->Gsvolu("IS02", "PCON", idtmed[204], dits, 39);
2642   
2643   dits[0] = 0;
2644   dits[1] = 360;
2645   dits[2] = 6;
2646   dits[3] = 38.65;
2647   dits[4] = 10.75;    
2648   dits[5] = 12.25;      
2649   dits[6] = 40.15;
2650   dits[7] = 10.75;
2651   dits[8] = 13.96;   
2652   dits[9] = 40.15;
2653   dits[10] = 12.46;  
2654   dits[11] = 13.96;
2655   dits[12] = 55.75;
2656   dits[13] = 27;
2657   dits[14] = 28.5;
2658   dits[15] = 55.75;
2659   dits[16] = 27;
2660   dits[17] = 28.5;
2661   dits[18] = 57.25;
2662   dits[19] = 27;
2663   dits[20] = 28.5;
2664 //  gMC->Gsvolu("I093", "PCON", idtmed[272], dits, 21);  // SDD cone
2665   gMC->Gsvolu("I093", "PCON", idtmed[287], dits, 21);  // SDD cone
2666
2667   // Redefined to make adding material for cables easier (FMD geometry)
2668   Double_t s1,s2,b1,b2;
2669   s1 = (dits[13]-dits[10])/(dits[12]-dits[9]); // Slope of conical section
2670   s2 = (dits[14]-dits[11])/(dits[12]-dits[9]); // Slope of conical section
2671   b1 = dits[13] - s1*dits[12]; // inside cone axis intersept
2672   b2 = dits[14] - s2*dits[12]; // outside cone axis intersept
2673   dits[0] = 0; //dits[0] = 0;
2674   dits[1] = 50; //dits[1] = 50;
2675   dits[2] = 4; //dits[2] = 3;
2676
2677   dits[4] = 14.0; //dits[4] = 14;            // r inner
2678   dits[5] = dits[4]; //dits[5] = 18.75;      // r outer
2679   dits[3] = (dits[4]-b2)/s2; //dits[3] = 39;  // Z
2680
2681   dits[7] = dits[4]; //dits[7] = 14;             // r inner
2682   dits[6] = (dits[7]-b1)/s1; //dits[6] = 46.7-3;  // Z
2683   dits[8] = s2*dits[6]+b2; //dits[8] = 18.75;     // r outer
2684
2685   dits[11] = 18.75; //dits[11] = 18.75;           // r outer
2686   dits[9] = (dits[11]-b2)/s2; //dits[9] = 51.45-3; // Z
2687   dits[10] = s1*dits[9]+b1; //dits[10] = 18.75;    // r inner
2688
2689   dits[13] = dits[11];         // r inner
2690   dits[14] = dits[11];         // r outer
2691   dits[12] = (dits[13]-b1)/s1;  // Z
2692 //  gMC->Gsvolu("I099", "PCON", idtmed[204], dits, 12); // SDD 3 cone hole
2693   gMC->Gsvolu("I099", "PCON", idtmed[285], dits, 15); // SDD 3 cone hole
2694
2695   dits[0] = 0; //dits[0] = 0;
2696   dits[1] = 25; //dits[1] = 25;
2697   dits[2] = 4; //dits[2] = 3;
2698
2699   dits[4] = 23.4; //dits[4] = 23.4;  // r inner
2700   dits[5] = dits[4]; //dits[5] = 26.4;  // r outer
2701   dits[3] = (dits[4]-b2)/s2; //dits[3] = 49;  // Z
2702
2703   dits[7] = dits[4]; //dits[7] = 23.4;  // r inner
2704   dits[6] = (dits[7]-b1)/s1; //dits[6] = 56.1-3;  // Z
2705   dits[8] = s2*dits[6]+b2; //dits[8] = 26.4;  // r outer
2706
2707   dits[11] = 26.4; //dits[11] = 26.4;  // r outer
2708   dits[9] = (dits[11]-b2)/s2; //dits[9] = 59.1-3;  // Z
2709   dits[10] = s1*dits[9]+b1; //dits[10] = 26.4;  // r inner
2710
2711   dits[13] = dits[11];         // r inner
2712   dits[14] = dits[11];         // r outer
2713   dits[12] = (dits[13]-b1)/s1;  // Z
2714 //  gMC->Gsvolu("I200", "PCON", idtmed[204], dits, 12); // SDD 4 cone hole
2715   gMC->Gsvolu("I200", "PCON", idtmed[285], dits, 15); // SDD 4 cone hole
2716     //Begin_Html
2717     /*
2718       <img src="http://www.Physics.ohio-state.edu/~nilsen/ITS/ITS_FMD_PMD_Geom.eps">
2719       </pre>
2720       <br clear=left>
2721       <font size=+2 color=blue>
2722       <p>SDD Support cone with other forward detectors. Shown in
2723           brown are a posible cabling layout.
2724       </font>
2725     */
2726     //End_Html
2727   dits[0] = 10.0;
2728   dits[1] = 10.5;
2729   dits[2] = 0.25;
2730   gMC->Gsvolu("I090", "TUBE", idtmed[224], dits, 3);  // SDD cylinder flange
2731
2732   dits[0] = 21.95;
2733   dits[1] = 22.95;    
2734   dits[2] = 1;
2735   gMC->Gsvolu("I098", "TUBE", idtmed[283], dits, 3);    // ladder support on layer 4
2736
2737   dits[0] = 13.1;    
2738   dits[1] = 14.1;    
2739   dits[2] = 1;
2740   gMC->Gsvolu("I097", "TUBE", idtmed[283], dits, 3);    // ladder support on layer 3
2741
2742   dits[0] = 1;
2743   dits[1] = 1;
2744   dits[2] = 7.74;
2745   gMC->Gsvolu("I202", "BOX ", idtmed[272], dits, 3);
2746
2747   dits[0] = 1;
2748   dits[1] = 1;
2749   dits[2] = 9.14;
2750   gMC->Gsvolu("I203", "BOX ", idtmed[272], dits, 3);
2751
2752   dits[0] = 21.95;
2753   dits[1] = 22.95;
2754   dits[2] = 1;
2755   gMC->Gsvolu("I095", "TUBE", idtmed[224], dits, 3);
2756
2757   dits[0] = 3;
2758   dits[1] = 2.7;
2759   dits[2] = 1;
2760   dits[3] = 0.63;
2761   gMC->Gsvolu("I096", "TRD1", idtmed[264], dits, 4);
2762
2763   dits[0] = 13.1;
2764   dits[1] = 14.1;
2765   dits[2] = 1;
2766   gMC->Gsvolu("I094", "TUBE", idtmed[224], dits, 3);
2767   
2768   
2769   // --- Define volumes of SSD cone ----------------------------------    
2770             
2771
2772   dits[0] = 0;
2773   dits[1] = 360;
2774   dits[2] = 12;
2775   dits[3] = -zmax;
2776   dits[4] = 46;         
2777   dits[5] = 49.25;       
2778   dits[6] = -61.2;
2779   dits[7] = 28.7;
2780   dits[8] = 49.25;       
2781   dits[9] = -57.5;
2782   dits[10] = 28.7;
2783   dits[11] = 49.25;      
2784   dits[12] = -57.5;
2785   dits[13] = 28.7;
2786   dits[14] = 43.5;
2787   dits[15] = -49.2;
2788   dits[16] = 28.7;
2789   dits[17] = 43.5;
2790   dits[18] = -49.2;
2791   dits[19] = 28.7;
2792   dits[20] = 36.85;
2793   dits[21] = 50.6;
2794   dits[22] = 28.7;
2795   dits[23] = 36.85;
2796   dits[24] = 50.6;
2797   dits[25] = 28.7;
2798   dits[26] = 43.5;
2799   dits[27] = 57.5;
2800   dits[28] = 28.7;
2801   dits[29] = 43.5;
2802   dits[30] = 57.5;
2803   dits[31] = 28.7;
2804   dits[32] = 49.25;      
2805   dits[33] = 61.2;
2806   dits[34] = 28.7;
2807   dits[35] = 49.25;      
2808   dits[36] = zmax;
2809   dits[37] = 46;      
2810   dits[38] = 49.25;      
2811   gMC->Gsvolu("IS01", "PCON", idtmed[204], dits, 39);   // SSD cone mother volume
2812   
2813   dits[0] = 0;
2814   dits[1] = 360;
2815   dits[2] = 6;
2816   dits[3] = -zmax;  
2817   dits[4] = 47.75;  
2818   dits[5] = 49.25;  
2819   dits[6] = -zmax+2.;  
2820   dits[7] = 47.75;  
2821   dits[8] = 49.25;   
2822   dits[9] = -71.2819;
2823   dits[10] = 46.75;   
2824   dits[11] = 49.0319;
2825   dits[12] = -57.25;   // was 58.5 
2826   dits[13] = 32.9681;
2827   dits[14] = 34.75;
2828   dits[15] = -57.25;   // was 58.5   
2829   dits[16] = 30;
2830   dits[17] = 34.75;
2831   dits[18] = -55.75;   // was 57 
2832   dits[19] = 30;     
2833   dits[20] = 32.25;    // was 31.5 
2834 //  gMC->Gsvolu("I212", "PCON", idtmed[272], dits, 21);  // SSD cone
2835   gMC->Gsvolu("I212", "PCON", idtmed[288], dits, 21);  // SSD cone
2836
2837   s1 = (dits[10]-dits[13])/(dits[9]-dits[12]); // Slope of conical section
2838   s2 = (dits[11]-dits[14])/(dits[9]-dits[12]); // Slope of conical section
2839   b1 = dits[13] - s1*dits[12]; // inside cone axis intersept
2840   b2 = dits[14] - s2*dits[12]; // outside cone axis intersept
2841   dits[0] = 0;
2842   dits[1] = 25;
2843   dits[2] = 4; //dits[2] = 5;
2844
2845   dits[4] = 45.50; //dits[4] = 45.5;  // r inner
2846   dits[5] = dits[4]; //dits[5] = 45.5;  // r outer
2847   dits[3] = (dits[4] - b1)/s1; //dits[3] = -zmax+3; // z
2848
2849   dits[8] = dits[4]; //dits[8] = 45.5;  // r outer
2850   dits[6] = (dits[8] - b2)/s2; //dits[6] = -69.7+3;; // z
2851   dits[7] = s1*dits[6] + b1; //dits[7] = 37;  // r inner
2852
2853   dits[10] = 37.00; //dits[10] = 37;  // r inner
2854   dits[9] = (dits[10]-b1)/s1; //dits[9] = -68.5+3;; // z
2855   dits[11] = s2*dits[9]+b2; //dits[11] = 45.5;  // r outer
2856
2857   dits[13] = dits[10]; //dits[13] = 37;  // r inner
2858   dits[14] = dits[13]; //dits[14] = 45.5;   // r outer
2859   dits[12] = (dits[14] - b2)/s2; //dits[12] = -68.5+4.8;; // z
2860 //  gMC->Gsvolu("I215", "PCON", idtmed[204], dits, 18);  // SSD cone hole 
2861   gMC->Gsvolu("I215", "PCON", idtmed[286], dits, 15);  // SSD cone hole 
2862     //Begin_Html
2863     /*
2864       <img src="http://www.Physics.ohio-state.edu/~nilsen/ITS/ITS_FMD_PMD_Geom.eps">
2865       </pre>
2866       <br clear=left>
2867       <font size=+2 color=blue>
2868       <p>SSD Support cone with other forward detectors. Shown in
2869           brown are a posible cabling layout.
2870       </font>
2871     */
2872     //End_Html
2873   
2874   dits[0] = 28.75;          
2875   dits[1] = 29.75;   
2876   dits[2] = 0.5;
2877   gMC->Gsvolu("I211", "TUBE", idtmed[224], dits, 3);   // SSD cylinder flange
2878   
2879   dits[0] = 35.8;   
2880   dits[1] = 36.8;   
2881   dits[2] = 1;
2882   gMC->Gsvolu("I217", "TUBE", idtmed[283], dits, 3);   // ladder support on layer 5 
2883   
2884   dits[0] = 41.4;  
2885   dits[1] = 42.4;  
2886   dits[2] = 1;
2887   gMC->Gsvolu("I219", "TUBE", idtmed[283], dits, 3);   // ladder support on layer 6
2888         
2889   dits[0] = 42.05+5.;       
2890   dits[1] = 42.55+5.;     
2891   dits[2] = 1.25;
2892   gMC->Gsvolu("I214", "TUBE", idtmed[224], dits, 3);   // layer 6 electronic support
2893                                                        // this will change after PPR
2894   dits[0] = 37.05+5.;   
2895   dits[1] = 37.55+5.;   
2896   dits[2] = 1.25;
2897   gMC->Gsvolu("I213", "TUBE", idtmed[224], dits, 3);   // layer 5 electronic support
2898                                                        // this will change after PPR
2899  
2900   dits[0] = 0;
2901   dits[1] = 3.2;
2902   dits[2] = 9;
2903   dits[3] = -14;
2904   dits[4] = 30.5;
2905   dits[5] = 33.5;
2906   dits[6] = -9.85;
2907   dits[7] = 30.5;
2908   dits[8] = 33.5;
2909   dits[9] = -9.85;
2910   dits[10] = 30.5;
2911   dits[11] = 43.45;
2912   dits[12] = -7.85;
2913   dits[13] = 30.5;
2914   dits[14] = 43.45;
2915   dits[15] = -7.85;
2916   dits[16] = 30.5;
2917   dits[17] = 36.5;
2918   dits[18] = -7;
2919   dits[19] = 30.5;
2920   dits[20] = 36.5;
2921   dits[21] = -4;
2922   dits[22] = 33.0173;
2923   dits[23] = 36.5;
2924   dits[24] = -4;
2925   dits[25] = 33.0173;
2926   dits[26] = 36.80;
2927   dits[27] = -2;
2928   dits[28] = 34.6955;
2929   dits[29] = 36.80;
2930   gMC->Gsvolu("I216", "PCON", idtmed[272], dits, 30); // supports (1-6) of the ladders
2931        
2932        
2933   // --- Place SPD (option 'a') volumes into their mother volume IT12
2934   
2935   // SPD - option 'a' 
2936   // (this is NOT the default)
2937
2938   if (option == 1) {
2939
2940      gMC->Gspos("I12A",5,"IT12",0.0,0.0,0.0,idrotm[238],"MANY");
2941      gMC->Gspos("I12A",6,"IT12",0.0,0.0,0.0,idrotm[236],"MANY");
2942      gMC->Gspos("I12A",7,"IT12",0.0,0.0,0.0,idrotm[239],"MANY");
2943      gMC->Gspos("I12A",8,"IT12",0.0,0.0,0.0,idrotm[233],"MANY");
2944      gMC->Gspos("I12A",9,"IT12",0.0,0.0,0.0,idrotm[240],"MANY");
2945      gMC->Gspos("I12A",10,"IT12",0.0,0.0,0.0,idrotm[241],"MANY");
2946      gMC->Gspos("I12A",2,"IT12",0.0,0.0,0.0,idrotm[242],"MANY");
2947      gMC->Gspos("I12A",3,"IT12",0.0,0.0,0.0,idrotm[234],"MANY");
2948      gMC->Gspos("I12A",4,"IT12",0.0,0.0,0.0,idrotm[243],"MANY");
2949      gMC->Gspos("I12A",1,"IT12",0.0,0.0,0.0,0,"MANY");
2950      deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  // see definition of idrotm[244]
2951           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);  // see definition of idrotm[244]
2952      gMC->Gspos("I10A",2,"I12A",0.203+deltax,3.8206+deltay,0.0,idrotm[244],"ONLY");       
2953      deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  // see definition of idrotm[245]
2954           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);  // see definition of idrotm[245]  
2955      gMC->Gspos("I10A",1,"I12A",1.4531+deltax,3.8152+deltay,0.0,idrotm[245],"ONLY");
2956      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  // see definition of idrotm[246]
2957           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);  // see definition of idrotm[246]  
2958      gMC->Gspos("I20A",1,"I12A",3.0174+deltax,6.5143+deltay,0.0,idrotm[246],"ONLY");
2959      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  // see definition of idrotm[247]
2960           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);  // see definition of idrotm[247] 
2961      gMC->Gspos("I20A",2,"I12A",1.9612+deltax,6.9062+deltay,0.0,idrotm[247],"ONLY");
2962      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  // see definition of idrotm[248]
2963           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);  // see definition of idrotm[248] 
2964      gMC->Gspos("I20A",3,"I12A",0.8567+deltax,7.1279+deltay,0.0,idrotm[248],"ONLY");
2965      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  // see definition of idrotm[249]
2966           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);  // see definition of idrotm[249] 
2967      gMC->Gspos("I20A",4,"I12A",-0.2689+deltax,7.1742+deltay,0.0,idrotm[249],"ONLY");
2968      gMC->Gspos("I123",2,"I12A",-0.2978,5.5196,0.0,idrotm[214],"ONLY");
2969      gMC->Gspos("I121",2,"I12A",-0.2385,4.1518,0.0,idrotm[213],"ONLY");
2970      gMC->Gspos("I122",2,"I12A",-0.2968,4.0207,0.0,idrotm[212],"ONLY");
2971      gMC->Gspos("I120",2,"I12A",-0.3672,3.9056,0.0,0,"ONLY");
2972      gMC->Gspos("I144",1,"I12A",-0.2538,3.8556,0.0,0,"ONLY");
2973      gMC->Gspos("I113",3,"I12A",0.1095,3.9056,0.0,0,"ONLY");
2974      gMC->Gspos("I143",1,"I12A",0.4365,3.8556,0.0,idrotm[236],"ONLY");
2975      gMC->Gspos("I142",1,"I12A",0.5136,3.9056,0.0,idrotm[235],"ONLY");
2976      gMC->Gspos("I141",1,"I12A",0.5636,3.9752,0.0,idrotm[201],"ONLY");
2977      gMC->Gspos("I140",1,"I12A",0.6336,4.0447,0.0,idrotm[234],"ONLY");
2978      gMC->Gspos("I139",1,"I12A",0.8297,4.0545,0.0,idrotm[207],"ONLY");
2979      gMC->Gspos("I113",5,"I12A",1.2575,3.9681,0.0,idrotm[207],"ONLY");
2980      gMC->Gspos("I138",1,"I12A",1.66,3.7848,0.0,idrotm[207],"ONLY");
2981      gMC->Gspos("I137",1,"I12A",1.8556,3.7738,0.0,idrotm[233],"ONLY");
2982      gMC->Gspos("I136",1,"I12A",2.6224,4.874,0.0,idrotm[232],"ONLY");
2983      gMC->Gspos("I135",1,"I12A",3.2967,6.0337,0.0,idrotm[231],"ONLY");
2984      gMC->Gspos("I134",1,"I12A",3.266,6.1636,0.0,idrotm[230],"ONLY");
2985      gMC->Gspos("I113",1,"I12A",2.9903,6.4144,0.0,idrotm[211],"ONLY");
2986      gMC->Gspos("I133",3,"I12A",2.7631,6.7627,0.0,idrotm[230],"ONLY");
2987      gMC->Gspos("I132",3,"I12A",2.62,6.8555,0.0,idrotm[229],"ONLY");
2988      gMC->Gspos("I131",3,"I12A",2.648,6.6023,0.0,idrotm[228],"ONLY");
2989      gMC->Gspos("I130",3,"I12A",2.6569,6.3431,0.0,idrotm[227],"ONLY");
2990      gMC->Gspos("I129",3,"I12A",2.3906,6.4819,0.0,idrotm[226],"ONLY");
2991      gMC->Gspos("I113",2,"I12A",1.9488,6.7998,0.0,idrotm[210],"ONLY");
2992      gMC->Gspos("I133",2,"I12A",1.6699,7.1085,0.0,idrotm[226],"ONLY");
2993      gMC->Gspos("I132",2,"I12A",1.5142,7.1777,0.0,idrotm[225],"ONLY");
2994      gMC->Gspos("I131",2,"I12A",1.5814,6.932,0.0,idrotm[224],"ONLY");
2995      gMC->Gspos("I130",2,"I12A",1.6308,6.6774,0.0,idrotm[223],"ONLY");
2996      gMC->Gspos("I129",2,"I12A",1.346,6.7728,0.0,idrotm[222],"ONLY");
2997      gMC->Gspos("I113",6,"I12A",0.8599,7.0176,0.0,idrotm[209],"ONLY");
2998      gMC->Gspos("I133",1,"I12A",0.5362,7.2789,0.0,idrotm[222],"ONLY");
2999      gMC->Gspos("I132",1,"I12A",0.3715,7.3228,0.0,idrotm[221],"ONLY");
3000      gMC->Gspos("I131",1,"I12A",0.4763,7.0907,0.0,idrotm[220],"ONLY");
3001      gMC->Gspos("I130",1,"I12A",0.5649,6.8469,0.0,idrotm[219],"ONLY");
3002      gMC->Gspos("I129",1,"I12A",0.2688,6.8966,0.0,idrotm[218],"ONLY");
3003      gMC->Gspos("I113",4,"I12A",-0.2497,7.0624,0.0,idrotm[208],"ONLY");
3004      gMC->Gspos("I128",1,"I12A",-0.6103,7.2698,0.0,idrotm[218],"ONLY");
3005      gMC->Gspos("I126",2,"I12A",-0.7799,7.2874,0.0,idrotm[217],"ONLY");
3006      gMC->Gspos("I125",2,"I12A",-0.6315,7.0883,0.0,idrotm[216],"ONLY");
3007      gMC->Gspos("I124",2,"I12A",-0.4965,6.8742,0.0,idrotm[215],"ONLY");
3008      gMC->Gspos("I103",3,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],-3.536,0,"ONLY");
3009      gMC->Gspos("I103",4,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],-10.708,0,"ONLY");
3010      gMC->Gspos("I103",1,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],10.708,0,"ONLY");
3011      gMC->Gspos("I103",2,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],3.536,0,"ONLY");
3012      gMC->Gspos("I105",1,"I10A",-0.05,0.01,-16.844,idrotm[237],"ONLY");
3013      gMC->Gspos("I105",2,"I10A",-0.05,0.01,16.844,0,"ONLY");
3014      gMC->Gspos("I104",1,"I10A",0.0,-di10a[1]+di104[1],0.0,0,"ONLY");
3015      gMC->Gspos("I1D3",3,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],-3.536,0,"ONLY");
3016      gMC->Gspos("I1D3",4,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],-10.708,0,"ONLY");
3017      gMC->Gspos("I1D3",1,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],10.708,0,"ONLY");
3018      gMC->Gspos("I1D3",2,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],3.536,0,"ONLY");
3019      gMC->Gspos("I105",3,"I20A",-0.05,0.01,-16.844,idrotm[237],"ONLY");
3020      gMC->Gspos("I105",4,"I20A",-0.05,0.01,16.844,0,"ONLY");
3021      gMC->Gspos("I104",2,"I20A",0.0,-di20a[1]+di104[1],0.0,0,"ONLY");
3022      gMC->Gspos("I112",2,"I113",0.25,0.02,0.0,idrotm[206],"ONLY");
3023      gMC->Gspos("I111",2,"I113",0.1318,-0.0008,0.0,idrotm[205],"ONLY");
3024      gMC->Gspos("I118",1,"I113",0.0,-0.0454,0.0,0,"ONLY");
3025      gMC->Gspos("I110",1,"I113",0.0,0.0492,0.0,0,"ONLY");
3026      gMC->Gspos("I114",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3027      gMC->Gspos("I115",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3028      gMC->Gspos("I115",2,"I113",-0.063,0.0042,0.0,idrotm[201],"ONLY");
3029      gMC->Gspos("I114",2,"I113",-0.063,0.0042,0.0,idrotm[201],"ONLY");
3030      gMC->Gspos("I116",1,"I113",0.0,0.0042,0.0,0,"ONLY");
3031      gMC->Gspos("I111",1,"I113",-0.1318,-0.0008,0.0,idrotm[204],"ONLY");
3032      gMC->Gspos("I112",1,"I113",-0.25,0.02,0.0,idrotm[203],"ONLY");
3033      gMC->Gspos("I101",1,"I103",-0.088,ddet1,0.0,0,"ONLY");
3034      gMC->Gspos("I102",1,"I103",0.0,-dchip1,-2.8,0,"ONLY");
3035      gMC->Gspos("I102",2,"I103",0.0,-dchip1,-1.4,0,"ONLY");
3036      gMC->Gspos("I102",3,"I103",0.0,-dchip1,0.0,0,"ONLY");
3037      gMC->Gspos("I102",4,"I103",0.0,-dchip1,1.4,0,"ONLY");
3038      gMC->Gspos("I102",5,"I103",0.0,-dchip1,2.8,0,"ONLY");
3039      gMC->Gspos("I1D1",1,"I1D3",-0.088,ddet2,0.0,0,"ONLY");
3040      gMC->Gspos("I1D2",1,"I1D3",0.0,-dchip2,-2.8,0,"ONLY");
3041      gMC->Gspos("I1D2",2,"I1D3",0.0,-dchip2,-1.4,0,"ONLY");
3042      gMC->Gspos("I1D2",3,"I1D3",0.0,-dchip2,0.0,0,"ONLY");
3043      gMC->Gspos("I1D2",4,"I1D3",0.0,-dchip2,1.4,0,"ONLY");
3044      gMC->Gspos("I1D2",5,"I1D3",0.0,-dchip2,2.8,0,"ONLY");
3045      gMC->Gspos("I117",1,"I116",0.0,0.0,0.0,0,"ONLY");
3046      gMC->Gspos("ITS1",1,"I101",0.0,0.0,0.0,0,"ONLY");
3047      gMC->Gspos("ITS2",1,"I1D1",0.0,0.0,0.0,0,"ONLY");
3048      gMC->Gspos("I651",1,"IT12",0.0,0.0,26.05,0,"ONLY");
3049      gMC->Gspos("I651",2,"IT12",0.0,0.0,-26.05,0,"ONLY");     
3050      gMC->Gspos("I650",16,"IT12",0.0,0.0,22.0,idrotm[1104],"MANY");
3051      gMC->Gspos("I650",20,"IT12",0.0,0.0,22.0,idrotm[1130],"MANY");
3052      gMC->Gspos("I650",18,"IT12",0.0,0.0,22.0,idrotm[1117],"MANY");
3053      gMC->Gspos("I650",1,"IT12",0.0,0.0,22.0,0,"MANY");
3054      gMC->Gspos("I650",4,"IT12",0.0,0.0,22.0,idrotm[1106],"MANY");
3055      gMC->Gspos("I650",6,"IT12",0.0,0.0,22.0,idrotm[1039],"MANY");
3056      gMC->Gspos("I650",8,"IT12",0.0,0.0,22.0,idrotm[1107],"MANY");
3057      gMC->Gspos("I650",10,"IT12",0.0,0.0,22.0,idrotm[1065],"MANY");
3058      gMC->Gspos("I650",12,"IT12",0.0,0.0,22.0,idrotm[1078],"MANY");
3059      gMC->Gspos("I650",14,"IT12",0.0,0.0,22.0,idrotm[1091],"MANY");
3060      gMC->Gspos("I650",19,"IT12",0.0,0.0,-22.0,idrotm[1108],"MANY");
3061      gMC->Gspos("I650",2,"IT12",0.0,0.0,-22.0,idrotm[1109],"MANY");
3062      gMC->Gspos("I650",3,"IT12",0.0,0.0,-22.0,idrotm[1110],"MANY");
3063      gMC->Gspos("I650",5,"IT12",0.0,0.0,-22.0,idrotm[1111],"MANY");
3064      gMC->Gspos("I650",7,"IT12",0.0,0.0,-22.0,idrotm[1112],"MANY");
3065      gMC->Gspos("I650",9,"IT12",0.0,0.0,-22.0,idrotm[1113],"MANY");
3066      gMC->Gspos("I650",11,"IT12",0.0,0.0,-22.0,idrotm[1114],"MANY");
3067      gMC->Gspos("I650",13,"IT12",0.0,0.0,-22.0,idrotm[1115],"MANY");
3068      gMC->Gspos("I650",15,"IT12",0.0,0.0,-22.0,idrotm[1116],"MANY");
3069      gMC->Gspos("I650",17,"IT12",0.0,0.0,-22.0,idrotm[1118],"MANY");
3070      gMC->Gspos("I666",1,"I650",0.0,0.0,0.25,idrotm[1003],"MANY");
3071      gMC->Gspos("I667",1,"I650",0.1102,0.9945,0.45,idrotm[1088],"ONLY");
3072      gMC->Gspos("I669",3,"I650",0.1883,4.0372,-3.2,0,"ONLY");
3073      gMC->Gspos("I671",3,"I650",0.1883,4.0372,0.6,0,"ONLY");
3074      gMC->Gspos("I669",2,"I650",1.3343,4.0609,-3.2,0,"ONLY");
3075      gMC->Gspos("I671",2,"I650",1.3343,4.0609,0.6,0,"ONLY");
3076      gMC->Gspos("I669",6,"I650",2.9567,6.1959,-3.2,idrotm[1089],"ONLY");
3077      gMC->Gspos("I671",6,"I650",2.9567,6.1959,0.6,idrotm[1089],"ONLY");
3078      gMC->Gspos("I669",5,"I650",1.9511,6.5822,-3.2,idrotm[1011],"ONLY");
3079      gMC->Gspos("I671",5,"I650",1.9511,6.5822,0.6,idrotm[1011],"ONLY");
3080      gMC->Gspos("I669",4,"I650",0.8974,6.8064,-3.2,idrotm[1090],"ONLY");
3081      gMC->Gspos("I671",4,"I650",0.8974,6.8064,0.6,idrotm[1090],"ONLY");
3082      gMC->Gspos("I669",1,"I650",-0.1784,6.863,-3.2,0,"ONLY");
3083      gMC->Gspos("I671",1,"I650",-0.1784,6.863,0.6,0,"ONLY");
3084      gMC->Gspos("I673",1,"I650",0.2173,4.8037,1.8,0,"ONLY");
3085      gMC->Gspos("I673",6,"I650",1.5093,4.5605,1.8,0,"ONLY");
3086      gMC->Gspos("I673",4,"I650",-0.173,6.2531,1.8,idrotm[1092],"ONLY");
3087      gMC->Gspos("I673",3,"I650",0.8073,6.2032,1.8,idrotm[1093],"ONLY");
3088      gMC->Gspos("I673",2,"I650",1.7678,6.0005,1.8,idrotm[1094],"ONLY");
3089      gMC->Gspos("I673",5,"I650",2.6847,5.6501,1.8,0,"ONLY");
3090      gMC->Gspos("I676",2,"I650",1.7618,5.2269,2.5,0,"ONLY");
3091      gMC->Gspos("I676",1,"I650",0.4018,5.5869,2.5,0,"ONLY");
3092      gMC->Gspos("I668",1,"I667",0.0,0.0,0.0,0,"ONLY");
3093      gMC->Gspos("I670",1,"I669",0.0,0.0,0.0,0,"ONLY");
3094      gMC->Gspos("I672",1,"I671",0.0,0.0,0.0,0,"ONLY");
3095      gMC->Gspos("I674",1,"I673",0.0,0.0,0.0,0,"MANY");
3096      gMC->Gspos("I675",1,"I673",0.0,0.0,-0.5,0,"ONLY");
3097      gMC->Gspos("I677",1,"I676",0.0,0.0,0.0,0,"MANY");
3098      gMC->Gspos("I678",1,"I676",0.0,0.0,-0.95,0,"ONLY");    
3099
3100   }
3101
3102
3103   // --- Place SPD (option 'b') volumes into their mother volume IT12
3104   
3105   // SPD - option 'b' 
3106   // (this is the default)
3107
3108   if (option == 2) {
3109
3110      gMC->Gspos("I12B",1,"IT12",0.0,0.0,0.0,0,"MANY");
3111      gMC->Gspos("I12B",8,"IT12",0.0,0.0,0.0,idrotm[233],"MANY");
3112      gMC->Gspos("I12B",7,"IT12",0.0,0.0,0.0,idrotm[244],"MANY");
3113      gMC->Gspos("I12B",6,"IT12",0.0,0.0,0.0,idrotm[236],"MANY");
3114      gMC->Gspos("I12B",2,"IT12",0.0,0.0,0.0,idrotm[245],"MANY");
3115      gMC->Gspos("I12B",3,"IT12",0.0,0.0,0.0,idrotm[234],"MANY");
3116      gMC->Gspos("I12B",4,"IT12",0.0,0.0,0.0,idrotm[246],"MANY");
3117      gMC->Gspos("I12B",5,"IT12",0.0,0.0,0.0,idrotm[247],"MANY");
3118      gMC->Gspos("I12B",9,"IT12",0.0,0.0,0.0,idrotm[248],"MANY");
3119      gMC->Gspos("I12B",10,"IT12",0.0,0.0,0.0,idrotm[249],"MANY");
3120      deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  // see definition of idrotm[238]
3121           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);  // see definition of idrotm[238]
3122      gMC->Gspos("I10B",2,"I12B",0.203+deltax,3.8206+deltay,0.0,idrotm[238],"ONLY");       
3123      deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  // see definition of idrotm[239]
3124           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);  // see definition of idrotm[239]  
3125      gMC->Gspos("I10B",1,"I12B",1.4531+deltax,3.8152+deltay,0.0,idrotm[239],"ONLY");
3126      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  // see definition of idrotm[240]
3127           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);  // see definition of idrotm[240]  
3128      gMC->Gspos("I20B",1,"I12B",3.0174+deltax,6.5143+deltay,0.0,idrotm[240],"ONLY");
3129      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  // see definition of idrotm[241]
3130           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);  // see definition of idrotm[241] 
3131      gMC->Gspos("I20B",2,"I12B",1.9612+deltax,6.9062+deltay,0.0,idrotm[241],"ONLY");
3132      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  // see definition of idrotm[242]
3133           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);  // see definition of idrotm[242] 
3134      gMC->Gspos("I20B",3,"I12B",0.8567+deltax,7.1279+deltay,0.0,idrotm[242],"ONLY");
3135      deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  // see definition of idrotm[243]
3136           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);  // see definition of idrotm[243] 
3137      gMC->Gspos("I20B",4,"I12B",-0.2689+deltax,7.1742+deltay,0.0,idrotm[243],"ONLY");
3138      gMC->Gspos("I123",1,"I12B",-0.2978,5.5196,0.0,idrotm[214],"ONLY");
3139      gMC->Gspos("I121",1,"I12B",-0.2385,4.1518,0.0,idrotm[213],"ONLY");
3140      gMC->Gspos("I122",1,"I12B",-0.2968,4.0207,0.0,idrotm[212],"ONLY");
3141      gMC->Gspos("I120",1,"I12B",-0.3672,3.9056,0.0,0,"ONLY");
3142      gMC->Gspos("I144",1,"I12B",-0.2538,3.8556,0.0,0,"ONLY");
3143      gMC->Gspos("I113",3,"I12B",0.1095,3.9056,0.0,0,"ONLY");
3144      gMC->Gspos("I143",1,"I12B",0.4365,3.8556,0.0,idrotm[236],"ONLY");
3145      gMC->Gspos("I142",1,"I12B",0.5136,3.9056,0.0,idrotm[235],"ONLY");
3146      gMC->Gspos("I141",1,"I12B",0.5636,3.9752,0.0,idrotm[237],"ONLY");
3147      gMC->Gspos("I140",1,"I12B",0.6336,4.0447,0.0,idrotm[234],"ONLY");
3148      gMC->Gspos("I139",1,"I12B",0.8297,4.0545,0.0,idrotm[207],"ONLY");
3149      gMC->Gspos("I113",5,"I12B",1.2575,3.9681,0.0,idrotm[207],"ONLY");
3150      gMC->Gspos("I138",1,"I12B",1.66,3.7848,0.0,idrotm[207],"ONLY");
3151      gMC->Gspos("I137",1,"I12B",1.8556,3.7738,0.0,idrotm[233],"ONLY");
3152      gMC->Gspos("I136",1,"I12B",2.6224,4.874,0.0,idrotm[232],"ONLY");
3153      gMC->Gspos("I135",1,"I12B",3.2967,6.0337,0.0,idrotm[231],"ONLY");
3154      gMC->Gspos("I134",1,"I12B",3.266,6.1636,0.0,idrotm[230],"ONLY");
3155      gMC->Gspos("I113",1,"I12B",2.9903,6.4144,0.0,idrotm[211],"ONLY");
3156      gMC->Gspos("I133",3,"I12B",2.7631,6.7627,0.0,idrotm[230],"ONLY");
3157      gMC->Gspos("I132",3,"I12B",2.62,6.8555,0.0,idrotm[229],"ONLY");
3158      gMC->Gspos("I131",3,"I12B",2.648,6.6023,0.0,idrotm[228],"ONLY");
3159      gMC->Gspos("I130",3,"I12B",2.6569,6.3431,0.0,idrotm[227],"ONLY");
3160      gMC->Gspos("I129",3,"I12B",2.3906,6.4819,0.0,idrotm[226],"ONLY");
3161      gMC->Gspos("I113",2,"I12B",1.9488,6.7998,0.0,idrotm[210],"ONLY");
3162      gMC->Gspos("I133",2,"I12B",1.6699,7.1085,0.0,idrotm[226],"ONLY");
3163      gMC->Gspos("I132",2,"I12B",1.5142,7.1777,0.0,idrotm[225],"ONLY");
3164      gMC->Gspos("I131",2,"I12B",1.5814,6.932,0.0,idrotm[224],"ONLY");
3165      gMC->Gspos("I130",2,"I12B",1.6308,6.6774,0.0,idrotm[223],"ONLY");
3166      gMC->Gspos("I129",2,"I12B",1.346,6.7728,0.0,idrotm[222],"ONLY");
3167      gMC->Gspos("I113",6,"I12B",0.8599,7.0176,0.0,idrotm[209],"ONLY");
3168      gMC->Gspos("I133",1,"I12B",0.5362,7.2789,0.0,idrotm[222],"ONLY");
3169      gMC->Gspos("I132",1,"I12B",0.3715,7.3228,0.0,idrotm[221],"ONLY");
3170      gMC->Gspos("I131",1,"I12B",0.4763,7.0907,0.0,idrotm[220],"ONLY");
3171      gMC->Gspos("I130",1,"I12B",0.5649,6.8469,0.0,idrotm[219],"ONLY");
3172      gMC->Gspos("I129",1,"I12B",0.2688,6.8966,0.0,idrotm[218],"ONLY");
3173      gMC->Gspos("I113",4,"I12B",-0.2497,7.0624,0.0,idrotm[208],"ONLY");
3174      gMC->Gspos("I128",1,"I12B",-0.6103,7.2698,0.0,idrotm[218],"ONLY");
3175      gMC->Gspos("I126",1,"I12B",-0.7799,7.2874,0.0,idrotm[217],"ONLY");
3176      gMC->Gspos("I125",1,"I12B",-0.6315,7.0883,0.0,idrotm[216],"ONLY");
3177      gMC->Gspos("I124",1,"I12B",-0.4965,6.8742,0.0,idrotm[215],"ONLY");
3178      gMC->Gspos("I105",3,"I10B",-0.05,-0.01,-16.844,idrotm[201],"ONLY");
3179      gMC->Gspos("I105",4,"I10B",-0.05,-0.01,16.844,0,"ONLY");
3180      gMC->Gspos("I107",2,"I10B",-0.0455,-di10b[1]+di107[1],3.536,0,"ONLY");
3181      gMC->Gspos("I107",1,"I10B",-0.0455,-di10b[1]+di107[1],10.708,0,"ONLY");
3182      gMC->Gspos("I107",4,"I10B",-0.0455,-di10b[1]+di107[1],-10.708,0,"ONLY");
3183      gMC->Gspos("I107",3,"I10B",-0.0455,-di10b[1]+di107[1],-3.536,0,"ONLY");
3184      gMC->Gspos("I109",1,"I10B",-0.138,0.015,-16.844,idrotm[201],"ONLY");
3185      gMC->Gspos("I109",2,"I10B",-0.138,0.015,16.844,0,"ONLY");
3186      gMC->Gspos("I108",1,"I10B",-0.138,-di10b[1]+2.*di107[1]+di108[1],0.0,0,"ONLY");
3187      gMC->Gspos("I105",1,"I20B",-0.05,-0.01,-16.844,idrotm[201],"ONLY");
3188      gMC->Gspos("I105",2,"I20B",-0.05,-0.01,16.844,0,"ONLY");
3189      gMC->Gspos("I1D7",2,"I20B",-0.0455,-di20b[1]+di1d7[1],3.536,0,"ONLY");
3190      gMC->Gspos("I1D7",1,"I20B",-0.0455,-di20b[1]+di1d7[1],10.708,0,"ONLY");
3191      gMC->Gspos("I1D7",4,"I20B",-0.0455,-di20b[1]+di1d7[1],-10.708,0,"ONLY");
3192      gMC->Gspos("I1D7",3,"I20B",-0.0455,-di20b[1]+di1d7[1],-3.536,0,"ONLY");
3193      gMC->Gspos("I109",3,"I20B",-0.138,0.015,-16.844,idrotm[201],"ONLY");
3194      gMC->Gspos("I109",4,"I20B",-0.138,0.015,16.844,0,"ONLY");
3195      gMC->Gspos("I108",2,"I20B",-0.138,-di20b[1]+2.*di1d7[1]+di108[1],0.0,0,"ONLY");
3196      gMC->Gspos("I112",2,"I113",0.25,0.02,0.0,idrotm[206],"ONLY");
3197      gMC->Gspos("I111",2,"I113",0.1318,-0.0008,0.0,idrotm[205],"ONLY");
3198      gMC->Gspos("I118",1,"I113",0.0,-0.0454,0.0,0,"ONLY");
3199      gMC->Gspos("I110",1,"I113",0.0,0.0492,0.0,0,"ONLY");
3200      gMC->Gspos("I114",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3201      gMC->Gspos("I115",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3202      gMC->Gspos("I115",2,"I113",-0.063,0.0042,0.0,idrotm[237],"ONLY");
3203      gMC->Gspos("I114",2,"I113",-0.063,0.0042,0.0,idrotm[237],"ONLY");
3204      gMC->Gspos("I116",1,"I113",0.0,0.0042,0.0,0,"ONLY");
3205      gMC->Gspos("I111",1,"I113",-0.1318,-0.0008,0.0,idrotm[204],"ONLY");
3206      gMC->Gspos("I112",1,"I113",-0.25,0.02,0.0,idrotm[203],"ONLY");
3207      gMC->Gspos("I106",1,"I107",0.0,-dchip1,-1.4,0,"ONLY");
3208      gMC->Gspos("I106",2,"I107",0.0,-dchip1,0.0,0,"ONLY");
3209      gMC->Gspos("I106",3,"I107",0.0,-dchip1,1.4,0,"ONLY");
3210      gMC->Gspos("I106",4,"I107",0.0,-dchip1,2.8,0,"ONLY");
3211      gMC->Gspos("I106",5,"I107",0.0,-dchip1,-2.8,0,"ONLY");
3212      gMC->Gspos("I101",1,"I107",0.0,ddet1,0.0,0,"ONLY");
3213      gMC->Gspos("I1D6",1,"I1D7",0.0,-dchip2,-1.4,0,"ONLY");
3214      gMC->Gspos("I1D6",2,"I1D7",0.0,-dchip2,0.0,0,"ONLY");
3215      gMC->Gspos("I1D6",3,"I1D7",0.0,-dchip2,1.4,0,"ONLY");
3216      gMC->Gspos("I1D6",4,"I1D7",0.0,-dchip2,2.8,0,"ONLY");
3217      gMC->Gspos("I1D6",5,"I1D7",0.0,-dchip2,-2.8,0,"ONLY");
3218      gMC->Gspos("I1D1",1,"I1D7",0.0,ddet2,0.0,0,"ONLY");
3219      gMC->Gspos("I117",1,"I116",0.0,0.0,0.0,0,"ONLY");
3220      gMC->Gspos("ITS1",1,"I101",0.0,0.0,0.0,0,"ONLY");
3221      gMC->Gspos("ITS2",1,"I1D1",0.0,0.0,0.0,0,"ONLY");
3222      gMC->Gspos("I651",1,"IT12",0.0,0.0,26.05,0,"ONLY");
3223      gMC->Gspos("I651",2,"IT12",0.0,0.0,-26.05,0,"ONLY");     
3224      gMC->Gspos("I650",16,"IT12",0.0,0.0,22.0,idrotm[1104],"MANY");
3225      gMC->Gspos("I650",20,"IT12",0.0,0.0,22.0,idrotm[1130],"MANY");
3226      gMC->Gspos("I650",18,"IT12",0.0,0.0,22.0,idrotm[1117],"MANY");
3227      gMC->Gspos("I650",1,"IT12",0.0,0.0,22.0,0,"MANY");
3228      gMC->Gspos("I650",4,"IT12",0.0,0.0,22.0,idrotm[1106],"MANY");
3229      gMC->Gspos("I650",6,"IT12",0.0,0.0,22.0,idrotm[1039],"MANY");
3230      gMC->Gspos("I650",8,"IT12",0.0,0.0,22.0,idrotm[1107],"MANY");
3231      gMC->Gspos("I650",10,"IT12",0.0,0.0,22.0,idrotm[1065],"MANY");
3232      gMC->Gspos("I650",12,"IT12",0.0,0.0,22.0,idrotm[1078],"MANY");
3233      gMC->Gspos("I650",14,"IT12",0.0,0.0,22.0,idrotm[1091],"MANY");
3234      gMC->Gspos("I650",19,"IT12",0.0,0.0,-22.0,idrotm[1108],"MANY");
3235      gMC->Gspos("I650",2,"IT12",0.0,0.0,-22.0,idrotm[1109],"MANY");
3236      gMC->Gspos("I650",3,"IT12",0.0,0.0,-22.0,idrotm[1110],"MANY");
3237      gMC->Gspos("I650",5,"IT12",0.0,0.0,-22.0,idrotm[1111],"MANY");
3238      gMC->Gspos("I650",7,"IT12",0.0,0.0,-22.0,idrotm[1112],"MANY");
3239      gMC->Gspos("I650",9,"IT12",0.0,0.0,-22.0,idrotm[1113],"MANY");
3240      gMC->Gspos("I650",11,"IT12",0.0,0.0,-22.0,idrotm[1114],"MANY");
3241      gMC->Gspos("I650",13,"IT12",0.0,0.0,-22.0,idrotm[1115],"MANY");
3242      gMC->Gspos("I650",15,"IT12",0.0,0.0,-22.0,idrotm[1116],"MANY");
3243      gMC->Gspos("I650",17,"IT12",0.0,0.0,-22.0,idrotm[1118],"MANY");
3244      gMC->Gspos("I666",1,"I650",0.0,0.0,0.25,idrotm[1003],"MANY");
3245      gMC->Gspos("I667",1,"I650",0.1102,0.9945,0.45,idrotm[1088],"ONLY");
3246      gMC->Gspos("I669",3,"I650",0.1883,4.0372,-3.2,0,"ONLY");
3247      gMC->Gspos("I671",3,"I650",0.1883,4.0372,0.6,0,"ONLY");
3248      gMC->Gspos("I669",2,"I650",1.3343,4.0609,-3.2,0,"ONLY");
3249      gMC->Gspos("I671",2,"I650",1.3343,4.0609,0.6,0,"ONLY");
3250      gMC->Gspos("I669",6,"I650",2.9567,6.1959,-3.2,idrotm[1089],"ONLY");
3251      gMC->Gspos("I671",6,"I650",2.9567,6.1959,0.6,idrotm[1089],"ONLY");
3252      gMC->Gspos("I669",5,"I650",1.9511,6.5822,-3.2,idrotm[1011],"ONLY");
3253      gMC->Gspos("I671",5,"I650",1.9511,6.5822,0.6,idrotm[1011],"ONLY");
3254      gMC->Gspos("I669",4,"I650",0.8974,6.8064,-3.2,idrotm[1090],"ONLY");
3255      gMC->Gspos("I671",4,"I650",0.8974,6.8064,0.6,idrotm[1090],"ONLY");
3256      gMC->Gspos("I669",1,"I650",-0.1784,6.863,-3.2,0,"ONLY");
3257      gMC->Gspos("I671",1,"I650",-0.1784,6.863,0.6,0,"ONLY");
3258      gMC->Gspos("I673",1,"I650",0.2173,4.8037,1.8,0,"ONLY");
3259      gMC->Gspos("I673",6,"I650",1.5093,4.5605,1.8,0,"ONLY");
3260      gMC->Gspos("I673",4,"I650",-0.173,6.2531,1.8,idrotm[1092],"ONLY");
3261      gMC->Gspos("I673",3,"I650",0.8073,6.2032,1.8,idrotm[1093],"ONLY");
3262      gMC->Gspos("I673",2,"I650",1.7678,6.0005,1.8,idrotm[1094],"ONLY");
3263      gMC->Gspos("I673",5,"I650",2.6847,5.6501,1.8,0,"ONLY");
3264      gMC->Gspos("I676",2,"I650",1.7618,5.2269,2.5,0,"ONLY");
3265      gMC->Gspos("I676",1,"I650",0.4018,5.5869,2.5,0,"ONLY");
3266      gMC->Gspos("I668",1,"I667",0.0,0.0,0.0,0,"ONLY");
3267      gMC->Gspos("I670",1,"I669",0.0,0.0,0.0,0,"ONLY");
3268      gMC->Gspos("I672",1,"I671",0.0,0.0,0.0,0,"ONLY");
3269      gMC->Gspos("I674",1,"I673",0.0,0.0,0.0,0,"MANY");
3270      gMC->Gspos("I675",1,"I673",0.0,0.0,-0.5,0,"ONLY");
3271      gMC->Gspos("I677",1,"I676",0.0,0.0,0.0,0,"MANY");
3272      gMC->Gspos("I678",1,"I676",0.0,0.0,-0.95,0,"ONLY");  
3273
3274   }
3275     
3276   // --- Place SDD volumes into their mother volume IT34
3277
3278   
3279   // -- position SDD detectors of ladder 3 / layer 3
3280
3281   gMC->Gspos("ITS3", 1,"I302",  0.0,      0.0,    0.0,    0,           "ONLY");
3282   ySDD = ySDDsep/2.+iI302dits[1];
3283   for (iSDD=0; iSDD<6; iSDD++) {
3284     gMC->Gspos("I302", iSDD+1, "I004",  0.0, ySDD,  zSDDlay3[iSDD], 0, "ONLY");
3285     ySDD = -ySDD;
3286   }
3287
3288   gMC->Gspos("I004", 1,"IT34", -3.2777,  14.3607, 0.0,   idrotm[321],"ONLY");
3289   gMC->Gspos("I004", 2,"IT34", -9.5581,  11.9855, 0.0,   idrotm[333],"ONLY");
3290   gMC->Gspos("I004", 3,"IT34",-13.2713,   6.3911, 0.0,   idrotm[336],"ONLY");
3291   gMC->Gspos("I004", 4,"IT34",-15.33,     0.0,    0.0,   idrotm[350],"ONLY");
3292   gMC->Gspos("I004", 5,"IT34",-13.2713,  -6.3911, 0.0,   idrotm[313],"ONLY");
3293   gMC->Gspos("I004", 6,"IT34", -9.5581, -11.9855, 0.0,   idrotm[311],"ONLY");
3294   gMC->Gspos("I004", 7,"IT34", -3.2777, -14.3607, 0.0,   idrotm[310],"ONLY");
3295   gMC->Gspos("I004", 8,"IT34",  3.4112, -14.9456, 0.0,   idrotm[386],"ONLY");
3296   gMC->Gspos("I004", 9,"IT34",  9.184,  -11.5164, 0.0,   idrotm[309],"ONLY");
3297   gMC->Gspos("I004",10,"IT34", 13.8119,  -6.6514, 0.0,   idrotm[308],"ONLY");
3298   gMC->Gspos("I004",11,"IT34", 14.73,     0.0,    0.0,   idrotm[356],"ONLY");
3299   gMC->Gspos("I004",12,"IT34", 13.8119,   6.6514, 0.0,   idrotm[307],"ONLY");
3300   gMC->Gspos("I004",13,"IT34",  9.184,   11.5164, 0.0,   idrotm[306],"ONLY");
3301   gMC->Gspos("I004",14,"IT34",  3.4113,  14.9456, 0.0,   idrotm[305],"ONLY");
3302
3303
3304   // -- position SDD detectors of ladder 4 / layer 4
3305
3306   gMC->Gspos("ITS4", 1,"I402",  0.0,      0.000,  0.0,   0,"ONLY");
3307   ySDD = -(ySDDsep/2.+iI402dits[1]);
3308   for (iSDD=0; iSDD<8; iSDD++) {
3309     gMC->Gspos("I402", iSDD+1, "I005",  0.0, ySDD,  zSDDlay4[iSDD], 0, "ONLY");
3310     ySDD = -ySDD;
3311   }
3312   
3313   gMC->Gspos("I005", 1,"IT34", -3.3629,  23.3895,-0.15,  idrotm[335],"ONLY");
3314   gMC->Gspos("I005", 2,"IT34",-10.0447,  21.9949,-0.15,  idrotm[332],"ONLY");
3315   gMC->Gspos("I005", 3,"IT34",-15.4744,  17.8584,-0.15,  idrotm[331],"ONLY");
3316   gMC->Gspos("I005", 4,"IT34",-20.3415,  13.0727,-0.15,  idrotm[366],"ONLY");
3317   gMC->Gspos("I005", 5,"IT34",-22.6728,   6.6573,-0.15,  idrotm[330],"ONLY");
3318   gMC->Gspos("I005", 6,"IT34",-24.18,     0.0,   -0.15,  idrotm[350],"ONLY");
3319   gMC->Gspos("I005", 7,"IT34",-22.6728,  -6.6573,-0.15,  idrotm[329],"ONLY");
3320   gMC->Gspos("I005", 8,"IT34",-20.3415, -13.0727,-0.15,  idrotm[328],"ONLY");
3321   gMC->Gspos("I005", 9,"IT34",-15.4744, -17.8584,-0.15,  idrotm[327],"ONLY");
3322   gMC->Gspos("I005",10,"IT34",-10.0447, -21.9949,-0.15,  idrotm[326],"ONLY");
3323   gMC->Gspos("I005",11,"IT34", -3.3629, -23.3895,-0.15,  idrotm[325],"ONLY");
3324   gMC->Gspos("I005",12,"IT34",  3.4412, -23.9339,-0.15,  idrotm[324],"ONLY");
3325   gMC->Gspos("I005",13,"IT34",  9.8163, -21.4946,-0.15,  idrotm[323],"ONLY");
3326   gMC->Gspos("I005",14,"IT34", 15.8345, -18.274, -0.15,  idrotm[322],"ONLY");
3327   gMC->Gspos("I005",15,"IT34", 19.8788, -12.7753,-0.15,  idrotm[320],"ONLY");
3328   gMC->Gspos("I005",16,"IT34", 23.2005,  -6.8123,-0.15,  idrotm[319],"ONLY");
3329   gMC->Gspos("I005",17,"IT34", 23.63,     0.0,   -0.15,  idrotm[318],"ONLY");
3330   gMC->Gspos("I005",18,"IT34", 23.2005,   6.8123,-0.15,  idrotm[317],"ONLY");
3331   gMC->Gspos("I005",19,"IT34", 19.8788,  12.7753,-0.15,  idrotm[316],"ONLY");
3332   gMC->Gspos("I005",20,"IT34", 15.8345,  18.274, -0.15,  idrotm[315],"ONLY");
3333   gMC->Gspos("I005",21,"IT34",  9.8163,  21.4946,-0.15,  idrotm[314],"ONLY");
3334   gMC->Gspos("I005",22,"IT34",  3.4412,  23.9339,-0.15,  idrotm[334],"ONLY");
3335
3336
3337   // -- build block of the SDD ladder frame holding the electronics
3338
3339   gMC->Gspos("I019", 1,"I018", -1.9,     -1.735,  0.0, idrotm[344], "ONLY");
3340   gMC->Gspos("I019", 2,"I018",  1.987,   -1.5843, 0.0, idrotm[343], "ONLY");
3341   gMC->Gspos("I019", 3,"I018", -0.087,    1.7066, 0.0, idrotm[342], "ONLY");
3342
3343   gMC->Gspos("I020", 1,"I018", -1.9782,  -1.569,  0.0, idrotm[342], "ONLY");
3344   gMC->Gspos("I020", 2,"I018",  1.8824,  -1.735,  0.0, idrotm[344], "ONLY");
3345   gMC->Gspos("I020", 3,"I018",  0.0958,   1.6913, 0.0, idrotm[343], "ONLY");
3346
3347   gMC->Gspos("I021", 1,"I018",  1.0761,   0.0835, 2.6008, idrotm[340], "ONLY");
3348   gMC->Gspos("I021", 2,"I018", -1.0761,   0.0835,-2.8008, idrotm[339], "ONLY");
3349   gMC->Gspos("I021", 3,"I018", -1.0761,   0.0835,-1.0492, idrotm[338], "ONLY");
3350   gMC->Gspos("I021", 4,"I018",  1.0761,   0.0835,-2.8008, idrotm[337], "ONLY");
3351   gMC->Gspos("I021", 5,"I018",  1.0761,   0.0835,-1.0492, idrotm[340], "ONLY");
3352   gMC->Gspos("I021", 6,"I018", -1.0761,   0.0835, 0.8492, idrotm[339], "ONLY");
3353   gMC->Gspos("I021", 7,"I018", -1.0761,   0.0835, 2.6008, idrotm[338], "ONLY");
3354   gMC->Gspos("I021", 8,"I018",  1.0761,   0.0835, 0.8492, idrotm[337], "ONLY");
3355
3356   gMC->Gspos("I022", 1,"I018",  0.0,     -1.79,   3.55,   idrotm[312], "ONLY");
3357   gMC->Gspos("I022", 2,"I018",  0.0,     -1.79,  -0.1,    idrotm[312], "ONLY");
3358
3359   gMC->Gspos("I023", 1,"I018",  0.0,     -1.79,   1.725,  idrotm[341], "ONLY");
3360   gMC->Gspos("I023", 2,"I018",  0.0,     -1.79,  -1.925,  idrotm[341], "ONLY");
3361
3362   gMC->Gspos("I033", 1,"I018",  1.8,     -1.75,   1.35,   0,           "MANY");
3363   gMC->Gspos("I033", 2,"I018", -1.8,     -1.75,  -2.65,   idrotm[345], "MANY");
3364   gMC->Gspos("I033", 3,"I018", -1.8,     -1.75,   1.35,   idrotm[345], "MANY");
3365   gMC->Gspos("I033", 4,"I018",  1.8,     -1.75,  -2.65,   0,           "MANY");
3366
3367   gMC->Gspos("I034", 1,"I018",  1.6,     -1.775,  1.35,   idrotm[312], "ONLY");
3368   gMC->Gspos("I034", 2,"I018", -1.6,     -1.775, -2.65,   idrotm[348], "ONLY");
3369   gMC->Gspos("I034", 3,"I018", -1.6,     -1.775,  1.35,   idrotm[348], "ONLY");
3370   gMC->Gspos("I034", 4,"I018",  1.6,     -1.775, -2.65,   idrotm[312], "ONLY");
3371
3372   gMC->Gspos("I035", 1,"I018",  1.7,     -0.55, iI018dits[2]-iI035dits[2], 0, "MANY");
3373   gMC->Gspos("I035", 2,"I018", -1.7,     -0.55, iI018dits[2]-iI035dits[2], 0, "MANY");
3374
3375   gMC->Gspos("I036", 1,"I018",  0.3087,   1.7191, 3.56,   idrotm[346], "ONLY");
3376   gMC->Gspos("I036", 2,"I018",  0.3087,   1.7191,-0.11,   idrotm[346], "ONLY");
3377   gMC->Gspos("I036", 3,"I018", -0.3087,   1.7191,-0.11,   idrotm[347], "ONLY");
3378   gMC->Gspos("I036", 4,"I018", -0.3087,   1.7191, 3.56,   idrotm[347], "ONLY");
3379
3380   gMC->Gspos("I037", 1,"I018",  iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 , "ONLY");
3381   gMC->Gspos("I037", 2,"I018", -iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 , "ONLY");
3382
3383   gMC->Gspos("I038", 1,"I018",  iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 , "ONLY");
3384   gMC->Gspos("I038", 2,"I018", -iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 , "ONLY");
3385
3386   gMC->Gspos("I040", 1,"I018",  1.9204,  -0.7118, 0.0, idrotm[346],"ONLY");
3387   gMC->Gspos("I040", 2,"I018", -1.9204,  -0.7118, 0.0, idrotm[347],"ONLY");
3388   gMC->Gspos("I041", 1,"I018",  iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], idrotm[346], "ONLY");
3389   gMC->Gspos("I041", 2,"I018", -iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], idrotm[347], "ONLY");
3390
3391
3392   // -- build block of the SDD electronics (heat bridge, chips, hybrid, anode microcable)
3393
3394   xI050 = iSDDCoolPipe[0]+iSDDCoolPipe[1]*sin30+iI050dits[1]/cos30+iI041dits[1];
3395   yI050 = 0;
3396   xI039 = -iSDDCoolPipe[1]/cos30;
3397   yI039 = -iI050dits[1]+iI039dits[1];
3398   gMC->Gspos("I039", 1,"I050",  xI039, yI039, 0.0, 0, "ONLY");
3399   xI042 = xI039+iI039dits[0]-xI042space-iI042dits[0];
3400   yI042 = yI039+iI039dits[1]+iI042dits[1];
3401   xI043 = xI039-iI039dits[0]+xI043space+iI043dits[0];
3402   yI043 = yI039+iI039dits[1]+iI043dits[1];
3403   zChipSpace = iI042dits[2];
3404   if (zChipSpace < iI043dits[2]) {
3405     zChipSpace = iI043dits[2];
3406   }
3407   zChipSpace = zChipSpace * 2;
3408   yI051space = (2*iI039dits[2] - 4*zChipSpace)/5;
3409   zchip = -iI039dits[2] + yI051space + zChipSpace/2.;
3410   for (ichip=0; ichip<4; ichip++) { 
3411     gMC->Gspos("I042", ichip+1, "I050", xI042, yI042, zchip, 0, "ONLY");
3412     gMC->Gspos("I043", ichip+1, "I050", xI043, yI043, zchip, 0, "ONLY");
3413     zchip += zChipSpace + yI051space;
3414   }
3415   xcap = 2*iI039dits[0]/5.;
3416   yI051 = yI039+iI039dits[1]+iI051dits[1];
3417   zI051 = -iI039dits[2] + yI051space/3.;
3418   icap = 1;
3419   for (ichip=0; ichip<5; ichip++) { 
3420     xI051 = xI039-iI039dits[0]+xcap;
3421     gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3422     zI051 += yI051space/3.;
3423     gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3424     xI051 += xcap;
3425     gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3426     xI051 += xcap;
3427     gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3428     xI051 += xcap;
3429     gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3430     zI051 -= yI051space/3.;
3431     if (ichip == 0) {
3432       gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3433     }
3434     zI051 += zChipSpace + yI051space;
3435   }
3436   xI052 = -iI050dits[0]+iI052dits[0];
3437   yI052 = yI051+iI051dits[1]+iI052dits[1];
3438   gMC->Gspos("I052", 1,"I050", xI052, yI052, 0.0, 0, "ONLY");
3439   xI044 = iI050dits[0]-iI044dits[3];
3440   yI044 = yI052+iI052dits[1]+iI044dits[2];
3441   gMC->Gspos("I044", 1,"I050", xI044, yI044, 0.0, idrotm[301], "ONLY");
3442   gMC->Gspos("I050", 1,"I018",  xI050,  yI050,  0.0, idrotm[346],"ONLY");
3443   gMC->Gspos("I050", 2,"I018", -xI050,  yI050,  0.0, idrotm[347],"ONLY");
3444
3445
3446   // -- build block of the SDD ladder frame at the end ladders
3447
3448   gMC->Gspos("I021",12,"I024",  1.0761,   0.0836,-0.1242, idrotm[340], "ONLY");
3449   gMC->Gspos("I021",11,"I024", -1.0761,   0.0836,-0.1242, idrotm[338], "ONLY");
3450   gMC->Gspos("I021",13,"I024", -1.0761,   0.0836,-1.8758, idrotm[339], "ONLY");
3451   gMC->Gspos("I021",14,"I024",  1.0761,   0.0836,-1.8758, idrotm[337], "ONLY");
3452
3453   gMC->Gspos("I022", 3,"I024",  0.0,     -1.7899, 0.825,  idrotm[312], "ONLY");
3454
3455   gMC->Gspos("I023", 3,"I024",  0.0,     -1.7899,-1.0,    idrotm[341], "ONLY");
3456
3457   gMC->Gspos("I025", 1,"I024", -1.9,     -1.7349, 0.0,    idrotm[344], "ONLY");
3458   gMC->Gspos("I025", 2,"I024",  1.987,   -1.5842, 0.0,    idrotm[343], "ONLY");
3459
3460   gMC->Gspos("I026", 1,"I024", -1.9782,  -1.5689, 0.0,    idrotm[342], "ONLY");
3461   gMC->Gspos("I026", 2,"I024",  1.8824,  -1.7349, 0.0,    idrotm[344], "ONLY");
3462
3463   gMC->Gspos("I029", 1,"I024", -0.087,    1.7067, iI029dits[2]-iI024dits[2], idrotm[342], "ONLY");
3464
3465   gMC->Gspos("I030", 1,"I024",  0.0958,   1.6914, iI030dits[2]-iI024dits[2], idrotm[343], "ONLY");
3466
3467   gMC->Gspos("I031", 1,"I024",  iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 ,"ONLY");
3468   gMC->Gspos("I031", 2,"I024", -iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 ,"ONLY");
3469
3470   gMC->Gspos("I032", 1,"I024",  iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 ,"ONLY");
3471   gMC->Gspos("I032", 2,"I024", -iSDDCoolPipe[0], iSDDCoolPipe[1], iSDDCoolPipe[2], 0 ,"ONLY");
3472
3473
3474   xI424 = iI028dits[0]/3.;
3475   yI424 = -iI028dits[1]+iI424dits[1];
3476   gMC->Gspos("I422", 1,"I421", 0.0, 0.0, 0.0, 0, "ONLY");
3477   gMC->Gspos("I423", 1,"I421", 0.0, 0.0, iI421dits[2]-iI423dits[2], 0, "ONLY");
3478   gMC->Gspos("I421", 1,"I420", 0.0, 0.0, 0.0, idrotm[312], "ONLY");
3479   gMC->Gspos("I420", 1,"I028", -iI028dits[0]/3., iI028dits[1]-iI420dits[1], 0.0, 0, "ONLY");
3480   gMC->Gspos("I424", 1,"I028", xI424, yI424, 0.0, 0, "ONLY");
3481   gMC->Gspos("I028", 1,"I024", 0.0, iI028dits[1]-iI024dits[1], iI024dits[2]-iI028dits[2], 0, "MANY");
3482
3483
3484   // -- build the SDD ladder 3
3485
3486   indI425 = 1;
3487   gMC->Gspos("I024", 1,"I047",  0.0,      0.0,   24.625, 0,           "ONLY");  
3488   gMC->Gspos("I018", 1,"I047",  0.0,      0.0,    3.65,  0,           "ONLY");
3489   gMC->Gspos("I018", 2,"I047",  0.0,      0.0,   10.95,  0,           "ONLY");
3490   gMC->Gspos("I018", 3,"I047",  0.0,      0.0,   18.25,  0,           "ONLY");
3491   gMC->Gspos("I018", 4,"I047",  0.0,      0.0,   -3.65,  0,           "ONLY");
3492   gMC->Gspos("I018", 5,"I047",  0.0,      0.0,  -10.95,  0,           "ONLY");
3493   gMC->Gspos("I018", 6,"I047",  0.0,      0.0,  -18.25,  0,           "ONLY");
3494   gMC->Gspos("I024", 2,"I047",  0.0,      0.0,  -24.625, idrotm[355], "ONLY");
3495   nameHV[0] = 'I';
3496   nameHV[1] = '3';
3497   nameHV[2] = '1';  
3498   nameHV[4] = '\0';
3499   for (iSDD=0; iSDD<3; iSDD++) {
3500     nameHV[3] = (Char_t)(48+iSDD+5);
3501     dits[0] = 1.350000;
3502     dits[1] = iI425dits[1];
3503     dits[2] = (iI047dits[2] - 2*iI024dits[2] - zSDDlay3[iSDD])/2.;
3504     gMC->Gsvolu(nameHV, "BOX ", idtmed[279], dits, 3);
3505     xHV = 0.0;
3506     yHV = -iI047dits[1] + (2*iSDD+1)*dits[1];
3507     zHV = iI047dits[2] - 2*iI024dits[2] - dits[2];
3508     gMC->Gspos(nameHV, 1,"I047", xHV, yHV,  zHV, 0, "ONLY");
3509     gMC->Gspos(nameHV, 2,"I047", xHV, yHV, -zHV, 0, "ONLY");
3510     gMC->Gspos("I425", indI425++,"I047",  xI424, yHV,   24.625, 0, "ONLY");
3511     gMC->Gspos("I425", indI425++,"I047", -xI424, yHV,  -24.625, 0, "ONLY");
3512   }
3513   nameLV[0] = 'I';
3514   nameLV[1] = '3';
3515   nameLV[2] = '1';  
3516   nameLV[4] = '\0';
3517   for (iSDD=0; iSDD<3; iSDD++) {
3518     nameLV[3] = (Char_t)(48+iSDD+1);
3519     dits[0] = 1.350000;
3520     dits[1] = 0.004423;
3521     dits[2] = (iI047dits[2] - (2*iSDD+1)*iI018dits[2] - iI039dits[2])/2.;
3522     gMC->Gsvolu(nameLV, "BOX ", idtmed[280], dits, 3);
3523     yLV = iI018dits[1] - dits[0]*cos30 - dits[1]*sin30;
3524     xLV = xI050 -
3525           TMath::Abs(yI050-yLV)*sin30/cos30 +
3526           (iI050dits[1]+(2*iSDD+1)*dits[1])/cos30;
3527     zLV = iI047dits[2] - dits[2];
3528     gMC->Gspos(nameLV, 1,"I047",  xLV, yLV,  zLV, idrotm[346], "ONLY");
3529     gMC->Gspos(nameLV, 2,"I047",  xLV, yLV, -zLV, idrotm[346], "ONLY");
3530     gMC->Gspos(nameLV, 3,"I047", -xLV, yLV,  zLV, idrotm[347], "ONLY");
3531     gMC->Gspos(nameLV, 4,"I047", -xLV, yLV, -zLV, idrotm[347], "ONLY");
3532   }
3533
3534
3535   // -- build the SDD ladder 4
3536
3537
3538   gMC->Gspos("I024", 3,"I048", -0.0001,   0.0,   31.925, 0,           "ONLY");
3539   gMC->Gspos("I018", 7,"I048", -0.0001,   0.0,   -3.65,  0,           "ONLY");
3540   gMC->Gspos("I018", 8,"I048", -0.0001,   0.0,    3.65,  0,           "ONLY");
3541   gMC->Gspos("I018", 9,"I048", -0.0001,   0.0,   10.95,  0,           "ONLY");
3542   gMC->Gspos("I018",10,"I048", -0.0001,   0.0,   18.25,  0,           "ONLY");
3543   gMC->Gspos("I018",11,"I048", -0.0001,   0.0,   25.55,  0,           "ONLY");
3544   gMC->Gspos("I018",12,"I048", -0.0001,   0.0,  -10.95,  0,           "ONLY");
3545   gMC->Gspos("I018",13,"I048", -0.0001,   0.0,  -18.25,  0,           "ONLY");
3546   gMC->Gspos("I018",14,"I048", -0.0001,   0.0,  -25.55,  0,           "ONLY");
3547   gMC->Gspos("I024", 4,"I048", -0.0001,   0.0,  -31.925, idrotm[355], "ONLY");
3548   nameHV[0] = 'I';
3549   nameHV[1] = '4';
3550   nameHV[2] = '1';  
3551   nameHV[4] = '\0';  
3552   for (iSDD=0; iSDD<4; iSDD++) {
3553     nameHV[3] = (Char_t)(48+iSDD+5);
3554     dits[0] = 1.350000;
3555     dits[1] = iI425dits[1];
3556     dits[2] = (iI048dits[2] - 2*iI024dits[2] - zSDDlay4[iSDD])/2.;
3557     gMC->Gsvolu(nameHV, "BOX ", idtmed[279], dits, 3);
3558     xHV = -0.0001;
3559     yHV = -iI048dits[1] + (2*iSDD+1)*dits[1];
3560     zHV = iI048dits[2] - 2*iI024dits[2] - dits[2];
3561     gMC->Gspos(nameHV, 1,"I048", xHV, yHV,  zHV, 0, "ONLY");
3562     gMC->Gspos(nameHV, 2,"I048", xHV, yHV, -zHV, 0, "ONLY");
3563     gMC->Gspos("I425", indI425++,"I048",  xI424, yHV,   31.925, 0, "ONLY");
3564     gMC->Gspos("I425", indI425++,"I048", -xI424, yHV,  -31.925, 0, "ONLY");
3565   }
3566   nameLV[0] = 'I';
3567   nameLV[1] = '4';
3568   nameLV[2] = '1';  
3569   nameLV[4] = '\0';
3570   for (iSDD=0; iSDD<4; iSDD++) {
3571     nameLV[3] = (Char_t)(48+iSDD+1);
3572     dits[0] = 1.350000;
3573     dits[1] = 0.004423;
3574     dits[2] = (iI048dits[2] - (2*iSDD+1)*iI018dits[2] - iI039dits[2])/2.;
3575     gMC->Gsvolu(nameLV, "BOX ", idtmed[280], dits, 3);
3576     yLV = iI018dits[1] - dits[0]*cos30 - dits[1]*sin30;
3577     xLV = xI050 -
3578           TMath::Abs(yI050-yLV)*sin30/cos30 +
3579           (iI050dits[1]+(2*iSDD+1)*dits[1])/cos30;
3580     zLV = iI048dits[2] - dits[2];
3581     gMC->Gspos(nameLV, 1,"I048",  xLV, yLV,  zLV, idrotm[346], "ONLY");
3582     gMC->Gspos(nameLV, 2,"I048",  xLV, yLV, -zLV, idrotm[346], "ONLY");
3583     gMC->Gspos(nameLV, 3,"I048", -xLV, yLV,  zLV, idrotm[347], "ONLY");
3584     gMC->Gspos(nameLV, 4,"I048", -xLV, yLV, -zLV, idrotm[347], "ONLY");
3585   }
3586
3587
3588   // -- build the SDD barrel (layers 3 and 4)
3589
3590   gMC->Gspos("I047", 1,"IT34", -3.7528,  16.4422, 0.0,   idrotm[321], "ONLY");
3591   gMC->Gspos("I047", 2,"IT34",-10.8892,  13.6547, 0.0,   idrotm[333], "ONLY");
3592   gMC->Gspos("I047", 3,"IT34",-15.1948,   7.3175, 0.0,   idrotm[336], "ONLY");
3593   gMC->Gspos("I047", 4,"IT34",-17.465,    0.0,    0.0,   idrotm[350], "ONLY");
3594   gMC->Gspos("I047", 5,"IT34",-15.1948,  -7.3174, 0.0,   idrotm[313], "ONLY");
3595   gMC->Gspos("I047", 6,"IT34",-10.8893, -13.6547, 0.0,   idrotm[311], "ONLY");
3596   gMC->Gspos("I047", 7,"IT34", -3.7528, -16.4422, 0.0,   idrotm[310], "ONLY");
3597   gMC->Gspos("I047", 8,"IT34",  3.8863, -17.0271, 0.0,   idrotm[386], "ONLY");
3598   gMC->Gspos("I047", 9,"IT34", 10.5152, -13.1856, 0.0,   idrotm[309], "ONLY");
3599   gMC->Gspos("I047",10,"IT34", 15.7354,  -7.5778, 0.0,   idrotm[308], "ONLY");
3600   gMC->Gspos("I047",11,"IT34", 16.865,    0.0,    0.0,   idrotm[356], "ONLY");
3601   gMC->Gspos("I047",12,"IT34", 15.7354,   7.5778, 0.0,   idrotm[307], "ONLY");
3602   gMC->Gspos("I047",13,"IT34", 10.5152,  13.1856, 0.0,   idrotm[306], "ONLY");
3603   gMC->Gspos("I047",14,"IT34",  3.8863,  17.0271, 0.0,   idrotm[305], "ONLY");
3604
3605   gMC->Gspos("I048", 1,"IT34", -3.6667,  25.5027, 0.0,   idrotm[335], "ONLY");
3606   gMC->Gspos("I048", 2,"IT34",-10.9317,  23.937,  0.0,   idrotm[332], "ONLY");
3607   gMC->Gspos("I048", 3,"IT34",-16.8725,  19.4719, 0.0,   idrotm[331], "ONLY");
3608   gMC->Gspos("I048", 4,"IT34",-22.1376,  14.227,  0.0,   idrotm[366], "ONLY");
3609   gMC->Gspos("I048", 5,"IT34",-24.7213,   7.2588, 0.0,   idrotm[330], "ONLY");
3610   gMC->Gspos("I048", 6,"IT34",-26.315,    0.0,    0.0,   idrotm[350], "ONLY");
3611   gMC->Gspos("I048", 7,"IT34",-24.7213,  -7.2588, 0.0,   idrotm[329], "ONLY");
3612   gMC->Gspos("I048", 8,"IT34",-22.1376, -14.227,  0.0,   idrotm[328], "ONLY");
3613   gMC->Gspos("I048", 9,"IT34",-16.8725, -19.4719, 0.0,   idrotm[327], "ONLY");
3614   gMC->Gspos("I048",10,"IT34",-10.9316, -23.937,  0.0,   idrotm[326], "ONLY");
3615   gMC->Gspos("I048",11,"IT34", -3.6667, -25.5027, 0.0,   idrotm[325], "ONLY");
3616   gMC->Gspos("I048",12,"IT34",  3.745,  -26.0472, 0.0,   idrotm[324], "ONLY");
3617   gMC->Gspos("I048",13,"IT34", 10.7032, -23.4367, 0.0,   idrotm[323], "ONLY");
3618   gMC->Gspos("I048",14,"IT34", 17.2327, -19.8876, 0.0,   idrotm[322], "ONLY");
3619   gMC->Gspos("I048",15,"IT34", 21.6749, -13.9296, 0.0,   idrotm[320], "ONLY");
3620   gMC->Gspos("I048",16,"IT34", 25.2491,  -7.4138, 0.0,   idrotm[319], "ONLY");
3621   gMC->Gspos("I048",17,"IT34", 25.765,    0.0,    0.0,   idrotm[318], "ONLY");
3622   gMC->Gspos("I048",18,"IT34", 25.2491,   7.4138, 0.0,   idrotm[317], "ONLY");
3623   gMC->Gspos("I048",19,"IT34", 21.6749,  13.9296, 0.0,   idrotm[316], "ONLY");
3624   gMC->Gspos("I048",20,"IT34", 17.2327,  19.8876, 0.0,   idrotm[315], "ONLY");
3625   gMC->Gspos("I048",21,"IT34", 10.7032,  23.4367, 0.0,   idrotm[314], "ONLY");
3626   gMC->Gspos("I048",22,"IT34", 3.745,    26.0472, 0.0,   idrotm[334], "ONLY");
3627
3628   
3629   // --- Place SSD volumes into their mother volume IT56  
3630
3631
3632   gMC->Gspos("I570",14,"IT56",-28.0681,-36.0619,-0.27,idrotm[566],"ONLY"); 
3633   gMC->Gspos("I570",15,"IT56",-21.677,-40.0556,-0.27,idrotm[567],"ONLY");
3634   gMC->Gspos("I570",16,"IT56",-14.838,-43.2217,-0.27,idrotm[568],"ONLY");
3635   gMC->Gspos("I570",17,"IT56",-7.4965,-44.9238,-0.27,idrotm[569],"ONLY");
3636   gMC->Gspos("I570",18,"IT56",-0.27,-45.6977,-0.27,idrotm[533],"ONLY");
3637   gMC->Gspos("I570",19,"IT56",7.4965,-44.9238,-0.27,idrotm[534],"ONLY");
3638   gMC->Gspos("I570",20,"IT56",14.838,-43.2217,-0.27,idrotm[535],"ONLY");
3639   gMC->Gspos("I570",21,"IT56",21.677,-40.0556,-0.27,idrotm[623],"ONLY");
3640   gMC->Gspos("I570",22,"IT56",28.0681,-36.0619,-0.27,idrotm[537],"ONLY");
3641   gMC->Gspos("I570",23,"IT56",33.5085,-30.8468,-0.27,idrotm[538],"ONLY");
3642   gMC->Gspos("I570",24,"IT56",38.2566,-24.9943,-0.27,idrotm[539],"ONLY");
3643   gMC->Gspos("I570",25,"IT56",41.7089,-18.2952,-0.27,idrotm[540],"ONLY");
3644   gMC->Gspos("I570",26,"IT56",44.2994,-11.2181,-0.27,idrotm[541],"ONLY");
3645   gMC->Gspos("I570",27,"IT56",45.3894,-3.7611,-0.27,idrotm[542],"ONLY");
3646   gMC->Gspos("I570",28,"IT56",45.5416,3.7737,-0.27,idrotm[543],"ONLY");
3647   gMC->Gspos("I570",29,"IT56",44.1513,11.1806,-0.27,idrotm[544],"ONLY");
3648   gMC->Gspos("I570",30,"IT56",41.8487,18.3566,-0.27,idrotm[545],"ONLY");
3649   gMC->Gspos("I570",31,"IT56",38.1287,24.9107,-0.27,idrotm[546],"ONLY");
3650   gMC->Gspos("I570",32,"IT56",33.6209,30.9502,-0.27,idrotm[547],"ONLY");
3651   gMC->Gspos("I570",33,"IT56",27.9743,35.9414,-0.27,idrotm[548],"ONLY");
3652   gMC->Gspos("I570",34,"IT56",21.7497,40.1899,-0.27,idrotm[549],"ONLY");
3653   gMC->Gspos("I570",35,"IT56",14.7884,43.0772,-0.27,idrotm[550],"ONLY");
3654   gMC->Gspos("I570",36,"IT56",7.5216,45.0744,-0.27,idrotm[551],"ONLY");
3655   gMC->Gspos("I570",37,"IT56",0.00,45.545,-0.27,0,"ONLY");
3656   gMC->Gspos("I570",38,"IT56",-7.5216,45.0744,-0.27,idrotm[552],"ONLY");
3657   gMC->Gspos("I570",1,"IT56",-14.7884,43.0772,-0.27,idrotm[553],"ONLY");
3658   gMC->Gspos("I570",2,"IT56",-21.7497,40.1899,-0.27,idrotm[620],"ONLY");
3659   gMC->Gspos("I570",3,"IT56",-27.9743,35.9414,-0.27,idrotm[555],"ONLY");
3660   gMC->Gspos("I570",4,"IT56",-33.6209,30.9502,-0.27,idrotm[556],"ONLY");
3661   gMC->Gspos("I570",5,"IT56",-38.1287,24.9108,-0.27,idrotm[557],"ONLY");
3662   gMC->Gspos("I570",6,"IT56",-41.8487,18.3566,-0.27,idrotm[558],"ONLY");
3663   gMC->Gspos("I570",7,"IT56",-44.1513,11.1806,-0.27,idrotm[559],"ONLY");
3664   gMC->Gspos("I570",8,"IT56",-45.5416,3.7737,-0.27,idrotm[560],"ONLY");
3665   gMC->Gspos("I570",9,"IT56",-45.3894,-3.7611,-0.27,idrotm[561],"ONLY");
3666   gMC->Gspos("I570",10,"IT56",-44.2994,-11.2181,-0.27,idrotm[562],"ONLY");
3667   gMC->Gspos("I570",11,"IT56",-41.7089,-18.2952,-0.27,idrotm[563],"ONLY");
3668   gMC->Gspos("I570",12,"IT56",-38.2566,-24.9943,-0.27,idrotm[564],"ONLY");
3669   gMC->Gspos("I570",13,"IT56",-33.5086,-30.8468,-0.27,idrotm[565],"ONLY");
3670   gMC->Gspos("I569",8,"IT56",-43.5484,3.6085,0.0,idrotm[560],"ONLY");
3671   gMC->Gspos("I569",9,"IT56",-43.3963,-3.5959,0.0,idrotm[561],"ONLY");
3672   gMC->Gspos("I569",10,"IT56",-42.3606,-10.7271,0.0,idrotm[562],"ONLY");
3673   gMC->Gspos("I569",11,"IT56",-39.8773,-17.4918,0.0,idrotm[563],"ONLY");
3674   gMC->Gspos("I569",12,"IT56",-36.5823,-23.9004,0.0,idrotm[564],"ONLY");
3675   gMC->Gspos("I569",13,"IT56",-32.0371,-29.4922,0.0,idrotm[565],"ONLY");
3676   gMC->Gspos("I569",14,"IT56",-26.8397,-34.4836,0.0,idrotm[566],"ONLY");
3677   gMC->Gspos("I569",15,"IT56",-20.7251,-38.2967,0.0,idrotm[567],"ONLY");
3678   gMC->Gspos("I569",16,"IT56",-14.1886,-41.33,0.0,idrotm[568],"ONLY");
3679   gMC->Gspos("I569",17,"IT56",-7.1673,-42.9511,0.0,idrotm[569],"ONLY");
3680   gMC->Gspos("I569",18,"IT56",0.0,-43.6977,0.0,idrotm[533],"ONLY");
3681   gMC->Gspos("I569",19,"IT56",7.1673,-42.9511,0.0,idrotm[534],"ONLY");
3682   gMC->Gspos("I569",20,"IT56",14.1886,-41.33,0.0,idrotm[535],"ONLY");
3683   gMC->Gspos("I569",21,"IT56",20.7251,-38.2967,0.0,idrotm[623],"ONLY");
3684   gMC->Gspos("I569",22,"IT56",26.8397,-34.4836,0.0,idrotm[537],"ONLY");
3685   gMC->Gspos("I569",23,"IT56",32.0371,-29.4922,0.0,idrotm[538],"ONLY");
3686   gMC->Gspos("I569",24,"IT56",36.5822,-23.9004,0.0,idrotm[539],"ONLY");
3687   gMC->Gspos("I569",25,"IT56",39.8773,-17.4918,0.0,idrotm[540],"ONLY");
3688   gMC->Gspos("I569",26,"IT56",42.3606,-10.7272,0.0,idrotm[541],"ONLY");
3689   gMC->Gspos("I569",27,"IT56",43.3963,-3.5959,0.0,idrotm[542],"ONLY");
3690   gMC->Gspos("I569",28,"IT56",43.5484,3.6085,0.0,idrotm[543],"ONLY");
3691   gMC->Gspos("I569",29,"IT56",42.2125,10.6897,0.0,idrotm[544],"ONLY");
3692   gMC->Gspos("I569",30,"IT56",40.0172,17.5532,0.0,idrotm[545],"ONLY");
3693   gMC->Gspos("I569",31,"IT56",36.4544,23.8169,0.0,idrotm[546],"ONLY");
3694   gMC->Gspos("I569",32,"IT56",32.1494,29.5956,0.0,idrotm[547],"ONLY");
3695   gMC->Gspos("I569",33,"IT56",26.7459,34.3631,0.0,idrotm[548],"ONLY");
3696   gMC->Gspos("I569",34,"IT56",20.7978,38.431,0.0,idrotm[549],"ONLY");
3697   gMC->Gspos("I569",35,"IT56",14.139,41.1856,0.0,idrotm[550],"ONLY");
3698   gMC->Gspos("I569",36,"IT56",7.1924,43.1017,0.0,idrotm[551],"ONLY");
3699   gMC->Gspos("I569",37,"IT56",0.0,43.545,0.0,0,"ONLY");
3700   gMC->Gspos("I569",38,"IT56",-7.1924,43.1017,0.0,idrotm[552],"ONLY");
3701   gMC->Gspos("I569",1,"IT56",-14.139,41.1856,0.0,idrotm[553],"ONLY");
3702   gMC->Gspos("I569",2,"IT56",-20.7978,38.431,0.0,idrotm[620],"ONLY");
3703   gMC->Gspos("I569",3,"IT56",-26.7459,34.3631,0.0,idrotm[555],"ONLY");
3704   gMC->Gspos("I569",4,"IT56",-32.1494,29.5956,0.0,idrotm[556],"ONLY");
3705   gMC->Gspos("I569",5,"IT56",-36.4544,23.8169,0.0,idrotm[557],"ONLY");
3706   gMC->Gspos("I569",6,"IT56",-40.0172,17.5532,0.0,idrotm[558],"ONLY");
3707   gMC->Gspos("I569",7,"IT56",-42.2125,10.6897,0.0,idrotm[559],"ONLY");
3708   gMC->Gspos("I571",15,"IT56",-21.2916,-34.387,0.0,idrotm[501],"ONLY");
3709   gMC->Gspos("I571",14,"IT56",-27.351,-30.0026,0.0,idrotm[503],"ONLY");
3710   gMC->Gspos("I571",13,"IT56",-32.2758,-24.3735,0.0,idrotm[504],"ONLY");
3711   gMC->Gspos("I571",12,"IT56",-36.3422,-18.0963,0.0,idrotm[505],"ONLY");
3712   gMC->Gspos("I571",11,"IT56",-38.901,-11.0683,0.0,idrotm[506],"ONLY");
3713   gMC->Gspos("I571",10,"IT56",-40.4252,-3.7459,0.0,idrotm[507],"ONLY");
3714   gMC->Gspos("I571",9,"IT56",-40.2725,3.7318,0.0,idrotm[508],"ONLY");
3715   gMC->Gspos("I571",8,"IT56",-39.0486,11.1103,0.0,idrotm[509],"ONLY");
3716   gMC->Gspos("I571",7,"IT56",-36.2049,18.0279,0.0,idrotm[510],"ONLY");
3717   gMC->Gspos("I571",6,"IT56",-32.3982,24.466,0.0,idrotm[511],"ONLY");
3718   gMC->Gspos("I571",5,"IT56",-27.2476,29.8892,0.0,idrotm[512],"ONLY");
3719   gMC->Gspos("I571",4,"IT56",-21.3723,34.5175,0.0,idrotm[513],"ONLY");
3720   gMC->Gspos("I571",3,"IT56",-14.6104,37.7138,0.0,idrotm[653],"ONLY");
3721   gMC->Gspos("I571",2,"IT56",-7.4599,39.9072,0.0,idrotm[514],"ONLY");
3722   gMC->Gspos("I571",1,"IT56",0.0,40.445,0.0,0,"ONLY");
3723   gMC->Gspos("I571",34,"IT56",7.46,39.9071,0.0,idrotm[515],"ONLY");
3724   gMC->Gspos("I571",33,"IT56",14.6104,37.7138,0.0,idrotm[516],"ONLY");
3725   gMC->Gspos("I571",32,"IT56",21.3723,34.5175,0.0,idrotm[517],"ONLY");
3726   gMC->Gspos("I571",31,"IT56",27.2476,29.8892,0.0,idrotm[518],"ONLY");
3727   gMC->Gspos("I571",30,"IT56",32.3983,24.466,0.0,idrotm[519],"ONLY");
3728   gMC->Gspos("I571",29,"IT56",36.2049,18.0279,0.0,idrotm[520],"ONLY");
3729   gMC->Gspos("I571",28,"IT56",39.0486,11.1103,0.0,idrotm[521],"ONLY");
3730   gMC->Gspos("I571",27,"IT56",40.2725,3.7318,0.0,idrotm[522],"ONLY");
3731   gMC->Gspos("I571",26,"IT56",40.4252,-3.746,0.0,idrotm[523],"ONLY");
3732   gMC->Gspos("I571",25,"IT56",38.901,-11.0683,0.0,idrotm[524],"ONLY");
3733   gMC->Gspos("I571",24,"IT56",36.3422,-18.0963,0.0,idrotm[525],"ONLY");
3734   gMC->Gspos("I571",23,"IT56",32.2758,-24.3736,0.0,idrotm[526],"ONLY");
3735   gMC->Gspos("I571",22,"IT56",27.351,-30.0026,0.0,idrotm[527],"ONLY");
3736   gMC->Gspos("I571",21,"IT56",21.2915,-34.387,0.0,idrotm[528],"ONLY");
3737   gMC->Gspos("I571",20,"IT56",14.6658,-37.8569,0.0,idrotm[618],"ONLY");
3738   gMC->Gspos("I571",19,"IT56",7.4317,-39.7563,0.0,idrotm[529],"ONLY");
3739   gMC->Gspos("I571",18,"IT56",0.0,-40.5984,0.0,idrotm[533],"ONLY");
3740   gMC->Gspos("I571",17,"IT56",-7.4318,-39.7563,0.0,idrotm[530],"ONLY");
3741   gMC->Gspos("I571",16,"IT56",-14.6659,-37.8569,0.0,idrotm[531],"ONLY");
3742   gMC->Gspos("I565",13,"IT56",-30.6798,-23.1683,0.0,idrotm[504],"ONLY");
3743   gMC->Gspos("I565",12,"IT56",-34.5519,-17.2048,0.0,idrotm[505],"ONLY");
3744   gMC->Gspos("I565",11,"IT56",-36.9774,-10.521,0.0,idrotm[506],"ONLY");
3745   gMC->Gspos("I565",10,"IT56",-38.4338,-3.5614,0.0,idrotm[507],"ONLY");
3746   gMC->Gspos("I565",9,"IT56",-38.281,3.5473,0.0,idrotm[508],"ONLY");
3747   gMC->Gspos("I565",8,"IT56",-37.1249,10.563,0.0,idrotm[509],"ONLY");
3748   gMC->Gspos("I565",7,"IT56",-34.4146,17.1364,0.0,idrotm[510],"ONLY");
3749   gMC->Gspos("I565",6,"IT56",-30.8022,23.2608,0.0,idrotm[511],"ONLY");
3750   gMC->Gspos("I565",5,"IT56",-25.9002,28.4112,0.0,idrotm[512],"ONLY");
3751   gMC->Gspos("I565",4,"IT56",-20.3195,32.817,0.0,idrotm[513],"ONLY");
3752   gMC->Gspos("I565",3,"IT56",-13.8879,35.8489,0.0,idrotm[653],"ONLY");
3753   gMC->Gspos("I565",2,"IT56",-7.0924,37.9412,0.0,idrotm[514],"ONLY");
3754   gMC->Gspos("I565",1,"IT56",0.0,38.445,0.0,0,"ONLY");
3755   gMC->Gspos("I565",34,"IT56",7.0925,37.9412,0.0,idrotm[515],"ONLY");
3756   gMC->Gspos("I565",33,"IT56",13.888,35.8489,0.0,idrotm[516],"ONLY");
3757   gMC->Gspos("I565",32,"IT56",20.3195,32.817,0.0,idrotm[517],"ONLY");
3758   gMC->Gspos("I565",31,"IT56",25.9002,28.4112,0.0,idrotm[518],"ONLY");
3759   gMC->Gspos("I565",30,"IT56",30.8022,23.2607,0.0,idrotm[519],"ONLY");
3760   gMC->Gspos("I565",29,"IT56",34.4146,17.1364,0.0,idrotm[520],"ONLY");
3761   gMC->Gspos("I565",28,"IT56",37.125,10.5629,0.0,idrotm[521],"ONLY");
3762   gMC->Gspos("I565",27,"IT56",38.281,3.5472,0.0,idrotm[522],"ONLY");
3763   gMC->Gspos("I565",26,"IT56",38.4338,-3.5614,0.0,idrotm[523],"ONLY");
3764   gMC->Gspos("I565",25,"IT56",36.9774,-10.521,0.0,idrotm[524],"ONLY");
3765   gMC->Gspos("I565",24,"IT56",34.5519,-17.2048,0.0,idrotm[525],"ONLY");
3766   gMC->Gspos("I565",23,"IT56",30.6798,-23.1683,0.0,idrotm[526],"ONLY");
3767   gMC->Gspos("I565",22,"IT56",26.0036,-28.5246,0.0,idrotm[527],"ONLY");
3768   gMC->Gspos("I565",21,"IT56",20.2387,-32.6866,0.0,idrotm[528],"ONLY");
3769   gMC->Gspos("I565",20,"IT56",13.9433,-35.992,0.0,idrotm[618],"ONLY");
3770   gMC->Gspos("I565",19,"IT56",7.0642,-37.7904,0.0,idrotm[529],"ONLY");
3771   gMC->Gspos("I565",18,"IT56",0.0,-38.5984,0.0,idrotm[533],"ONLY");
3772   gMC->Gspos("I565",17,"IT56",-7.0643,-37.7904,0.0,idrotm[530],"ONLY");
3773   gMC->Gspos("I565",16,"IT56",-13.9434,-35.992,0.0,idrotm[531],"ONLY");
3774   gMC->Gspos("I565",15,"IT56",-20.2387,-32.6866,0.0,idrotm[501],"ONLY");
3775   gMC->Gspos("I565",14,"IT56",-26.0036,-28.5246,0.0,idrotm[503],"ONLY");
3776   gMC->Gspos("I553",1,"I570",0.005,0.0,52.8453,0,"ONLY");
3777   gMC->Gspos("I523",1,"I570",0.0,0.0,46.9203+0.82,0,"ONLY");
3778   gMC->Gspos("I523",2,"I570",0.0,0.0,43.0103+0.82,0,"ONLY");
3779   gMC->Gspos("I523",3,"I570",0.0,0.0,39.1003+0.82,0,"ONLY");
3780   gMC->Gspos("I523",4,"I570",0.0,0.0,35.1903+0.82,0,"ONLY");
3781   gMC->Gspos("I523",5,"I570",0.0,0.0,31.2803+0.82,0,"ONLY");
3782   gMC->Gspos("I523",6,"I570",0.0,0.0,27.3703+0.82,0,"ONLY");
3783   gMC->Gspos("I523",7,"I570",0.0,0.0,23.4603+0.82,0,"ONLY");
3784   gMC->Gspos("I523",8,"I570",0.0,0.0,19.5503+0.82,0,"ONLY");
3785   gMC->Gspos("I523",9,"I570",0.0,0.0,15.6403+0.82,0,"ONLY");
3786   gMC->Gspos("I523",10,"I570",0.0,0.0,11.7303+0.82,0,"ONLY");
3787   gMC->Gspos("I523",11,"I570",0.0,0.0,7.8203+0.82,0,"ONLY");
3788   gMC->Gspos("I523",12,"I570",0.0,0.0,3.9103+0.82,0,"ONLY");
3789   gMC->Gspos("I523",13,"I570",0.0,0.0,0.0003+0.82,0,"ONLY");
3790   gMC->Gspos("I523",14,"I570",0.0,0.0,-3.9097+0.82,0,"ONLY");
3791   gMC->Gspos("I523",15,"I570",0.0,0.0,-7.8197+0.82,0,"ONLY");
3792   gMC->Gspos("I523",16,"I570",0.0,0.0,-11.7297+0.82,0,"ONLY");
3793   gMC->Gspos("I523",17,"I570",0.0,0.0,-15.6397+0.82,0,"ONLY");
3794   gMC->Gspos("I523",18,"I570",0.0,0.0,-19.5497+0.82,0,"ONLY");
3795   gMC->Gspos("I523",19,"I570",0.0,0.0,-23.4597+0.82,0,"ONLY");
3796   gMC->Gspos("I523",20,"I570",0.0,0.0,-27.3697+0.82,0,"ONLY");
3797   gMC->Gspos("I523",21,"I570",0.0,0.0,-31.2797+0.82,0,"ONLY");
3798   gMC->Gspos("I523",22,"I570",0.0,0.0,-35.1897+0.82,0,"ONLY");
3799   gMC->Gspos("I523",23,"I570",0.0,0.0,-39.0997+0.82,0,"ONLY");
3800   gMC->Gspos("I523",24,"I570",0.0,0.0,-43.0097+0.82,0,"ONLY");
3801   gMC->Gspos("I523",25,"I570",0.0,0.0,-46.9197+0.82,0,"ONLY");
3802   gMC->Gspos("I553",2,"I570",-0.005,0.0,-51.2047,idrotm[570],"ONLY");
3803   gMC->Gspos("I566",1,"I569",0.0,-0.03,46.9203,idrotm[532],"ONLY");
3804   gMC->Gspos("I566",2,"I569",0.0,0.03,43.0103,0,"ONLY");
3805   gMC->Gspos("I566",3,"I569",0.0,-0.03,39.1003,idrotm[532],"ONLY");
3806   gMC->Gspos("I566",4,"I569",0.0,0.03,35.1903,0,"ONLY");
3807   gMC->Gspos("I566",5,"I569",0.0,-0.03,31.2803,idrotm[532],"ONLY");
3808   gMC->Gspos("I566",6,"I569",0.0,0.03,27.3703,0,"ONLY");
3809   gMC->Gspos("I566",7,"I569",0.0,-0.03,23.4603,idrotm[532],"ONLY");
3810   gMC->Gspos("I566",8,"I569",0.0,0.03,19.5503,0,"ONLY");
3811   gMC->Gspos("I566",9,"I569",0.0,-0.03,15.6403,idrotm[532],"ONLY");
3812   gMC->Gspos("I566",10,"I569",0.0,0.03,11.7303,0,"ONLY");
3813   gMC->Gspos("I566",11,"I569",0.0,-0.03,7.8203,idrotm[532],"ONLY");
3814   gMC->Gspos("I566",12,"I569",0.0,0.03,3.9103,0,"ONLY");
3815   gMC->Gspos("I566",13,"I569",0.0,-0.03,0.0003,0,"ONLY");
3816   gMC->Gspos("I566",14,"I569",0.0,0.03,-3.9097,0,"ONLY");
3817   gMC->Gspos("I566",15,"I569",0.0,-0.03,-7.8197,idrotm[532],"ONLY");
3818   gMC->Gspos("I566",16,"I569",0.0,0.03,-11.7297,0,"ONLY");
3819   gMC->Gspos("I566",17,"I569",0.0,-0.03,-15.6397,0,"ONLY");
3820   gMC->Gspos("I566",18,"I569",0.0,0.03,-19.5497,0,"ONLY");
3821   gMC->Gspos("I566",19,"I569",0.0,-0.03,-23.4597,idrotm[532],"ONLY");
3822   gMC->Gspos("I566",20,"I569",0.0,0.03,-27.3697,0,"ONLY");
3823   gMC->Gspos("I566",21,"I569",0.0,-0.03,-31.2797,idrotm[532],"ONLY");
3824   gMC->Gspos("I566",22,"I569",0.0,0.03,-35.1897,0,"ONLY");
3825   gMC->Gspos("I566",23,"I569",0.0,-0.03,-39.0997,0,"ONLY");
3826   gMC->Gspos("I566",24,"I569",0.0,0.03,-43.0097,0,"ONLY");
3827   gMC->Gspos("I566",25,"I569",0.0,-0.03,-46.9197,idrotm[532],"ONLY");
3828   gMC->Gspos("I544",1,"I571",0.0101,0.0,43.125,0,"ONLY");
3829   gMC->Gspos("I516",20,"I571",0.0001,0.0,39.1-1.08,0,"ONLY");
3830   gMC->Gspos("I516",19,"I571",0.0001,0.0,35.19-1.08,0,"ONLY");
3831   gMC->Gspos("I516",18,"I571",0.0001,0.0,31.28-1.08,0,"ONLY");
3832   gMC->Gspos("I516",17,"I571",0.0001,0.0,27.37-1.08,0,"ONLY");
3833   gMC->Gspos("I516",16,"I571",0.0001,0.0,23.46-1.08,0,"ONLY");
3834   gMC->Gspos("I516",15,"I571",0.0001,0.0,19.55-1.08,0,"ONLY");
3835   gMC->Gspos("I516",14,"I571",0.0001,0.0,15.64-1.08,0,"ONLY");
3836   gMC->Gspos("I516",13,"I571",0.0001,0.0,11.73-1.08,0,"ONLY");
3837   gMC->Gspos("I516",12,"I571",0.0001,0.0,7.82-1.08,0,"ONLY");
3838   gMC->Gspos("I516",11,"I571",0.0001,0.0,3.91-1.08,0,"ONLY");
3839   gMC->Gspos("I516",10,"I571",0.0001,0.0,0.0-1.08,0,"ONLY");
3840   gMC->Gspos("I516",9,"I571",0.0001,0.0,-3.91-1.08,0,"ONLY");
3841   gMC->Gspos("I516",8,"I571",0.0001,0.0,-7.82-1.08,0,"ONLY");
3842   gMC->Gspos("I516",7,"I571",0.0001,0.0,-11.73-1.08,0,"ONLY");
3843   gMC->Gspos("I516",6,"I571",0.0001,0.0,-15.64-1.08,0,"ONLY");
3844   gMC->Gspos("I516",5,"I571",0.0001,0.0,-19.55-1.08,0,"ONLY");
3845   gMC->Gspos("I516",4,"I571",0.0001,0.0,-23.46-1.08,0,"ONLY");
3846   gMC->Gspos("I516",3,"I571",0.0001,0.0,-27.37-1.08,0,"ONLY");
3847   gMC->Gspos("I516",2,"I571",0.0001,0.0,-31.28-1.08,0,"ONLY");
3848   gMC->Gspos("I516",1,"I571",0.0001,0.0,-35.19-1.08,0,"ONLY");
3849   gMC->Gspos("I544",2,"I571",-0.0099,0.0,-41.375,idrotm[570],"ONLY");
3850   gMC->Gspos("I562",1,"I565",0.0,0.03,41.1546,0,"ONLY");
3851   gMC->Gspos("I562",2,"I565",0.0,-0.03,37.2246,0,"ONLY");
3852   gMC->Gspos("I562",3,"I565",0.0,0.03,33.3146,0,"ONLY");
3853   gMC->Gspos("I562",4,"I565",0.0,-0.03,29.3846,0,"ONLY");
3854   gMC->Gspos("I562",5,"I565",0.0,0.03,25.4746,0,"ONLY");
3855   gMC->Gspos("I562",6,"I565",0.0,-0.03,21.5446,0,"ONLY");
3856   gMC->Gspos("I562",7,"I565",0.0,0.03,17.6346,0,"ONLY");
3857   gMC->Gspos("I562",8,"I565",0.0,-0.03,13.7046,0,"ONLY");
3858   gMC->Gspos("I562",9,"I565",0.0,0.03,9.7946,0,"ONLY");
3859   gMC->Gspos("I562",10,"I565",0.0,-0.03,5.8645,0,"ONLY");
3860   gMC->Gspos("I562",11,"I565",0.0,0.03,1.9546,0,"ONLY");
3861   gMC->Gspos("I562",12,"I565",0.0,-0.03,-1.9754,0,"ONLY");
3862   gMC->Gspos("I562",13,"I565",0.0,0.03,-5.8855,0,"ONLY");
3863   gMC->Gspos("I562",14,"I565",0.0,-0.03,-9.8154,0,"ONLY");
3864   gMC->Gspos("I562",15,"I565",0.0,0.03,-13.7254,0,"ONLY");
3865   gMC->Gspos("I562",16,"I565",0.0,-0.03,-17.6555,0,"ONLY");
3866   gMC->Gspos("I562",17,"I565",0.0,0.03,-21.5655,0,"ONLY");
3867   gMC->Gspos("I562",18,"I565",0.0,-0.03,-25.4954,0,"ONLY");
3868   gMC->Gspos("I562",19,"I565",0.0,0.03,-29.4054,0,"ONLY");
3869   gMC->Gspos("I562",20,"I565",0.0,-0.03,-33.3354,0,"ONLY");
3870   gMC->Gspos("I562",21,"I565",0.0,0.03,-37.2454,0,"ONLY");
3871   gMC->Gspos("I562",22,"I565",0.0,-0.03,-41.1554,0,"ONLY");
3872   gMC->Gspos("I559",1,"I553",2.25,-1.615,0.0,0,"ONLY");
3873   gMC->Gspos("I560",1,"I553",2.25,-1.615,0.0,0,"ONLY");
3874   gMC->Gspos("I560",2,"I553",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3875   gMC->Gspos("I558",1,"I553",-1.7167,-1.52,0.0,idrotm[583],"ONLY");
3876   gMC->Gspos("I557",1,"I553",-1.8533,-1.341,0.0,idrotm[581],"ONLY");
3877   gMC->Gspos("I558",2,"I553",1.8367,-1.3122,0.0,idrotm[575],"ONLY");
3878   gMC->Gspos("I557",2,"I553",1.75,-1.52,0.0,idrotm[583],"ONLY");
3879   gMC->Gspos("I558",3,"I553",-0.12,1.6613,0.0,idrotm[581],"ONLY");
3880   gMC->Gspos("I557",3,"I553",0.1034,1.6901,0.0,idrotm[575],"ONLY");
3881   gMC->Gspos("I556",3,"I553",-1.031,0.2033,-2.203,idrotm[580],"ONLY");
3882   gMC->Gspos("I556",1,"I553",1.0311,0.2033,-0.287,idrotm[576],"ONLY");
3883   gMC->Gspos("I554",1,"I553",0.0,-1.58,0.71,0,"ONLY");
3884   gMC->Gspos("I555",1,"I553",-0.0072,-1.58,-1.2311,idrotm[633],"ONLY");
3885   gMC->Gspos("I556",2,"I553",1.0311,0.2033,-2.203,idrotm[577],"ONLY");
3886   gMC->Gspos("I556",4,"I553",-1.031,0.2033,-0.287,idrotm[579],"ONLY");
3887   gMC->Gspos("I559",2,"I553",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3888   gMC->Gspos("I561",1,"I553",2.1,-1.615,-0.24,0,"MANY");
3889   gMC->Gspos("I561",2,"I553",-2.1,-1.615,-0.24,idrotm[573],"MANY");
3890   gMC->Gspos("I519",37,"I523",0.0001,-1.79,-0.99,idrotm[586],"ONLY");
3891   gMC->Gspos("I519",36,"I523",-3.2986,-1.79,-1.2943,0,"ONLY");
3892   gMC->Gspos("I519",35,"I523",-3.2986,-1.71,-1.2943,0,"ONLY");
3893   gMC->Gspos("I519",34,"I523",-3.2286,-1.71,-1.2943,0,"ONLY");
3894   gMC->Gspos("I519",33,"I523",-3.2286,-1.79,-1.2943,0,"ONLY");
3895   gMC->Gspos("I519",32,"I523",-3.1586,-1.79,-1.2943,0,"ONLY");
3896   gMC->Gspos("I519",31,"I523",-3.1586,-1.71,-1.2943,0,"ONLY");
3897   gMC->Gspos("I519",30,"I523",-1.3436,-1.71,-1.2943,0,"ONLY");
3898   gMC->Gspos("I519",29,"I523",-1.3436,-1.79,-1.2943,0,"ONLY");
3899   gMC->Gspos("I519",28,"I523",-1.2736,-1.79,-1.2943,0,"ONLY");
3900   gMC->Gspos("I519",27,"I523",-1.2736,-1.71,-1.2943,0,"ONLY");
3901   gMC->Gspos("I519",26,"I523",-1.2036,-1.71,-1.2943,0,"ONLY");
3902   gMC->Gspos("I519",25,"I523",-1.2036,-1.79,-1.2943,0,"ONLY");
3903   gMC->Gspos("I519",24,"I523",-1.0458,-1.79,-1.2943,0,"ONLY");
3904   gMC->Gspos("I519",23,"I523",-1.0458,-1.71,-1.2943,0,"ONLY");
3905   gMC->Gspos("I519",22,"I523",-0.9758,-1.71,-1.2943,0,"ONLY");
3906   gMC->Gspos("I519",21,"I523",-0.9758,-1.79,-1.2943,0,"ONLY");
3907   gMC->Gspos("I519",20,"I523",-0.9058,-1.79,-1.2943,0,"ONLY");
3908   gMC->Gspos("I519",19,"I523",-0.9058,-1.71,-1.2943,0,"ONLY");
3909   gMC->Gspos("I519",18,"I523",0.9092,-1.71,-1.2943,0,"ONLY");
3910   gMC->Gspos("I519",17,"I523",0.9092,-1.79,-1.2943,0,"ONLY");
3911   gMC->Gspos("I519",16,"I523",0.9792,-1.79,-1.2943,0,"ONLY");
3912   gMC->Gspos("I519",15,"I523",0.9792,-1.71,-1.2943,0,"ONLY");
3913   gMC->Gspos("I519",14,"I523",1.0492,-1.71,-1.2943,0,"ONLY");
3914   gMC->Gspos("I519",13,"I523",1.0492,-1.79,-1.2943,0,"ONLY");
3915   gMC->Gspos("I519",12,"I523",1.207,-1.79,-1.2943,0,"ONLY");
3916   gMC->Gspos("I519",11,"I523",1.207,-1.71,-1.2943,0,"ONLY");
3917   gMC->Gspos("I519",10,"I523",1.277,-1.71,-1.2943,0,"ONLY");
3918   gMC->Gspos("I519",9,"I523",1.277,-1.79,-1.2943,0,"ONLY");
3919   gMC->Gspos("I519",8,"I523",1.347,-1.79,-1.2943,0,"ONLY");
3920   gMC->Gspos("I519",7,"I523",1.347,-1.71,-1.2943,0,"ONLY");
3921   gMC->Gspos("I519",6,"I523",3.162,-1.71,-1.2943,0,"ONLY");
3922   gMC->Gspos("I519",5,"I523",3.162,-1.79,-1.2943,0,"ONLY");
3923   gMC->Gspos("I519",4,"I523",3.232,-1.79,-1.2943,0,"ONLY");
3924   gMC->Gspos("I519",3,"I523",3.232,-1.71,-1.2943,0,"ONLY");
3925   gMC->Gspos("I521",12,"I523",-2.8209,-1.7925,-0.982,0,"ONLY");
3926   gMC->Gspos("I521",11,"I523",-1.6895,-1.7925,-0.982,0,"ONLY");
3927   gMC->Gspos("I521",10,"I523",-0.5631,-1.7925,-0.982,0,"ONLY");
3928   gMC->Gspos("I521",9,"I523",0.5633,-1.7925,-0.982,0,"ONLY");
3929   gMC->Gspos("I521",8,"I523",1.6861,-1.7925,-0.982,0,"ONLY");
3930   gMC->Gspos("I521",7,"I523",2.8161,-1.7925,-0.982,0,"ONLY");
3931   gMC->Gspos("I519",2,"I523",3.302,-1.79,-1.2943,0,"ONLY");
3932   gMC->Gspos("I520",3,"I523",0.0001,-1.845,-1.19,0,"ONLY");
3933   gMC->Gspos("I520",2,"I523",-2.2499,-1.845,-1.19,0,"ONLY");
3934   gMC->Gspos("I521",6,"I523",-2.8209,-1.7075,-0.982,0,"ONLY");
3935   gMC->Gspos("I521",5,"I523",-1.6895,-1.7075,-0.982,0,"ONLY");
3936   gMC->Gspos("I521",4,"I523",-0.5631,-1.7075,-0.982,0,"ONLY");
3937   gMC->Gspos("I521",3,"I523",0.5633,-1.7075,-0.982,0,"ONLY");
3938   gMC->Gspos("I521",2,"I523",1.6861,-1.7075,-0.982,0,"ONLY");
3939   gMC->Gspos("I518",1,"I523",0.0001,-1.75,-1.065,0,"ONLY");
3940   gMC->Gspos("I519",1,"I523",3.302,-1.71,-1.2943,0,"ONLY");
3941   gMC->Gspos("I520",1,"I523",2.2501,-1.845,-1.19,0,"ONLY");
3942   gMC->Gspos("I521",1,"I523",2.8161,-1.7075,-0.982,0,"ONLY");
3943   gMC->Gspos("I522",1,"I523",2.2501,-1.655,-1.3,idrotm[583],"MANY");
3944   gMC->Gspos("I522",2,"I523",-2.2499,-1.655,-1.3,idrotm[583],"MANY");
3945   gMC->Gspos("I542",2,"I523",-2.2499,-1.615,0.0,idrotm[573],"ONLY");
3946   gMC->Gspos("I541",2,"I523",-2.2499,-1.615,0.0,idrotm[573],"ONLY");
3947   gMC->Gspos("I541",1,"I523",2.2501,-1.615,0.0,0,"ONLY");
3948   gMC->Gspos("I542",1,"I523",2.2501,-1.615,0.0,0,"ONLY");
3949   gMC->Gspos("I543",1,"I523",2.1001,-1.615,0.955,0,"MANY");
3950   gMC->Gspos("I543",2,"I523",-2.0999,-1.615,0.955,idrotm[573],"MANY");
3951   gMC->Gspos("I537",2,"I523",1.7501,-1.52,0.0,idrotm[583],"ONLY");
3952   gMC->Gspos("I538",2,"I523",1.8368,-1.3122,0.0,idrotm[575],"ONLY");
3953   gMC->Gspos("I537",3,"I523",0.1035,1.6901,0.0,idrotm[575],"ONLY");
3954   gMC->Gspos("I538",3,"I523",-0.1199,1.6612,0.0,idrotm[581],"ONLY");
3955   gMC->Gspos("I538",1,"I523",-1.7166,-1.52,0.0,idrotm[583],"ONLY");
3956   gMC->Gspos("I537",1,"I523",-1.8532,-1.341,0.0,idrotm[581],"ONLY");
3957   gMC->Gspos("I536",3,"I523",-1.031,0.2033,-1.008,idrotm[580],"ONLY");
3958   gMC->Gspos("I536",4,"I523",-1.031,0.2033,0.908,idrotm[579],"ONLY");
3959   gMC->Gspos("I535",1,"I523",-0.0072,-1.58,-0.0361,idrotm[633],"ONLY");
3960   gMC->Gspos("I536",2,"I523",1.0312,0.2033,-1.008,idrotm[577],"ONLY");
3961   gMC->Gspos("I536",1,"I523",1.0312,0.2033,0.908,idrotm[576],"ONLY");
3962   gMC->Gspos("I534",1,"I523",0.0001,-1.58,1.905,0,"ONLY");
3963   gMC->Gspos("I540",1,"I523",0.0001,-1.785,1.905,idrotm[571],"ONLY");
3964   gMC->Gspos("I539",1,"I523",1.8001,-1.75,-0.195,idrotm[571],"ONLY");
3965   gMC->Gspos("I539",2,"I523",-1.7999,-1.75,-0.195,idrotm[572],"ONLY");
3966   gMC->Gspos("ITS6",1,"I566",0.0,0.0,0.0,0,"ONLY");
3967   gMC->Gspos("I550",1,"I544",2.25,-1.615,0.0,0,"ONLY");
3968   gMC->Gspos("I551",1,"I544",2.25,-1.615,0.0,0,"ONLY");
3969   gMC->Gspos("I551",2,"I544",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3970   gMC->Gspos("I550",2,"I544",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3971   gMC->Gspos("I549",1,"I544",1.7167,-1.52,0.0,idrotm[583],"ONLY");
3972   gMC->Gspos("I548",1,"I544",1.8533,-1.341,0.0,idrotm[575],"ONLY");
3973   gMC->Gspos("I547",1,"I544",1.0311,0.2033,-0.287,idrotm[576],"ONLY");
3974   gMC->Gspos("I545",1,"I544",0.0,-1.58,0.71,0,"ONLY");
3975   gMC->Gspos("I547",2,"I544",1.0311,0.2033,-2.203,idrotm[577],"ONLY");
3976   gMC->Gspos("I546",1,"I544",-0.0073,-1.58,-1.2311,idrotm[633],"ONLY");
3977   gMC->Gspos("I547",4,"I544",-1.0311,0.2033,-0.287,idrotm[579],"ONLY");
3978   gMC->Gspos("I547",3,"I544",-1.0311,0.2033,-2.203,idrotm[580],"ONLY");
3979   gMC->Gspos("I548",2,"I544",-0.1033,1.6901,0.0,idrotm[581],"O]NLY");
3980   gMC->Gspos("I549",2,"I544",0.12,1.6613,0.0,idrotm[575],"ONLY");
3981   gMC->Gspos("I549",3,"I544",-1.8367,-1.3122,0.0,idrotm[581],"ONLY");
3982   gMC->Gspos("I548",3,"I544",-1.75,-1.52,0.0,idrotm[583],"ONLY");
3983   gMC->Gspos("I552",1,"I544",2.1,-1.615,-0.24,0,"MANY");
3984   gMC->Gspos("I552",2,"I544",-2.1,-1.615,-0.24,idrotm[573],"MANY");
3985   gMC->Gspos("I515",12,"I516",-1.6896,-1.7075,-0.9822,0,"ONLY");
3986   gMC->Gspos("I515",11,"I516",-1.6896,-1.7925,-0.9822,0,"ONLY");
3987   gMC->Gspos("I513",37,"I516",0.0,-1.79,-1.035,idrotm[586],"ONLY");
3988   gMC->Gspos("I513",1,"I516",-3.2987,-1.71,-1.2943,0,"ONLY");
3989   gMC->Gspos("I515",1,"I516",-2.816,-1.7075,-0.9822,0,"ONLY");
3990   gMC->Gspos("I514",1,"I516",-2.25,-1.845,-1.19,0,"ONLY");
3991   gMC->Gspos("I514",2,"I516",0.0,-1.845,-1.19,0,"ONLY");
3992   gMC->Gspos("I514",3,"I516",2.25,-1.845,-1.19,0,"ONLY");
3993   gMC->Gspos("I515",2,"I516",-2.816,-1.7925,-0.9822,0,"ONLY");
3994   gMC->Gspos("I513",2,"I516",-3.2987,-1.79,-1.2943,0,"ONLY");
3995   gMC->Gspos("I515",3,"I516",-0.5632,-1.7075,-0.9822,0,"ONLY");
3996   gMC->Gspos("I515",4,"I516",-0.5632,-1.7925,-0.9822,0,"ONLY");
3997   gMC->Gspos("I515",5,"I516",0.5632,-1.7925,-0.9822,0,"ONLY");
3998   gMC->Gspos("I515",6,"I516",0.5632,-1.7075,-0.9822,0,"ONLY");
3999   gMC->Gspos("I515",7,"I516",1.6896,-1.7075,-0.9822,0,"ONLY");
4000   gMC->Gspos("I515",8,"I516",1.6896,-1.7925,-0.9822,0,"ONLY");
4001   gMC->Gspos("I515",9,"I516",2.816,-1.7925,-0.9822,0,"ONLY");
4002   gMC->Gspos("I515",10,"I516",2.816,-1.7075,-0.9822,0,"ONLY");
4003   gMC->Gspos("I513",3,"I516",-3.2287,-1.79,-1.2943,0,"ONLY");
4004   gMC->Gspos("I513",4,"I516",-3.2287,-1.71,-1.2943,0,"ONLY");
4005   gMC->Gspos("I513",5,"I516",-3.1587,-1.71,-1.2943,0,"ONLY");
4006   gMC->Gspos("I513",6,"I516",-3.1587,-1.79,-1.2943,0,"ONLY");
4007   gMC->Gspos("I513",7,"I516",-1.3437,-1.79,-1.2943,0,"ONLY");
4008   gMC->Gspos("I513",8,"I516",-1.3437,-1.71,-1.2943,0,"ONLY");
4009   gMC->Gspos("I513",9,"I516",-1.2737,-1.71,-1.2943,0,"ONLY");
4010   gMC->Gspos("I513",10,"I516",-1.2737,-1.79,-1.2943,0,"ONLY");
4011   gMC->Gspos("I513",11,"I516",-1.2037,-1.79,-1.2943,0,"ONLY");
4012   gMC->Gspos("I513",12,"I516",-1.2037,-1.71,-1.2943,0,"ONLY");
4013   gMC->Gspos("I513",13,"I516",-1.046,-1.71,-1.2943,0,"ONLY");
4014   gMC->Gspos("I513",14,"I516",-1.046,-1.79,-1.2943,0,"ONLY");
4015   gMC->Gspos("I513",15,"I516",-0.976,-1.79,-1.2943,0,"ONLY");
4016   gMC->Gspos("I513",16,"I516",-0.976,-1.71,-1.2943,0,"ONLY");
4017   gMC->Gspos("I513",17,"I516",-0.906,-1.71,-1.2943,0,"ONLY");
4018   gMC->Gspos("I513",18,"I516",-0.906,-1.79,-1.2943,0,"ONLY");
4019   gMC->Gspos("I513",19,"I516",0.9091,-1.79,-1.2943,0,"ONLY");
4020   gMC->Gspos("I513",20,"I516",0.9091,-1.71,-1.2943,0,"ONLY");
4021   gMC->Gspos("I513",21,"I516",0.9791,-1.71,-1.2943,0,"ONLY");
4022   gMC->Gspos("I513",22,"I516",0.9791,-1.79,-1.2943,0,"ONLY");
4023   gMC->Gspos("I513",23,"I516",1.0491,-1.79,-1.2943,0,"ONLY");
4024   gMC->Gspos("I513",24,"I516",1.0491,-1.71,-1.2943,0,"ONLY");
4025   gMC->Gspos("I513",25,"I516",1.2068,-1.71,-1.2943,0,"ONLY");
4026   gMC->Gspos("I513",26,"I516",1.2068,-1.79,-1.2943,0,"ONLY");
4027   gMC->Gspos("I513",27,"I516",1.2768,-1.79,-1.2943,0,"ONLY");
4028   gMC->Gspos("I513",28,"I516",1.2768,-1.71,-1.2943,0,"ONLY");
4029   gMC->Gspos("I513",29,"I516",1.3469,-1.71,-1.2943,0,"ONLY");
4030   gMC->Gspos("I513",30,"I516",1.3469,-1.79,-1.2943,0,"ONLY");
4031   gMC->Gspos("I513",31,"I516",3.1619,-1.79,-1.2943,0,"ONLY");
4032   gMC->Gspos("I513",32,"I516",3.1619,-1.71,-1.2943,0,"ONLY");
4033   gMC->Gspos("I513",33,"I516",3.2319,-1.71,-1.2943,0,"ONLY");
4034   gMC->Gspos("I513",34,"I516",3.2319,-1.79,-1.2943,0,"ONLY");
4035   gMC->Gspos("I513",35,"I516",3.3019,-1.79,-1.2943,0,"ONLY");
4036   gMC->Gspos("I513",36,"I516",3.3019,-1.71,-1.2943,0,"ONLY");
4037   gMC->Gspos("I512",1,"I516",0.0,-1.75,-1.065,0,"ONLY");
4038   gMC->Gspos("I528",1,"I516",1.7167,-1.52,0.0,idrotm[583],"ONLY");
4039   gMC->Gspos("I527",1,"I516",1.8534,-1.341,0.0,idrotm[575],"ONLY");
4040   gMC->Gspos("I528",2,"I516",0.12,1.6613,0.0,idrotm[575],"ONLY");
4041   gMC->Gspos("I527",2,"I516",-0.1033,1.6901,0.0,idrotm[581],"ONLY");
4042   gMC->Gspos("I527",3,"I516",-1.75,-1.52,0.0,idrotm[583],"ONLY");
4043   gMC->Gspos("I528",3,"I516",-1.8367,-1.3122,0.0,idrotm[581],"ONLY");
4044   gMC->Gspos("I526",2,"I516",1.0311,0.2033,-1.008,idrotm[577],"ONLY");
4045   gMC->Gspos("I525",1,"I516",-0.0073,-1.58,-0.0361,idrotm[633],"ONLY");
4046   gMC->Gspos("I524",1,"I516",0.0,-1.58,1.905,0,"ONLY");
4047   gMC->Gspos("I526",1,"I516",1.0311,0.2033,0.908,idrotm[576],"ONLY");
4048   gMC->Gspos("I526",3,"I516",-1.0311,0.2033,0.908,idrotm[579],"ONLY");
4049   gMC->Gspos("I526",4,"I516",-1.0311,0.2033,-1.008,idrotm[580],"ONLY");
4050   gMC->Gspos("I529",1,"I516",1.8,-1.75,-0.195,idrotm[571],"ONLY");
4051   gMC->Gspos("I530",1,"I516",0.0,-1.785,1.905,idrotm[571],"ONLY");
4052   gMC->Gspos("I529",2,"I516",-1.8,-1.75,-0.195,idrotm[572],"ONLY");
4053   gMC->Gspos("I517",1,"I516",2.25,-1.655,-1.3,idrotm[583],"MANY");
4054   gMC->Gspos("I517",2,"I516",-2.25,-1.655,-1.3,idrotm[584],"MANY");
4055   gMC->Gspos("I531",2,"I516",-2.25,-1.615,0.0,idrotm[573],"ONLY");
4056   gMC->Gspos("I531",1,"I516",2.25,-1.615,0.0,0,"ONLY");
4057   gMC->Gspos("I532",1,"I516",2.25,-1.615,0.0,0,"ONLY");
4058   gMC->Gspos("I532",2,"I516",-2.25,-1.615,0.0,idrotm[573],"ONLY");
4059   gMC->Gspos("I533",1,"I516",2.1,-1.615,0.955,0,"MANY");
4060   gMC->Gspos("I533",2,"I516",-2.1,-1.615,0.955,idrotm[573],"MANY");
4061   gMC->Gspos("ITS5",1,"I562",0.0,0.0,0.0,0,"ONLY");
4062
4063   
4064   // --- Place volumes of shield between SPD and SDD 
4065
4066
4067   gMC->Gspos("IC01",1,"ITSD",0.0,0.0,0.0,0,"ONLY");
4068   gMC->Gspos("IC02",1,"ITSD",0.0,0.0,25.+8.75,0,"ONLY");  
4069   gMC->Gspos("IC02",2,"ITSD",0.0,0.0,-25.-8.75,idrotm[200],"ONLY");  
4070   //gMC->Gspos("IC03",1,"ITSD",0.0,0.0,25.+17.5+7.875,0,"ONLY");  
4071   //gMC->Gspos("IC03",2,"ITSD",0.0,0.0,-25.-17.5-7.875,idrotm[200],"ONLY");   
4072   
4073   
4074   // --- Place volumes of cylinders between SPD and SDD and SDD and SSD 
4075   
4076   gMC->Gspos("ICY1",1,"IS02",0.0,0.0,0.,0,"ONLY");    
4077   gMC->Gspos("ICY2",1,"IS01",0.0,0.0,0.,0,"ONLY");    
4078   
4079
4080   // --- Place volumes of SDD cone ---------------------------------- 
4081   
4082   
4083   gMC->Gspos("I093",1,"IS02",0.0,0.0,0.0,0,"MANY");
4084   gMC->Gspos("I093",2,"IS02",0.0,0.0,0.0,idrotm[856],"MANY");
4085   gMC->Gspos("I099",4,"IS02",0.0,0.0,0.0,idrotm[857],"MANY");
4086   gMC->Gspos("I099",3,"IS02",0.0,0.0,0.0,idrotm[858],"MANY");
4087   gMC->Gspos("I099",5,"IS02",0.0,0.0,0.0,idrotm[859],"MANY");
4088   gMC->Gspos("I099",6,"IS02",0.0,0.0,0.0,idrotm[860],"MANY");
4089   gMC->Gspos("I099",7,"IS02",0.0,0.0,0.0,idrotm[861],"MANY");
4090   gMC->Gspos("I099",2,"IS02",0.0,0.0,0.0,idrotm[862],"MANY");
4091   gMC->Gspos("I200",4,"IS02",0.0,0.0,0.0,idrotm[863],"MANY");
4092   gMC->Gspos("I200",3,"IS02",0.0,0.0,0.0,idrotm[864],"MANY");
4093   gMC->Gspos("I200",2,"IS02",0.0,0.0,0.0,idrotm[865],"MANY");
4094   gMC->Gspos("I200",13,"IS02",0.0,0.0,0.0,idrotm[867],"MANY");
4095   gMC->Gspos("I200",12,"IS02",0.0,0.0,0.0,idrotm[869],"MANY");
4096   gMC->Gspos("I200",11,"IS02",0.0,0.0,0.0,idrotm[870],"MANY");
4097   gMC->Gspos("I200",10,"IS02",0.0,0.0,0.0,idrotm[871],"MANY");
4098   gMC->Gspos("I200",9,"IS02",0.0,0.0,0.0,idrotm[872],"MANY");
4099   gMC->Gspos("I200",8,"IS02",0.0,0.0,0.0,idrotm[873],"MANY");
4100   gMC->Gspos("I200",7,"IS02",0.0,0.0,0.0,idrotm[874],"MANY");
4101   gMC->Gspos("I200",6,"IS02",0.0,0.0,0.0,idrotm[875],"MANY");
4102   gMC->Gspos("I200",5,"IS02",0.0,0.0,0.0,idrotm[876],"MANY");
4103   gMC->Gspos("I090",2,"IS02",0.0,0.0,-39.4,0,"ONLY");    
4104   gMC->Gspos("I090",1,"IS02",0.0,0.0,39.4,idrotm[856],"ONLY");  
4105   gMC->Gspos("I099",9,"IS02",0.0,0.0,0.0,idrotm[877],"ONLY");
4106   gMC->Gspos("I099",8,"IS02",0.0,0.0,0.0,idrotm[879],"ONLY");
4107   gMC->Gspos("I099",1,"IS02",0.0,0.0,0.0,idrotm[880],"ONLY");
4108   gMC->Gspos("I099",12,"IS02",0.0,0.0,0.0,idrotm[881],"ONLY");
4109   gMC->Gspos("I099",11,"IS02",0.0,0.0,0.0,idrotm[851],"ONLY");
4110   gMC->Gspos("I099",10,"IS02",0.0,0.0,0.0,idrotm[882],"ONLY");
4111   gMC->Gspos("I200",23,"IS02",0.0,0.0,0.0,idrotm[898],"ONLY");
4112   gMC->Gspos("I200",24,"IS02",0.0,0.0,0.0,idrotm[883],"ONLY");
4113   gMC->Gspos("I200",1,"IS02",0.0,0.0,0.0,idrotm[884],"ONLY");
4114   gMC->Gspos("I200",14,"IS02",0.0,0.0,0.0,idrotm[885],"ONLY");
4115   gMC->Gspos("I200",15,"IS02",0.0,0.0,0.0,idrotm[887],"ONLY");
4116   gMC->Gspos("I200",16,"IS02",0.0,0.0,0.0,idrotm[888],"ONLY");
4117   gMC->Gspos("I200",17,"IS02",0.0,0.0,0.0,idrotm[889],"ONLY");
4118   gMC->Gspos("I200",18,"IS02",0.0,0.0,0.0,idrotm[890],"ONLY");
4119   gMC->Gspos("I200",22,"IS02",0.0,0.0,0.0,idrotm[891],"ONLY");
4120   gMC->Gspos("I200",21,"IS02",0.0,0.0,0.0,idrotm[892],"ONLY");
4121   gMC->Gspos("I200",20,"IS02",0.0,0.0,0.0,idrotm[868],"ONLY");
4122   gMC->Gspos("I200",19,"IS02",0.0,0.0,0.0,idrotm[893],"ONLY");
4123   gMC->Gspos("I098",1,"IS02",0.0,0.0,33.6,0,"MANY");    
4124   gMC->Gspos("I097",1,"IS02",0.0,0.0,26.6,0,"MANY");    
4125   gMC->Gspos("I097",2,"IS02",0.0,0.0,-26.6,idrotm[856],"MANY");  
4126   gMC->Gspos("I098",2,"IS02",0.0,0.0,-33.6,idrotm[856],"MANY");  
4127   gMC->Gspos("I202",1,"IS02",12.1,0.0,33.84,0,"ONLY");
4128   gMC->Gspos("I202",6,"IS02",-6.05,-10.4789,33.84,idrotm[930],"ONLY");
4129   gMC->Gspos("I202",5,"IS02",-6.05,10.4789,33.84,idrotm[929],"ONLY");
4130   gMC->Gspos("I202",2,"IS02",12.1,0.0,-33.84,idrotm[856],"ONLY");
4131   gMC->Gspos("I202",3,"IS02",-6.05,10.4789,-33.84,idrotm[932],"ONLY");
4132   gMC->Gspos("I202",4,"IS02",-6.05,-10.4789,-33.84,idrotm[934],"ONLY");
4133   gMC->Gspos("I203",12,"IS02",21.8453,0.0,-42.24,idrotm[856],"ONLY");
4134   gMC->Gspos("I203",11,"IS02",10.9227,-18.9186,-42.24,idrotm[935],"ONLY");
4135   gMC->Gspos("I203",10,"IS02",10.9227,-18.9186,42.24,idrotm[846],"ONLY");
4136   gMC->Gspos("I203",9,"IS02",-10.9227,-18.9186,-42.24,idrotm[934],"ONLY");
4137   gMC->Gspos("I203",8,"IS02",-10.9227,-18.9186,42.24,idrotm[930],"ONLY");
4138   gMC->Gspos("I203",7,"IS02",-21.8453,0.0,-42.24,idrotm[933],"ONLY");
4139   gMC->Gspos("I203",6,"IS02",-21.8453,0.0,42.24,idrotm[878],"ONLY");
4140   gMC->Gspos("I203",5,"IS02",-10.9227,18.9186,-42.24,idrotm[932],"ONLY");
4141   gMC->Gspos("I203",4,"IS02",-10.9227,18.9186,42.24,idrotm[929],"ONLY");
4142   gMC->Gspos("I203",3,"IS02",10.9227,18.9186,-42.24,idrotm[931],"ONLY");
4143   gMC->Gspos("I203",2,"IS02",10.9227,18.9186,42.24,idrotm[853],"ONLY");
4144   gMC->Gspos("I203",1,"IS02",21.8453,0.0,42.24,0,"ONLY");
4145   gMC->Gspos("I095",1,"I098",0.0,0.0,0.0,0,"ONLY");
4146   gMC->Gspos("I096",23,"I098",22.77,0.0,0.0,idrotm[894],"MANY");
4147   gMC->Gspos("I096",14,"I098",22.3754,6.57,0.0,idrotm[895],"MANY");
4148   gMC->Gspos("I096",3,"I098",19.1553,12.3104,0.0,idrotm[896],"MANY");
4149   gMC->Gspos("I096",16,"I098",15.2714,17.6241,0.0,idrotm[897],"MANY");
4150   gMC->Gspos("I096",5,"I098",9.459,20.7123,0.0,idrotm[899],"MANY");
4151   gMC->Gspos("I096",18,"I098",3.3188,23.0826,0.0,idrotm[900],"MANY");
4152   gMC->Gspos("I096",7,"I098",-3.2405,22.5382,0.0,idrotm[901],"MANY");
4153   gMC->Gspos("I096",20,"I098",-9.6875,21.2126,0.0,idrotm[902],"MANY");
4154   gMC->Gspos("I096",9,"I098",-14.9112,17.2084,0.0,idrotm[903],"MANY");
4155   gMC->Gspos("I096",22,"I098",-19.618,12.6077,0.0,idrotm[904],"MANY");
4156   gMC->Gspos("I096",11,"I098",-21.8477,6.4151,0.0,idrotm[905],"MANY");
4157   gMC->Gspos("I096",24,"I098",-23.32,0.0,0.0,idrotm[906],"MANY");
4158   gMC->Gspos("I096",13,"I098",-21.8477,-6.4151,0.0,idrotm[907],"MANY");
4159   gMC->Gspos("I096",4,"I098",-19.618,-12.6077,0.0,idrotm[908],"MANY");
4160   gMC->Gspos("I096",15,"I098",-14.9112,-17.2084,0.0,idrotm[909],"MANY");
4161   gMC->Gspos("I096",6,"I098",-9.6875,-21.2126,0.0,idrotm[910],"MANY");
4162   gMC->Gspos("I096",17,"I098",-3.2405,-22.5382,0.0,idrotm[911],"MANY");
4163   gMC->Gspos("I096",8,"I098",3.3188,-23.0826,0.0,idrotm[912],"MANY");
4164   gMC->Gspos("I096",19,"I098",9.459,-20.7123,0.0,idrotm[913],"MANY");
4165   gMC->Gspos("I096",10,"I098",15.2714,-17.6241,0.0,idrotm[914],"MANY");
4166   gMC->Gspos("I096",21,"I098",19.1553,-12.3104,0.0,idrotm[915],"MANY");
4167   gMC->Gspos("I096",12,"I098",22.3754,-6.57,0.0,idrotm[916],"MANY");
4168   gMC->Gspos("I094",1,"I097",0.0,0.0,0.0,0,"ONLY");
4169   gMC->Gspos("I096",1,"I097",13.87,0.0,0.0,idrotm[894],"MANY");
4170   gMC->Gspos("I096",32,"I097",13.037,6.2783,0.0,idrotm[917],"MANY");
4171   gMC->Gspos("I096",25,"I097",8.6478,10.844,0.0,idrotm[918],"MANY");
4172   gMC->Gspos("I096",34,"I097",3.2199,14.1072,0.0,idrotm[919],"MANY");
4173   gMC->Gspos("I096",27,"I097",-3.0864,13.5223,0.0,idrotm[920],"MANY");
4174   gMC->Gspos("I096",36,"I097",-9.0219,11.3131,0.0,idrotm[921],"MANY");
4175   gMC->Gspos("I096",29,"I097",-12.4964,6.018,0.0,idrotm[922],"MANY");
4176   gMC->Gspos("I096",2,"I097",-14.47,0.0,0.0,idrotm[906],"MANY");
4177   gMC->Gspos("I096",31,"I097",-12.4964,-6.018,0.0,idrotm[923],"MANY");
4178   gMC->Gspos("I096",26,"I097",-9.0219,-11.3131,0.0,idrotm[924],"MANY");
4179   gMC->Gspos("I096",33,"I097",-3.0864,-13.5223,0.0,idrotm[925],"MANY");
4180   gMC->Gspos("I096",28,"I097",3.2199,-14.1072,0.0,idrotm[926],"MANY");
4181   gMC->Gspos("I096",35,"I097",8.6478,-10.844,0.0,idrotm[927],"MANY");
4182   gMC->Gspos("I096",30,"I097",13.037,-6.2783,0.0,idrotm[928],"MANY");
4183   
4184   
4185   // --- Place volumes of SSD cone ----------------------------------    
4186
4187     
4188   gMC->Gspos("I212",2,"IS01",0.0,0.0,0.0,idrotm[701],"MANY");
4189   gMC->Gspos("I212",1,"IS01",0.0,0.0,0.0,0,"MANY");
4190   gMC->Gspos("I211",1,"IS01",0.0,0.0,-56.5,0,"ONLY");
4191   gMC->Gspos("I217",1,"IS01",0.0,0.0,-44.4,0,"ONLY");             // this will change after PPR to be symmetric
4192   gMC->Gspos("I219",1,"IS01",0.0,0.0,-50.25,0,"ONLY");            // this will change after PPR to be symmetric
4193   gMC->Gspos("I211",2,"IS01",0.0,0.0,56.5,idrotm[701],"ONLY");   
4194   gMC->Gspos("I219",2,"IS01",0.0,0.0,51.65,idrotm[701],"ONLY");   // this will change after PPR to be symmetric
4195   gMC->Gspos("I217",2,"IS01",0.0,0.0,45.8,idrotm[701],"ONLY");    // this will change after PPR to be symmetric
4196   gMC->Gspos("I214",2,"IS01",0.0,0.0,67.25,idrotm[701],"ONLY");   
4197   gMC->Gspos("I213",2,"IS01",0.0,0.0,62.25,idrotm[701],"ONLY");  
4198   gMC->Gspos("I213",1,"IS01",0.0,0.0,-62.25,0,"ONLY");             
4199   gMC->Gspos("I214",1,"IS01",0.0,0.0,-67.25,0,"ONLY");           
4200   gMC->Gspos("I215",19,"IS01",0.0,0.0,0.0,idrotm[702],"MANY");
4201   gMC->Gspos("I215",21,"IS01",0.0,0.0,0.0,idrotm[703],"MANY");
4202   gMC->Gspos("I215",23,"IS01",0.0,0.0,0.0,idrotm[704],"MANY");
4203   gMC->Gspos("I215",24,"IS01",0.0,0.0,0.0,idrotm[705],"MANY");
4204   gMC->Gspos("I215",3,"IS01",0.0,0.0,0.0,idrotm[706],"MANY");
4205   gMC->Gspos("I215",5,"IS01",0.0,0.0,0.0,idrotm[707],"MANY");
4206   gMC->Gspos("I215",7,"IS01",0.0,0.0,0.0,idrotm[708],"MANY");
4207   gMC->Gspos("I215",9,"IS01",0.0,0.0,0.0,idrotm[709],"MANY");
4208   gMC->Gspos("I215",11,"IS01",0.0,0.0,0.0,idrotm[710],"MANY");
4209   gMC->Gspos("I215",13,"IS01",0.0,0.0,0.0,idrotm[711],"MANY");
4210   gMC->Gspos("I215",15,"IS01",0.0,0.0,0.0,idrotm[712],"MANY");
4211   gMC->Gspos("I215",17,"IS01",0.0,0.0,0.0,idrotm[713],"MANY");
4212   gMC->Gspos("I216",9,"IS01",0.0,0.0,45.5,idrotm[714],"ONLY");
4213   gMC->Gspos("I216",11,"IS01",0.0,0.0,45.5,idrotm[715],"ONLY");
4214   gMC->Gspos("I216",12,"IS01",0.0,0.0,45.5,idrotm[716],"ONLY");
4215   gMC->Gspos("I216",3,"IS01",0.0,0.0,45.5,idrotm[717],"ONLY");
4216   gMC->Gspos("I216",5,"IS01",0.0,0.0,45.5,idrotm[718],"ONLY");
4217   gMC->Gspos("I216",7,"IS01",0.0,0.0,45.5,idrotm[719],"ONLY");
4218   gMC->Gspos("I216",10,"IS01",0.0,0.0,-44,idrotm[720],"ONLY");
4219   gMC->Gspos("I216",1,"IS01",0.0,0.0,-44,idrotm[721],"ONLY");
4220   gMC->Gspos("I216",2,"IS01",0.0,0.0,-44,idrotm[722],"ONLY");
4221   gMC->Gspos("I216",4,"IS01",0.0,0.0,-44,idrotm[723],"ONLY");
4222   gMC->Gspos("I216",6,"IS01",0.0,0.0,-44,idrotm[724],"ONLY");
4223   gMC->Gspos("I216",8,"IS01",0.0,0.0,-44,idrotm[725],"ONLY");
4224   gMC->Gspos("I215",1,"IS01",0.0,0.0,0.0,idrotm[726],"MANY");
4225   gMC->Gspos("I215",2,"IS01",0.0,0.0,0.0,idrotm[727],"MANY");
4226   gMC->Gspos("I215",4,"IS01",0.0,0.0,0.0,idrotm[728],"MANY");
4227   gMC->Gspos("I215",6,"IS01",0.0,0.0,0.0,idrotm[729],"MANY");
4228   gMC->Gspos("I215",8,"IS01",0.0,0.0,0.0,idrotm[733],"MANY");
4229   gMC->Gspos("I215",10,"IS01",0.0,0.0,0.0,idrotm[730],"MANY");
4230   gMC->Gspos("I215",12,"IS01",0.0,0.0,0.0,idrotm[731],"MANY");
4231   gMC->Gspos("I215",14,"IS01",0.0,0.0,0.0,idrotm[768],"MANY");
4232   gMC->Gspos("I215",16,"IS01",0.0,0.0,0.0,idrotm[732],"MANY");
4233   gMC->Gspos("I215",18,"IS01",0.0,0.0,0.0,idrotm[734],"MANY");
4234   gMC->Gspos("I215",20,"IS01",0.0,0.0,0.0,idrotm[798],"MANY");
4235   gMC->Gspos("I215",22,"IS01",0.0,0.0,0.0,idrotm[735],"MANY");
4236            
4237                     
4238   // --- Place subdetectors' mother volumes and supports' mother volumes
4239   //     into ITS mother volume ITSD
4240     
4241   gMC->Gspos("IT12",1,"ITSD",0.0,0.0,0.0,0,"MANY");  // SPD mother volume
4242   gMC->Gspos("IT34",1,"ITSD",0.0,0.0,0.0,0,"MANY");  // SDD mother volume
4243   gMC->Gspos("IT56",1,"ITSD",0.0,0.0,0.0,0,"MANY");  // SSD mother volume
4244   gMC->Gspos("IS02",1,"ITSD",0.0,0.0,0.0,0,"MANY");  // SDD cones/supports
4245   gMC->Gspos("IS01",1,"ITSD",0.0,0.0,0.0,0,"MANY");  // SSD cones/supports
4246         
4247
4248   // ****************************  SERVICES  *********************************
4249   
4250
4251   // --- DEFINE CABLES AT THE END OF THE ITS CONES - COPPER PART
4252   //     UPPER PART
4253
4254   dgh[0] = 46.;    
4255   dgh[1] = 46.+1.0;  
4256   dgh[2] = 9.5;
4257   dgh[3] = 12.;
4258   dgh[4] = 168.;
4259   
4260   gMC->Gsvolu("I1CU", "TUBS", idtmed[213], dgh, 5);  
4261   gMC->Gspos("I1CU", 1, "ITSV", 0., 0., 83.5, 0, "ONLY");
4262   gMC->Gspos("I1CU", 2, "ITSV", 0., 0., -83.5, idrotm[200], "ONLY");
4263   
4264   // --- DEFINE CABLES AT THE END OF THE ITS CONES - COPPER PART
4265   //     LOWER PART
4266
4267   dgh[0] = 46.;    
4268   dgh[1] = 46.+1.0;  
4269   dgh[2] = 9.5;
4270   dgh[3] = 192.;
4271   dgh[4] = 348.;
4272   
4273   gMC->Gsvolu("I2CU", "TUBS", idtmed[213], dgh, 5);  
4274   gMC->Gspos("I2CU", 1, "ITSV", 0., 0., 83.5, 0, "ONLY");
4275   gMC->Gspos("I2CU", 2, "ITSV", 0., 0., -83.5, idrotm[200], "ONLY");
4276
4277
4278   // --- DEFINE CABLES AT THE END OF THE ITS CONES - CARBON PART
4279   //     UPPER PART
4280   
4281   dgh[0] = 46.+1.0;  
4282   dgh[1] = 46.+1.0+1.5;   
4283   dgh[2] = 9.5;
4284   dgh[3] = 12.;
4285   dgh[4] = 168.;
4286   
4287   gMC->Gsvolu("I1CC", "TUBS", idtmed[225], dgh, 5);  
4288   gMC->Gspos("I1CC", 1, "ITSV", 0., 0., 83.5, 0, "ONLY");
4289   gMC->Gspos("I1CC", 2, "ITSV", 0., 0., -83.5, idrotm[200], "ONLY");  
4290   
4291   // --- DEFINE CABLES AT THE END OF THE ITS CONES - CARBON PART
4292   //     LOWER PART
4293   
4294   dgh[0] = 46.+1.0;  
4295   dgh[1] = 46.+1.0+1.5;   
4296   dgh[2] = 9.5;
4297   dgh[3] = 192.;
4298   dgh[4] = 348.;
4299   
4300   gMC->Gsvolu("I2CC", "TUBS", idtmed[225], dgh, 5);  
4301   gMC->Gspos("I2CC", 1, "ITSV", 0., 0., 83.5, 0, "ONLY");
4302   gMC->Gspos("I2CC", 2, "ITSV", 0., 0., -83.5, idrotm[200], "ONLY");  
4303
4304
4305   // --- DEFINE PATCH PANELS AT THE END OF THE ITS CONES
4306   //     UPPER PART
4307   
4308   dgh[0] = 46.;  
4309   dgh[1] = 56.;
4310   dgh[2] = 2.25;
4311   dgh[3] = 12.;
4312   dgh[4] = 168.;
4313   
4314   gMC->Gsvolu("IPA1", "TUBS", idtmed[210], dgh, 5);  
4315   gMC->Gspos("IPA1", 1, "ITSV", 0., 0., 95.25, 0, "ONLY");  
4316   gMC->Gspos("IPA1", 2, "ITSV", 0., 0., -95.25, idrotm[200], "ONLY"); 
4317   
4318   // --- DEFINE PATCH PANELS AT THE END OF THE ITS CONES
4319   //     LOWER PART
4320   
4321   dgh[0] = 46.;  
4322   dgh[1] = 56.;
4323   dgh[2] = 2.25;
4324   dgh[3] = 192.;
4325   dgh[4] = 348.;
4326   
4327   gMC->Gsvolu("IPA2", "TUBS", idtmed[210], dgh, 5);  
4328   gMC->Gspos("IPA2", 1, "ITSV", 0., 0., 95.25, 0, "ONLY");  
4329   gMC->Gspos("IPA2", 2, "ITSV", 0., 0., -95.25, idrotm[200], "ONLY"); 
4330
4331
4332   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - COPPER PART
4333   //     UPPER PART
4334   
4335   dgh[0] = (ztpc-97.5)/2.;
4336   dgh[1] = 46.2;     
4337   dgh[2] = 46.2+1.0;  
4338   dgh[3] = 62.3;     
4339   dgh[4] = 62.3+1.0;   
4340   dgh[5] = 12.;    
4341   dgh[6] = 168.;
4342   gMC->Gsvolu("ICU1", "CONS", idtmed[213], dgh, 7);    
4343   gMC->Gspos("ICU1", 1, "ITSV", 0., 0., 97.5+dgh[0], 0, "ONLY");   
4344   
4345   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - COPPER PART
4346   //     LOWER PART
4347   
4348   dgh[0] = (ztpc-97.5)/2.;
4349   dgh[1] = 46.2;      
4350   dgh[2] = 46.2+1.0;  
4351   dgh[3] = 62.3;      
4352   dgh[4] = 62.3+1.0;  
4353   dgh[5] = 192.;    
4354   dgh[6] = 348.;
4355   gMC->Gsvolu("ICU2", "CONS", idtmed[213], dgh, 7);    
4356   gMC->Gspos("ICU2", 1, "ITSV", 0., 0., 97.5+dgh[0], 0, "ONLY");  
4357
4358
4359    // -- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - CARBON PART
4360    //     UPPER PART
4361   
4362   dgh[0] = (ztpc-97.5)/2.;
4363   dgh[1] = 46.2+1.0;      
4364   dgh[2] = 46.2+1.0+1.5;  
4365   dgh[3] = 62.3+1.0;      
4366   dgh[4] = 62.3+1.0+1.5;  
4367   dgh[5] = 12.;    
4368   dgh[6] = 168.;  
4369   gMC->Gsvolu("ICC1", "CONS", idtmed[225], dgh, 7);    
4370   gMC->Gspos("ICC1", 1, "ITSV", 0., 0., 97.5+dgh[0], 0, "ONLY");   
4371   
4372   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE ABSORBER SIDE - CARBON PART
4373   //     LOWER PART
4374   
4375   dgh[0] = (ztpc-97.5)/2.;
4376   dgh[1] = 46.2+1.0;    
4377   dgh[2] = 46.2+1.0+1.5;
4378   dgh[3] = 62.3+1.0;    
4379   dgh[4] = 62.3+1.0+1.5;
4380   dgh[5] = 192.;    
4381   dgh[6] = 348.;  
4382   gMC->Gsvolu("ICC2", "CONS", idtmed[225], dgh, 7);    
4383   gMC->Gspos("ICC2", 1, "ITSV", 0., 0., 97.5+dgh[0], 0, "ONLY");  
4384    
4385   // -- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - COPPER PART
4386   //     UPPER PART
4387     
4388   dgh[0] = 62.; 
4389   dgh[1] = 74.5;
4390   dgh[2] = 0.5;
4391   dgh[3] = 12.;
4392   dgh[4] = 168.;
4393   gMC->Gsvolu("ICU3", "TUBS", idtmed[213], dgh, 5);    
4394   gMC->Gspos("ICU3", 1, "ITSV", 0., 0., ztpc+1.5+dgh[2], 0, "ONLY");  
4395
4396   // -- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - COPPER PART
4397   //     LOWER PART
4398   
4399   dgh[0] = 62.;  
4400   dgh[1] = 74.5;
4401   dgh[2] = 0.5;
4402   dgh[3] = 192.;
4403   dgh[4] = 348.;
4404   gMC->Gsvolu("ICU4", "TUBS", idtmed[213], dgh, 5);    
4405   gMC->Gspos("ICU4", 1, "ITSV", 0., 0., ztpc+1.5+dgh[2], 0, "ONLY");
4406
4407   // -- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - CARBON PART
4408   //    UPPER PART
4409
4410   dgh[0] = 62.1;  
4411   dgh[1] = 74.5;
4412   dgh[2] = 0.75;
4413   dgh[3] = 12.;
4414   dgh[4] = 168.;
4415   gMC->Gsvolu("ICC3", "TUBS", idtmed[225], dgh, 5);    
4416   gMC->Gspos("ICC3", 1, "ITSV", 0., 0., ztpc+dgh[2], 0, "ONLY");   
4417     
4418   // -- DEFINE CABLES/COOLING BEHIND THE TPC ON THE ABSORBER SIDE - CARBON PART
4419   //    LOWER PART
4420
4421   dgh[0] = 62.1;  
4422   dgh[1] = 74.5;
4423   dgh[2] = 0.75;
4424   dgh[3] = 192.;
4425   dgh[4] = 348.;
4426   gMC->Gsvolu("ICC4", "TUBS", idtmed[225], dgh, 5);    
4427   gMC->Gspos("ICC4", 1, "ITSV", 0., 0., ztpc+dgh[2], 0, "ONLY");  
4428   
4429   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
4430   //     THE ABSORBER - COPPER PART - UPPER PART
4431   
4432   dgh[0] = 46.;      
4433   dgh[1] = 46.+1.0;  
4434   dgh[2] = (ztpc-97.5+1.5)/2.;
4435   dgh[3] = 12.;
4436   dgh[4] = 168.;
4437   gMC->Gsvolu("ICU5", "TUBS", idtmed[213], dgh, 5);   
4438   gMC->Gspos("ICU5", 1, "ITSV", 0., 0., -97.5-dgh[2], 0, "ONLY");  
4439   
4440   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
4441   //     THE ABSORBER - COPPER PART - LOWER PART
4442   
4443   dgh[0] = 46.;  
4444   dgh[1] = 46.+1.0;  
4445   dgh[2] = (ztpc-97.5+1.5)/2.;
4446   dgh[3] = 192.;
4447   dgh[4] = 348.;  
4448   gMC->Gsvolu("ICU6", "TUBS", idtmed[213], dgh, 5);   
4449   gMC->Gspos("ICU6", 1, "ITSV", 0., 0., -97.5-dgh[2], 0, "ONLY");    
4450   
4451   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
4452   //     THE ABSORBER - CARBON PART - UPPER PART
4453   
4454   dgh[0] = 46.+1.0;  
4455   dgh[1] = 46.+1.0+1.5; 
4456   dgh[2] = (ztpc-97.5)/2.;
4457   dgh[3] = 12.;
4458   dgh[4] = 168.;  
4459   gMC->Gsvolu("ICC5", "TUBS", idtmed[225], dgh, 5);   
4460   gMC->Gspos("ICC5", 1, "ITSV", 0., 0., -97.5-dgh[2], 0, "ONLY");   
4461   
4462   // --- DEFINE CABLES/COOLING BELOW THE TPC ON THE OTHER SIDE W.R.T.
4463   //     THE ABSORBER - CARBON PART - LOWER PART
4464   
4465   dgh[0] = 46.+1.0;   
4466   dgh[1] = 46.+1.0+1.5;  
4467   dgh[2] = (ztpc-97.5)/2.;
4468   dgh[3] = 192.;
4469   dgh[4] = 348.;  
4470   gMC->Gsvolu("ICC6", "TUBS", idtmed[225], dgh, 5);   
4471   gMC->Gspos("ICC6", 1, "ITSV", 0., 0., -97.5-dgh[2], 0, "ONLY");      
4472
4473   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
4474   //     COPPER PART - UPPER PART
4475     
4476   dgh[0] = 46.;   
4477   dgh[1] = 74.5;
4478   dgh[2] = 0.5;
4479   dgh[3] = 12.;
4480   dgh[4] = 168.;  
4481   gMC->Gsvolu("ICU7", "TUBS", idtmed[213], dgh, 5);   
4482   gMC->Gspos("ICU7", 1, "ITSV", 0., 0., -(ztpc+1.5+dgh[2]), 0, "ONLY");  
4483   
4484   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
4485   //     COPPER PART - LOWER PART
4486     
4487   dgh[0] = 46.; 
4488   dgh[1] = 74.5;
4489   dgh[2] = 0.5;
4490   dgh[3] = 192.;
4491   dgh[4] = 348.;   
4492   gMC->Gsvolu("ICU8", "TUBS", idtmed[213], dgh, 5);   
4493   gMC->Gspos("ICU8", 1, "ITSV", 0., 0., -(ztpc+1.5+dgh[2]), 0, "ONLY");      
4494     
4495   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
4496   //     CARBON PART - UPPER PART
4497   
4498   dgh[0] = 46.+1.0;  
4499   dgh[1] = 74.5;
4500   dgh[2] = 0.75;
4501   dgh[3] = 12.;
4502   dgh[4] = 168.;   
4503   gMC->Gsvolu("ICC7", "TUBS", idtmed[225], dgh, 5);   
4504   gMC->Gspos("ICC7", 1, "ITSV", 0., 0., -(ztpc+dgh[2]), 0, "ONLY"); 
4505   
4506   // --- DEFINE CABLES/COOLING BEHIND THE TPC ON OTHER SIDE W.R.T. THE ABSORBER
4507   //     CARBON PART - LOWER PART
4508   
4509   dgh[0] = 46.+1.0;  
4510   dgh[1] = 74.5;
4511   dgh[2] = 0.75;
4512   dgh[3] = 192.;
4513   dgh[4] = 348.;     
4514   gMC->Gsvolu("ICC8", "TUBS", idtmed[225], dgh, 5);   
4515   gMC->Gspos("ICC8", 1, "ITSV", 0., 0., -(ztpc+dgh[2]), 0, "ONLY");        
4516     
4517   // --- DEFINE HOOK TO THE TPC ON OTHER SIDE W.R.T. THE ABSORBER - UPPER PART
4518   
4519   dgh[0] = 74.5;
4520   dgh[1] = 79.5;
4521   dgh[2] = 2.5;
4522   dgh[3] = 12.;
4523   dgh[4] = 168.;    
4524   gMC->Gsvolu("IHK1", "TUBS", idtmed[264], dgh, 5);  
4525   gMC->Gspos("IHK1", 1, "ITSV", 0., 0., -ztpc-dgh[2], 0, "ONLY");   
4526   
4527   // --- DEFINE HOOK TO THE TPC ON OTHER SIDE W.R.T. THE ABSORBER - LOWER PART
4528   
4529   dgh[0] = 74.5;
4530   dgh[1] = 79.5;
4531   dgh[2] = 2.5;
4532   dgh[3] = 192.;
4533   dgh[4] = 348.;    
4534   gMC->Gsvolu("IHK2", "TUBS", idtmed[264], dgh, 5);  
4535   gMC->Gspos("IHK2", 1, "ITSV", 0., 0., -ztpc-dgh[2], 0, "ONLY");      
4536   
4537   // --- DEFINE RAILS BETWEEN THE ITS AND THE TPC
4538   
4539   if (rails == 1) {
4540   
4541      dgh[0] = 2.;          
4542      dgh[1] = 8.;           
4543      dgh[2] = 190.;         
4544      gMC->Gsvolu("IRA1", "BOX ", idtmed[268], dgh, 3);
4545      gMC->Gspos("IRA1", 1, "ITSV", 53.5, 0., -69.5, 0, "ONLY");   
4546      gMC->Gsvolu("IRA2", "BOX ", idtmed[268], dgh, 3);    
4547      gMC->Gspos("IRA2", 1, "ITSV", -53.5, 0., -69.5, 0, "ONLY");    
4548
4549      dgh[0] = 2.-0.5;// 0.5 was determined in such a way that the aluminum area is 20.9 cm^2      
4550      dgh[1] = 8.-0.5;// 0.5 was determined in such a way that the aluminum area is 20.9 cm^2       
4551      dgh[2] = 190.;         
4552      gMC->Gsvolu("IRA3", "BOX ", idtmed[205], dgh, 3);   
4553      gMC->Gspos("IRA3", 1, "IRA1", 0., 0., 0., 0, "ONLY");   
4554      gMC->Gsvolu("IRA4", "BOX ", idtmed[205], dgh, 3);     
4555      gMC->Gspos("IRA4", 1, "IRA2", 0., 0., 0., 0, "ONLY");    
4556
4557   }
4558
4559   // --- DEFINE CYLINDERS HOLDING RAILS BETWEEN THE ITS AND THE TPC
4560   
4561   dgh[0] = 56.9;    
4562   dgh[1] = 59.;
4563   dgh[2] = 0.6;    
4564   gMC->Gsvolu("ICYL", "TUBE", idtmed[210], dgh, 3);   
4565   gMC->Gspos("ICYL", 1, "ALIC", 0., 0., -74.1,idrotm[199], "ONLY");   
4566   gMC->Gspos("ICYL", 2, "ALIC", 0., 0., 74.1, 0, "ONLY"); 
4567
4568   // --- DEFINE SUPPORTS FOR RAILS ATTACHED TO THE CYLINDERS
4569
4570   dgh[0] = 0.;        
4571   dgh[1] = 3.;
4572   dgh[2] = 5.;// 5. comes from the fact that the volume has to be 567.6/2 cm^3
4573   gMC->Gsvolu("ISR1", "TUBE", idtmed[284], dgh, 3);   
4574   gMC->Gspos("ISR1", 1, "ITSV", 53.4292, 10.7053, 79.75, 0, "ONLY");    
4575   gMC->Gspos("ISR1", 2, "ITSV", 53.4292, -10.7053, 79.75, 0, "ONLY");   
4576   gMC->Gspos("ISR1", 3, "ITSV", -53.4292, 10.7053, 79.75, 0, "ONLY"); 
4577   gMC->Gspos("ISR1", 4, "ITSV", -53.4292, -10.7053, 79.75, 0, "ONLY");  
4578   gMC->Gspos("ISR1", 5, "ITSV", 53.4292, 10.7053, -79.75, 0, "ONLY");   
4579   gMC->Gspos("ISR1", 6, "ITSV", 53.4292, -10.7053, -79.75, 0, "ONLY");   
4580   gMC->Gspos("ISR1", 7, "ITSV", -53.4292, 10.7053, -79.75, 0, "ONLY"); 
4581   gMC->Gspos("ISR1", 8, "ITSV", -53.4292, -10.7053, -79.75, 0, "ONLY");
4582   
4583   // --- DEFINE SUPPORTS FOR RAILS ATTACHED TO THE ABSORBER
4584
4585   dgh[0] = 5.;        
4586   dgh[1] = 12.;         
4587   dgh[2] = 5.;         
4588   gMC->Gsvolu("ISR2", "BOX ", idtmed[210], dgh, 3);   
4589   gMC->Gspos("ISR2", 1, "ITSV", -53.5, 0., -125.5, idrotm[199], "MANY");
4590   gMC->Gsvolu("ISR3", "BOX ", idtmed[210], dgh, 3);   
4591   gMC->Gspos("ISR3", 1, "ITSV", 53.5, 0., -125.5, idrotm[199], "MANY");  
4592   
4593   dgh[0] = 5.-2.;        
4594   dgh[1] = 12.-2.;         
4595   dgh[2] = 5.;         
4596   gMC->Gsvolu("ISR4", "BOX ", idtmed[205], dgh, 3);   
4597   gMC->Gspos("ISR4", 1, "ISR2", 0., 0., 0., 0, "ONLY");     
4598   gMC->Gsvolu("ISR5", "BOX ", idtmed[205], dgh, 3);   
4599   gMC->Gspos("ISR5", 1, "ISR3", 0., 0., 0., 0, "ONLY");
4600   
4601   // --- DEFINE SUPPORTS TO ATTACH THE ITS TO THE TPC
4602   
4603   dgh[0] = 0.;        
4604   dgh[1] = 5.;         
4605   dgh[2] = 2.;         
4606   gMC->Gsvolu("ISR6", "TUBE", idtmed[210], dgh, 3);   
4607   gMC->Gspos("ISR6", 1, "ITSV", 0., 54., -77., idrotm[199], "MANY"); 
4608   gMC->Gspos("ISR6", 2, "ITSV", 0., 54., 77., idrotm[199], "MANY"); 
4609   gMC->Gspos("ISR6", 3, "ITSV", 0., -54., 77., idrotm[199], "MANY");                   
4610
4611   // --- Outputs the geometry tree in the EUCLID/CAD format 
4612   
4613   if (fEuclidOut) {
4614     gMC->WriteEuclid("ITSgeometry", "ITSV", 1, 5);
4615   }
4616
4617 }
4618 //______________________________________________________________________
4619 void AliITSvPPRasymmFMD::CreateMaterials(){
4620     // Create ITS materials
4621     //     This function defines the default materials used in the Geant
4622     // Monte Carlo simulations for the geometries AliITSv1, AliITSv3,
4623     // AliITSvPPRasymmFMD.
4624     // In general it is automatically replaced by
4625     // the CreatMaterials routine defined in AliITSv?. Should the function
4626     // CreateMaterials not exist for the geometry version you are using this
4627     // one is used. See the definition found in AliITSv5 or the other routine
4628     // for a complete definition.
4629     // Inputs:
4630     //   none.
4631     // Outputs:
4632     //   none.
4633     // Return:
4634     //   none.
4635
4636     Int_t   ifield = gAlice->Field()->Integ();
4637     Float_t fieldm = gAlice->Field()->Max();
4638
4639     Float_t tmaxfd = 0.1; // 1.0; // Degree
4640     Float_t stemax = 1.0; // cm
4641     Float_t deemax = 0.1; // 30.0; // Fraction of particle's energy 0<deemax<=1
4642     Float_t epsil  = 1.0E-4; // 1.0; // cm
4643     Float_t stmin  = 0.0; // cm "Default value used"
4644
4645     Float_t tmaxfdSi = 0.1; // .10000E+01; // Degree
4646     Float_t stemaxSi = 0.0075; //  .10000E+01; // cm
4647     Float_t deemaxSi = 0.1; // 0.30000E-02; // Fraction of particle's energy 0<deemax<=1
4648     Float_t epsilSi  = 1.0E-4;// .10000E+01;
4649     Float_t stminSi  = 0.0; // cm "Default value used"
4650
4651     Float_t tmaxfdAir = 0.1; // .10000E+01; // Degree
4652     Float_t stemaxAir = .10000E+01; // cm
4653     Float_t deemaxAir = 0.1; // 0.30000E-02; // Fraction of particle's energy 0<deemax<=1
4654     Float_t epsilAir  = 1.0E-4;// .10000E+01;
4655     Float_t stminAir  = 0.0; // cm "Default value used"
4656
4657     Float_t tmaxfdServ = 1.0; // 10.0; // Degree
4658     Float_t stemaxServ = 1.0; // 0.01; // cm
4659     Float_t deemaxServ = 0.5; // 0.1; // Fraction of particle's energy 0<deemax<=1
4660     Float_t epsilServ  = 1.0E-3; // 0.003; // cm
4661     Float_t stminServ  = 0.0; //0.003; // cm "Default value used"
4662
4663     // Freon
4664     Float_t afre[2]  = { 12.011,18.9984032 };
4665     Float_t zfre[2]  = { 6., 9. };
4666     Float_t wfre[2]  = { 5.,12. };
4667     Float_t densfre  = 1.5;
4668
4669     // --- Define the various materials and media for GEANT --- 
4670     // AliMaterial(Int_t imat, const char* name, Float_t a, Float_t z,
4671     //              Float_t dens, Float_t radl, Float_t absl,
4672     //              Float_t *buf=0, Int_t nwbuf=0)
4673     //AliMedium(Int_t numed, const char *name, Int_t nmat,
4674     //          Int_t isvol, Int_t ifield, Float_t fieldm,
4675     //          Float_t tmaxfd, Float_t stemax, Float_t deemax,
4676     //          Float_t epsil, Float_t stmin, Float_t *ubuf=0, Int_t nbuf=0)
4677     AliMaterial(1,"SI$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4678     AliMedium(1,"SI$",1,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4679
4680     AliMaterial(2,"SPD SI CHIP$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4681     AliMedium(2,"SPD SI CHIP$",2,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4682
4683     AliMaterial(3,"SPD SI BUS$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4684     AliMedium(3,"SPD SI BUS$",3,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4685
4686     AliMaterial(4,"C (M55J)$",0.12011E+02,0.60000E+01,0.1930E+01,0.22100E+02,0.99900E+03);
4687     AliMedium(4,"C (M55J)$",4,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4688
4689     AliMaterial(5,"AIR$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4690     AliMedium(5,"AIR$",5,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4691
4692     AliMaterial(6,"GEN AIR$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4693     AliMedium(6,"GEN AIR$",6,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4694
4695     AliMaterial(7,"SDD SI CHIP$",0.374952E+02,0.178184E+02,0.24485E+01,0.76931E+01,0.99900E+03);
4696     AliMedium(7,"SDD SI CHIP$",7,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4697
4698     AliMaterial(9,"SDD C (M55J)$",0.123565E+02,0.64561E+01,0.18097E+01,0.229570E+02,0.99900E+03);
4699     AliMedium(9,"SDD C (M55J)$",9,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4700
4701     AliMaterial(10,"SDD AIR$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4702     AliMedium(10,"SDD AIR$",10,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4703
4704     AliMaterial(11,"AL$",0.26982E+02,0.13000E+02,0.26989E+01,0.89000E+01,0.99900E+03);
4705     AliMedium(11,"AL$",11,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4706
4707     AliMaterial(12,"WATER$",0.14322E+02,0.72167E+01,0.10000E+01,0.35759E+02,0.94951E+02);
4708     AliMedium(12,"WATER$",12,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4709
4710     AliMixture(13,"Freon$",afre,zfre,densfre,-2,wfre);
4711     AliMedium(13,"Freon$",13,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4712
4713     AliMaterial(14,"COPPER$",0.63546E+02,0.29000E+02,0.89600E+01,0.14300E+01,0.99900E+03);
4714     AliMedium(14,"COPPER$",14,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4715
4716     AliMaterial(15,"CERAMICS$",0.22314E+02,0.10856E+02,0.36000E+01,0.76200E+01,0.31901E+02);
4717     AliMedium(15,"CERAMICS$",15,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4718
4719     AliMaterial(20,"SSD C (M55J)$",0.12011E+02,0.60000E+01,0.1930E+01,0.22100E+02,0.99900E+03);
4720     AliMedium(20,"SSD C (M55J)$",20,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4721
4722     AliMaterial(21,"SSD AIR$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4723     AliMedium(21,"SSD AIR$",21,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4724
4725     AliMaterial(25,"G10FR4$",0.17749E+02,0.88750E+01,0.18000E+01,0.21822E+02,0.99900E+03);
4726     AliMedium(25,"G10FR4$",25,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4727
4728     AliMaterial(26,"GEN C (M55J)$",0.12011E+02,0.60000E+01,0.1930E+01,0.22100E+02,0.99900E+03);
4729     AliMedium(26,"GEN C (M55J)$",26,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4730
4731     AliMaterial(27,"GEN Air$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4732     AliMedium(27,"GEN Air$",27,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4733
4734     AliMaterial(51,"SPD SI$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4735     AliMedium(51,"SPD SI$",51,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4736
4737     AliMaterial(52,"SPD SI CHIP$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4738     AliMedium(52,"SPD SI CHIP$",52,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4739
4740     AliMaterial(53,"SPD SI BUS$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4741     AliMedium(53,"SPD SI BUS$",53,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4742
4743     AliMaterial(54,"SPD C (M55J)$",0.12011E+02,0.60000E+01,0.1930E+01,0.22100E+02,0.99900E+03);
4744     AliMedium(54,"SPD C (M55J)$",54,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4745
4746     AliMaterial(55,"SPD AIR$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4747     AliMedium(55,"SPD AIR$",55,0,ifield,fieldm,tmaxfdAir,stemaxAir,deemaxAir,epsilAir,stminAir);
4748
4749     AliMaterial(56,"SPD KAPTON(POLYCH2)$",0.14000E+02,0.71770E+01,0.13000E+01,0.31270E+02,0.99900E+03);
4750     AliMedium(56,"SPD KAPTON(POLYCH2)$",56,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4751
4752     AliMaterial(61,"EPOXY$",0.17749E+02,0.88750E+01,0.18000E+01,0.21822E+02,0.99900E+03);
4753     AliMedium(61,"EPOXY$",61,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4754
4755     AliMaterial(62,"SILICON$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4756     AliMedium(62,"SILICON$",62,0,ifield,fieldm,tmaxfdSi,stemaxSi,deemaxSi,epsilSi,stminSi);
4757
4758     AliMaterial(63,"KAPTONH(POLYCH2)$",0.14000E+02,0.71770E+01,0.13000E+01,0.31270E+02,0.99900E+03);
4759     AliMedium(63,"KAPTONH(POLYCH2)$",63,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4760
4761     AliMaterial(64,"ALUMINUM$",0.26982E+02,0.13000E+02,0.26989E+01,0.89000E+01,0.99900E+03);
4762     AliMedium(64,"ALUMINUM$",64,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4763
4764     AliMaterial(65,"INOX$",0.55098E+02,0.2572E+02,0.7900E+01,0.17800E+01,0.99900E+03);
4765     AliMedium(65,"INOX$",65,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4766
4767     AliMaterial(68,"ROHACELL$",0.123974E+02,0.62363E+01,0.500E-01,0.80986E+03,0.99900E+03);
4768     AliMedium(68,"ROHACELL$",68,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4769
4770     AliMaterial(69,"SDD C AL (M55J)$",0.138802E+02,0.71315E+01,0.19837E+01,0.176542E+02,0.99900E+03);
4771     AliMedium(69,"SDD C AL (M55J)$",69,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4772   
4773     AliMaterial(70,"SDDKAPTON (POLYCH2)$",0.14000E+02,0.71770E+01,0.13000E+01,0.31270E+02,0.99900E+03);
4774     AliMedium(70,"SDDKAPTON (POLYCH2)$",70,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4775
4776     AliMaterial(71,"ITS SANDW A$",0.12011E+02,0.60000E+01,0.2115E+00,0.17479E+03,0.99900E+03);
4777     AliMedium(71,"ITS SANDW A$",71,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4778
4779     AliMaterial(72,"ITS SANDW B$",0.12011E+02,0.60000E+01,0.27000E+00,0.18956E+03,0.99900E+03);
4780     AliMedium(72,"ITS SANDW B$",72,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4781
4782     AliMaterial(73,"ITS SANDW C$",0.12011E+02,0.60000E+01,0.41000E+00,0.90868E+02,0.99900E+03);
4783     AliMedium(73,"ITS SANDW C$",73,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4784
4785     AliMaterial(74,"HEAT COND GLUE$",0.12011E+02,0.60000E+01,0.1930E+01,0.22100E+02,0.99900E+03);
4786     AliMedium(74,"HEAT COND GLUE$",74,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4787
4788     AliMaterial(75,"ELASTO SIL$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4789     AliMedium(75,"ELASTO SIL$",75,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4790
4791     AliMaterial(76,"SPDBUS(AL+KPT+EPOX)$",0.19509E+02,0.96502E+01,0.19060E+01,0.15413E+02,0.99900E+03);
4792     AliMedium(76,"SPDBUS(AL+KPT+EPOX)$",76,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4793                
4794     AliMaterial(77,"SDD X7R capacitors$",0.1157516E+03,0.477056E+02,0.67200E+01,0.14236E+01,0.99900E+03);
4795     AliMedium(77,"SDD X7R capacitors$",77,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4796
4797     AliMaterial(78,"SDD ruby sph. Al2O3$",0.218101E+02,0.106467E+02,0.39700E+01,0.48539E+01,0.99900E+03);
4798     AliMedium(78,"SDD ruby sph. Al2O3$",78,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4799
4800     AliMaterial(79,"SDD SI insensitive$",0.28086E+02,0.14000E+02,0.23300E+01,0.93600E+01,0.99900E+03);
4801     AliMedium(79,"SDD SI insensitive$",79,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4802
4803     AliMaterial(80,"SDD HV microcable$",0.159379E+02,0.78598E+01,0.16087E+01,0.217906E+02,0.99900E+03);
4804     AliMedium(80,"SDD HV microcable$",80,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4805
4806     AliMaterial(81,"SDD LV+signal cable$",0.223689E+02,0.108531+02,0.21035E+01,0.13440E+02,0.99900E+03);
4807     AliMedium(81,"SDD LV+signal cable$",81,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4808
4809     AliMaterial(82,"SDD hybrid microcab$",0.218254E+02,0.106001E+02,0.20502E+01,0.137308E+02,0.99900E+03);
4810     AliMedium(82,"SDD hybrid microcab$",82,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4811
4812     AliMaterial(83,"SDD anode microcab$",0.186438E+02,0.91193E+01,0.17854E+01,0.176451E+02,0.99900E+03);
4813     AliMedium(83,"SDD anode microcab$",83,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4814
4815     AliMaterial(84,"SDD/SSD rings$",0.123565E+02,0.64561E+01,0.18097E+01,0.229570E+02,0.99900E+03);
4816     AliMedium(84,"SDD/SSD rings$",84,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4817
4818     AliMaterial(85,"inox/alum$",0.321502E+02,0.153383E+02,0.30705E+01,0.69197E+01,0.99900E+03);
4819     AliMedium(85,"inox/alum$",85,0,ifield,fieldm,tmaxfd,stemax,deemax,epsil,stmin);
4820
4821     // special media to take into account services in the SDD and SSD 
4822     // cones for the FMD
4823     //Begin_Html
4824     /*
4825       <A HREF="http://www.Physics.ohio-state.edu/~nilsen/ITS/ITS_MatBudget_4B.xls">
4826       </pre>
4827       <br clear=left>
4828       <font size=+2 color=blue>
4829       <p> The Exel spread sheet from which these density number come from.
4830       </font></A>
4831     */
4832     //End_Html
4833
4834     //  AliMaterial(86,"AIRFMDSDD$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4835     Float_t aA[13],zZ[13],wW[13],den;
4836     // From Pierluigi Barberis calculations of 2SPD+1SDD October 2 2002.
4837     zZ[0] = 1.0; aA[0] = 1.00794; // Hydrogen
4838     zZ[1] = 6.0; aA[1] = 12.011; // Carbon
4839     zZ[2] = 7.0; aA[2] = 14.00674; // Nitrogen
4840     zZ[3] = 8.0; aA[3] = 15.9994; // Oxigen
4841     zZ[4] = 14.0; aA[4] = 28.0855; // Silicon
4842     zZ[5] = 24.0; aA[5] = 51.9961; //Cromium
4843     zZ[6] = 25.0; aA[6] = 54.938049; // Manganese
4844     zZ[7] = 26.0; aA[7] = 55.845; // Iron
4845     zZ[8] = 28.0; aA[8] = 58.6934; // Nickle
4846     zZ[9] = 29.0; aA[9] = 63.546; // Copper
4847     zZ[10] = 13.0; aA[10] = 26.981539; // Alulminum
4848     zZ[11] = 47.0; aA[11] = 107.8682; // Silver
4849     zZ[12] = 27.0; aA[12] = 58.9332; // Cobolt
4850     wW[0] = 0.019965;
4851     wW[1] = 0.340961;
4852     wW[2] = 0.041225;
4853     wW[3] = 0.200352;
4854     wW[4] = 0.000386;
4855     wW[5] = 0.001467;
4856     wW[6] = 0.000155;
4857     wW[7] = 0.005113;
4858     wW[8] = 0.000993;
4859     wW[9] = 0.381262;
4860     wW[10] = 0.008121;
4861     wW[11] = 0.000000;
4862     wW[12] = 0.000000;
4863     if(fByThick){// New values seeITS_MatBudget_4B.xls
4864         den = 1.5253276; // g/cm^3  Cell O370
4865     }else{
4866         den = 2.58423412; // g/cm^3 Cell L370
4867     } // end if fByThick
4868     //den = 6161.7/(3671.58978);//g/cm^3 Volume does not exclude holes
4869     AliMixture(86,"AIRFMDSDD$",aA,zZ,den,+11,wW);
4870     AliMedium(86,"AIRFMDSDD$",86,0,ifield,fieldm,tmaxfdAir,stemaxAir,
4871               deemaxAir,epsilAir,stminAir);
4872
4873     //AliMaterial(87,"AIRFMDSSD$",0.14610E+02,0.73000E+01,0.12050E-02,0.30423E+05,0.99900E+03);
4874     // From Pierluigi Barberis calculations of SSD October 2 2002.
4875     wW[0] = 0.019777;
4876     wW[1] = 0.325901;
4877     wW[2] = 0.031848;
4878     wW[3] = 0.147668;
4879     wW[4] = 0.030609;
4880     wW[5] = 0.013993;
4881     wW[6] = 0.001479;
4882     wW[7] = 0.048792;
4883     wW[8] = 0.009477;
4884     wW[9] = 0.350697;
4885     wW[10] = 0.014546;
4886     wW[11] = 0.005213;
4887     wW[12] = 0.000000;
4888     if(fByThick){// New values seeITS_MatBudget_4B.xls
4889         den = 1.2464275; // g/cm^3   Cell O403
4890     }else{
4891         den = 1.28134409; // g/cm^3  Cell L403
4892     } // end if fByThick
4893     //den = 7666.3/(9753.553259); // volume does not exclude holes
4894     AliMixture(87,"AIRFMDSSD$",aA,zZ,den,+12,wW); 
4895     AliMedium(87,"AIRFMDSSD$",87,0,ifield,fieldm,tmaxfdAir,stemaxAir,
4896               deemaxAir,epsilAir,stminAir);
4897
4898     //AliMaterial(88,"ITS SANDW CFMDSDD$",0.12011E+02,0.60000E+01,0.41000E+00,0.90868E+02,0.99900E+03);
4899     // From Pierluigi Barberis calculations of 1SDD+Carbon fiber October 2 2002
4900     wW[0] = 0.016302;
4901     wW[1] = 0.461870;
4902     wW[2] = 0.033662;
4903     wW[3] = 0.163595;
4904     wW[4] = 0.000315;
4905     wW[5] = 0.001197;
4906     wW[6] = 0.000127;
4907     wW[7] = 0.004175;
4908     wW[8] = 0.000811;
4909     wW[9] = 0.311315;
4910     wW[10] = 0.006631;
4911     wW[11] = 0.000000;
4912     wW[12] = 0.000000;
4913     if(fByThick){// New values seeITS_MatBudget_4B.xls
4914         den = 1.9353276; // g/cm^3  Cell N370
4915     }else{
4916         den = 3.2788626; // g/cm^3 Cell F370
4917     } // end if fByThick
4918     //den = 7667.1/(3671.58978); // Volume does not excludeholes
4919     AliMixture(88,"ITS SANDW CFMDSDD$",aA,zZ,den,+11,wW); 
4920     AliMedium(88,"ITS SANDW CFMDSDD$",88,0,ifield,fieldm,tmaxfd,stemax,
4921               deemax,epsil,stmin);
4922
4923     //AliMaterial(89,"ITS SANDW CFMDSSD$",0.12011E+02,0.60000E+01,0.41000E+00,0.90868E+02,0.99900E+03);
4924     // From Pierluigi Barberis calculations of SSD+Carbon fiber October 2 2002.
4925     wW[0] = 0.014065;
4926     wW[1] = 0.520598;
4927     wW[2] = 0.022650;
4928     wW[3] = 0.105018;
4929     wW[4] = 0.021768;
4930     wW[5] = 0.009952;
4931     wW[6] = 0.001051;
4932     wW[7] = 0.034700;
4933     wW[8] = 0.006740;
4934     wW[9] = 0.249406;
4935     wW[10] = 0.010345;
4936     wW[11] = 0.0003707;
4937     wW[12] = 0.000000;
4938     if(fByThick){// New values seeITS_MatBudget_4B.xls
4939         den = 1.6564275; // g/cm^3  Cell N304
4940     }else{
4941         den = 1.7028296; // g/cm^3  Cell F304
4942     } // end if fByThick
4943     //den = 1166.5/(3671.58978); // Volume does not exclude holes
4944     AliMixture(89,"ITS SANDW CFMDSSD$",aA,zZ,den,+12,wW); 
4945     AliMedium(89,"ITS SANDW CFMDSSD$",89,0,ifield,fieldm,tmaxfd,stemax,
4946               deemax,epsil,stmin);
4947
4948     //AliMaterial(97,"SPD SERVICES$",0.12011E+02,0.60000E+01,0.41000E+00,0.90868E+02,0.99900E+03);
4949     // From Pierluigi Barberis calculations of 1SPD October 2 2002.
4950     wW[0] = 0.005970;
4951     wW[1] = 0.304704;
4952     wW[2] = 0.042510;
4953     wW[3] = 0.121715;
4954     wW[4] = 0.001118;
4955     wW[5] = 0.030948;
4956     wW[6] = 0.003270;
4957     wW[7] = 0.107910;
4958     wW[8] = 0.020960;
4959     wW[9] = 0.360895;
4960     wW[10] = 0.000000;
4961     wW[11] = 0.000000;
4962     wW[12] = 0.000000;
4963     if(fByThick){// New values seeITS_MatBudget_4B.xls
4964         den = 80.31136576; // g/cm^3 Cell H329
4965     }else{
4966         den = 87.13062; // g/cm^3  Cell G329
4967     } // end if fByThick
4968     //den = 1251.3/(0.05*2.0*TMath::Pi()*(7.75*7.75 - 3.7*3.7)); // g/cm^3
4969     AliMixture(97,"SPD SERVICES$",aA,zZ,den,+10,wW); 
4970     AliMedium(97,"SPD SERVICES$",97,0,ifield,fieldm,tmaxfd,stemax,
4971               deemax,epsil,stmin);
4972
4973
4974     // Special media
4975
4976     AliMaterial(90,"SPD shield$", 12.011, 6., 1.93/10. , 22.1*10., 999);
4977     AliMedium(90,"SPD shield$",90,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4978
4979     AliMaterial(91, "SPD End ladder$", 47.0447, 21.7963, 3.6374, 4.4711, 999); 
4980     AliMedium(91,"SPD End ladder$",91,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4981
4982     AliMaterial(92, "SPD cone$",28.0855, 14., 2.33, 9.36, 999);    
4983     AliMedium(92,"SPD cone$",92,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4984
4985     AliMaterial(93, "SDD End ladder$", 69.9298, 29.8246, 0.3824, 36.5103, 999);
4986     AliMedium(93,"SDD End ladder$",93,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4987
4988     AliMaterial(94, "SDD cone$",63.546, 29., 1.15, 1.265, 999);
4989     AliMedium(94,"SDD cone$",94,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4990
4991     AliMaterial(95, "SSD End ladder$", 32.0988, 15.4021, 0.68, 35.3238, 999); 
4992     AliMedium(95,"SSD End ladder$",95,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4993   
4994     AliMaterial(96, "SSD cone$",63.546, 29., 1.15, 1.265, 999);
4995     AliMedium(96,"SSD cone$",96,0,ifield,fieldm,tmaxfdServ,stemaxServ,deemaxServ,epsilServ,stminServ);
4996 }
4997 //______________________________________________________________________
4998 void AliITSvPPRasymmFMD::InitAliITSgeom(){
4999     //     Based on the geometry tree defined in Geant 3.21, this
5000     // routine initilizes the Class AliITSgeom from the Geant 3.21 ITS geometry
5001     // sturture.
5002     // Inputs:
5003     //   none.
5004     // Outputs:
5005     //   none.
5006     // Return:
5007     //   none.
5008 //#if GEANTGEOMETRY
5009     if(strcmp(gMC->GetName(),"TGeant3")) {
5010         Error("InitAliITSgeom",
5011               "Wrong Monte Carlo. InitAliITSgeom uses TGeant3 calls");
5012         return;
5013     } // end if
5014     cout << "Reading Geometry transformation directly from Geant 3." << endl;
5015     const Int_t knlayers = 6;
5016     const Int_t kndeep = 9;
5017     Int_t itsGeomTreeNames[knlayers][kndeep],lnam[20],lnum[20];
5018     Int_t nlad[knlayers],ndet[knlayers];
5019     Double_t t[3],r[10];
5020     Float_t  par[20],att[20];
5021     Int_t    npar,natt,idshape,imat,imed;
5022     AliITSGeant3Geometry *ig = new AliITSGeant3Geometry();
5023     Int_t mod,lay,lad,det,i,j,k;
5024     Char_t names[knlayers][kndeep][4];
5025     Int_t itsGeomTreeCopys[knlayers][kndeep];
5026     if(fMinorVersion == 1){ // Option A
5027     const char *namesA[knlayers][kndeep] = {
5028      {"ALIC","ITSV","ITSD","IT12","I12A","I10A","I103","I101","ITS1"}, // lay=1
5029      {"ALIC","ITSV","ITSD","IT12","I12A","I20A","I1D3","I1D1","ITS2"}, // lay=2
5030      {"ALIC","ITSV","ITSD","IT34","I004","I302","ITS3","    ","    "}, // lay=3
5031      {"ALIC","ITSV","ITSD","IT34","I005","I402","ITS4","    ","    "}, // lay=4
5032      {"ALIC","ITSV","ITSD","IT56","I565","I562","ITS5","    ","    "}, // lay=5
5033      {"ALIC","ITSV","ITSD","IT56","I569","I566","ITS6","    ","    "}};// lay=6
5034     Int_t itsGeomTreeCopysA[knlayers][kndeep]= {{1,1,1,1,10, 2, 4,1,1},// lay=1
5035                                               {1,1,1,1,10, 4, 4,1,1},// lay=2
5036                                               {1,1,1,1,14, 6, 1,0,0},// lay=3
5037                                               {1,1,1,1,22, 8, 1,0,0},// lay=4
5038                                               {1,1,1,1,34,22, 1,0,0},// lay=5
5039                                               {1,1,1,1,38,25, 1,0,0}};//lay=6
5040     for(i=0;i<knlayers;i++)for(j=0;j<kndeep;j++){
5041         for(k=0;k<4;k++) names[i][j][k] = namesA[i][j][k];
5042         itsGeomTreeCopys[i][j] = itsGeomTreeCopysA[i][j];
5043     } // end for i,j
5044     }else if(fMinorVersion == 2){ // Option B
5045     const char *namesB[knlayers][kndeep] = {
5046      {"ALIC","ITSV","ITSD","IT12","I12B","I10B","I107","I101","ITS1"}, // lay=1
5047      {"ALIC","ITSV","ITSD","IT12","I12B","I20B","I1D7","I1D1","ITS2"}, // lay=2
5048      {"ALIC","ITSV","ITSD","IT34","I004","I302","ITS3","    ","    "}, // lay=3
5049      {"ALIC","ITSV","ITSD","IT34","I005","I402","ITS4","    ","    "}, // lay=4
5050      {"ALIC","ITSV","ITSD","IT56","I565","I562","ITS5","    ","    "}, // lay=5
5051      {"ALIC","ITSV","ITSD","IT56","I569","I566","ITS6","    ","    "}};// lay=6
5052     Int_t itsGeomTreeCopysB[knlayers][kndeep]= {{1,1,1,1,10, 2, 4,1,1},// lay=1
5053                                               {1,1,1,1,10, 4, 4,1,1},// lay=2
5054                                               {1,1,1,1,14, 6, 1,0,0},// lay=3
5055                                               {1,1,1,1,22, 8, 1,0,0},// lay=4
5056                                               {1,1,1,1,34,22, 1,0,0},// lay=5
5057                                               {1,1,1,1,38,25, 1,0,0}};//lay=6
5058     for(i=0;i<knlayers;i++)for(j=0;j<kndeep;j++){
5059         for(k=0;k<4;k++) names[i][j][k] = namesB[i][j][k];
5060         itsGeomTreeCopys[i][j] = itsGeomTreeCopysB[i][j];
5061     } // end for i,j
5062     } // end if fMinorVersion
5063     // Sorry, but this is not very pritty code. It should be replaced
5064     // at some point with a version that can search through the geometry
5065     // tree its self.
5066     cout << "Reading Geometry informaton from Geant3 common blocks" << endl;
5067     for(i=0;i<20;i++) lnam[i] = lnum[i] = 0;
5068     for(i=0;i<knlayers;i++)for(j=0;j<kndeep;j++)
5069         strncpy((char*) &itsGeomTreeNames[i][j],names[i][j],4); 
5070     //  itsGeomTreeNames[i][j] = ig->StringToInt(names[i][j]);
5071     mod = 0;
5072     for(i=0;i<knlayers;i++){
5073         k = 1;
5074         for(j=0;j<kndeep;j++) if(itsGeomTreeCopys[i][j]!=0)
5075             k *= TMath::Abs(itsGeomTreeCopys[i][j]);
5076         mod += k;
5077     } // end for i
5078
5079     if(fITSgeom!=0) delete fITSgeom;
5080     nlad[0]=20;nlad[1]=40;nlad[2]=14;nlad[3]=22;nlad[4]=34;nlad[5]=38;
5081     ndet[0]=4;ndet[1]=4;ndet[2]=6;ndet[3]=8;ndet[4]=22;ndet[5]=25;
5082     fITSgeom = new AliITSgeom(0,6,nlad,ndet,mod);
5083     mod = -1;
5084     for(lay=1;lay<=knlayers;lay++){
5085         for(j=0;j<kndeep;j++) lnam[j] = itsGeomTreeNames[lay-1][j];
5086         for(j=0;j<kndeep;j++) lnum[j] = itsGeomTreeCopys[lay-1][j];
5087         switch (lay){
5088         case 1: case 2: // layers 1 and 2 are a bit special
5089             lad = 0;
5090             for(j=1;j<=itsGeomTreeCopys[lay-1][4];j++){
5091                 lnum[4] = j;
5092                 for(k=1;k<=itsGeomTreeCopys[lay-1][5];k++){
5093                     lad++;
5094                     lnum[5] = k;
5095                     for(det=1;det<=itsGeomTreeCopys[lay-1][6];det++){
5096                         lnum[6] = det;
5097                         mod++;
5098                         ig->GetGeometry(kndeep,lnam,lnum,t,r,idshape,npar,natt,
5099                                         par,att,imat,imed);
5100                         fITSgeom->CreatMatrix(mod,lay,lad,det,kSPD,t,r);
5101                         if(!(fITSgeom->IsShapeDefined((Int_t)kSPD)))
5102                              fITSgeom->ReSetShape(kSPD,
5103                                          new AliITSgeomSPD425Short(npar,par));
5104                     } // end for det
5105                 } // end for k
5106             } // end for j
5107             break;
5108         case 3: case 4: case 5: case 6: // layers 3-6
5109             lnum[6] = 1;
5110             for(lad=1;lad<=itsGeomTreeCopys[lay-1][4];lad++){
5111                 lnum[4] = lad;
5112                 for(det=1;det<=itsGeomTreeCopys[lay-1][5];det++){
5113                     lnum[5] = det;
5114                     mod++;
5115                     ig->GetGeometry(7,lnam,lnum,t,r,idshape,npar,natt,
5116                                     par,att,imat,imed);
5117                     switch (lay){
5118                     case 3: case 4:
5119                         fITSgeom->CreatMatrix(mod,lay,lad,det,kSDD,t,r);
5120                         if(!(fITSgeom->IsShapeDefined(kSDD))) 
5121                             fITSgeom->ReSetShape(kSDD,
5122                                             new AliITSgeomSDD256(npar,par));
5123                             break;
5124                         case 5:
5125                             fITSgeom->CreatMatrix(mod,lay,lad,det,kSSD,t,r);
5126                             if(!(fITSgeom->IsShapeDefined(kSSD))) 
5127                                 fITSgeom->ReSetShape(kSSD,
5128                                          new AliITSgeomSSD275and75(npar,par));
5129                             break;
5130                         case 6:
5131                             fITSgeom->CreatMatrix(mod,lay,lad,det,kSSD,t,r);
5132                             if(!(fITSgeom->IsShapeDefined(kSSD))) 
5133                                 fITSgeom->ReSetShape(kSSD,
5134                                          new AliITSgeomSSD75and275(npar,par));
5135                             break;
5136                         } // end switch
5137                 } // end for det
5138             } // end for lad
5139             break;
5140         } // end switch
5141     } // end for lay
5142 //#endif
5143     return;
5144 }
5145 //______________________________________________________________________
5146 void AliITSvPPRasymmFMD::Init(){
5147     //     Initialise the ITS after it has been created.
5148     // Inputs:
5149     //   none.
5150     // Outputs:
5151     //   none.
5152     // Return:
5153     //   none.
5154     Int_t i;
5155
5156     cout << endl;
5157     for(i=0;i<26;i++) cout << "*";
5158     cout << " ITSvPPRasymmFMD" << fMinorVersion << "_Init ";
5159     for(i=0;i<25;i++) cout << "*";cout << endl;
5160     //
5161     if(fRead[0]=='\0') strncpy(fRead,fEuclidGeomDet,60);
5162     if(fWrite[0]=='\0') strncpy(fWrite,fEuclidGeomDet,60);
5163     if(fITSgeom!=0) delete fITSgeom;
5164     fITSgeom = new AliITSgeom();
5165     if(fGeomDetIn) fITSgeom->ReadNewFile(fRead);
5166     else this->InitAliITSgeom();
5167     if(fGeomDetOut) fITSgeom->WriteNewFile(fWrite);
5168     AliITS::Init();
5169     //
5170     for(i=0;i<72;i++) cout << "*";
5171     cout << endl;
5172     fIDMother = gMC->VolId("ITSV"); // ITS Mother Volume ID.
5173 }
5174 //______________________________________________________________________
5175 void AliITSvPPRasymmFMD::SetDefaults(){
5176     // sets the default segmentation, response, digit and raw cluster classes
5177     // Inputs:
5178     //   none.
5179     // Outputs:
5180     //   none.
5181     // Return:
5182     //   none.
5183     const Float_t kconv = 1.0e+04; // convert cm to microns
5184
5185     cout << "AliITSvPPRasymmFMD::SetDefaults" << endl;
5186
5187     AliITSDetType *iDetType;
5188     AliITSgeomSPD  *s0;
5189     AliITSgeomSDD  *s1;
5190     AliITSgeomSSD  *s2;
5191     Int_t i;
5192     Float_t bx[256],bz[280];
5193
5194     //SPD
5195     iDetType=DetType(kSPD);
5196     s0 = (AliITSgeomSPD*) fITSgeom->GetShape(kSPD);// Get shape info. Do it this way for now.
5197     AliITSresponse *resp0=new AliITSresponseSPD();
5198     SetResponseModel(kSPD,resp0);
5199     AliITSsegmentationSPD *seg0=new AliITSsegmentationSPD(fITSgeom);
5200     seg0->SetDetSize(s0->GetDx()*2.*kconv, // base this on AliITSgeomSPD
5201                      s0->GetDz()*2.*kconv, // for now.
5202                      s0->GetDy()*2.*kconv); // x,z,y full width in microns.
5203     seg0->SetNPads(256,160);// Number of Bins in x and z
5204     for(i=000;i<256;i++) bx[i] =  50.0; // in x all are 50 microns.
5205     for(i=000;i<160;i++) bz[i] = 425.0; // most are 425 microns except below
5206     for(i=160;i<280;i++) bz[i] =   0.0; // Outside of detector.
5207     bz[ 31] = bz[ 32] = 625.0; // first chip boundry
5208     bz[ 63] = bz[ 64] = 625.0; // first chip boundry
5209     bz[ 95] = bz[ 96] = 625.0; // first chip boundry
5210     bz[127] = bz[128] = 625.0; // first chip boundry
5211     bz[160] = 425.0; // Set so that there is no zero pixel size for fNz.
5212     seg0->SetBinSize(bx,bz); // Based on AliITSgeomSPD for now.
5213     SetSegmentationModel(kSPD,seg0);
5214     // set digit and raw cluster classes to be used
5215     const char *kData0=(iDetType->GetResponseModel())->DataType();
5216     if (strstr(kData0,"real")) iDetType->ClassNames("AliITSdigit",
5217                                                     "AliITSRawClusterSPD");
5218     else iDetType->ClassNames("AliITSdigitSPD","AliITSRawClusterSPD");
5219 //    SetSimulationModel(kSPD,new AliITSsimulationSPD(seg0,resp0));
5220 //    iDetType->ReconstructionModel(new AliITSClusterFinderSPD());
5221
5222     // SDD
5223     iDetType=DetType(kSDD);
5224     s1 = (AliITSgeomSDD*) fITSgeom->GetShape(kSDD);// Get shape info. Do it this way for now.
5225     AliITSresponseSDD *resp1=new AliITSresponseSDD("simulated");
5226     SetResponseModel(kSDD,resp1);
5227     AliITSsegmentationSDD *seg1=new AliITSsegmentationSDD(fITSgeom,resp1);
5228     seg1->SetDetSize(s1->GetDx()*kconv, // base this on AliITSgeomSDD
5229                      s1->GetDz()*2.*kconv, // for now.
5230                      s1->GetDy()*2.*kconv); // x,z,y full width in microns.
5231     seg1->SetNPads(256,256);// Use AliITSgeomSDD for now
5232     SetSegmentationModel(kSDD,seg1);
5233     const char *kData1=(iDetType->GetResponseModel())->DataType();
5234     const char *kopt=iDetType->GetResponseModel()->ZeroSuppOption();
5235     if((!strstr(kopt,"2D")) && (!strstr(kopt,"1D")) || strstr(kData1,"real") ){
5236         iDetType->ClassNames("AliITSdigit","AliITSRawClusterSDD");
5237     } else iDetType->ClassNames("AliITSdigitSDD","AliITSRawClusterSDD");
5238 //    SetSimulationModel(kSDD,new AliITSsimulationSDD(seg1,resp1));
5239 //    iDetType->ReconstructionModel(new AliITSClusterFinderSDD());
5240
5241     // SSD  Layer 5
5242     iDetType=DetType(kSSD);
5243     s2 = (AliITSgeomSSD*) fITSgeom->GetShape(kSSD);// Get shape info. Do it this way for now.
5244     AliITSresponse *resp2=new AliITSresponseSSD("simulated");
5245     SetResponseModel(kSSD,resp2);
5246     AliITSsegmentationSSD *seg2=new AliITSsegmentationSSD(fITSgeom);
5247     seg2->SetDetSize(s2->GetDx()*2.*kconv, // base this on AliITSgeomSSD
5248                      s2->GetDz()*2.*kconv, // for now.
5249                      s2->GetDy()*2.*kconv); // x,z,y full width in microns.
5250     seg2->SetPadSize(95.,0.); // strip x pitch in microns
5251     seg2->SetNPads(768,0); // number of strips on each side.
5252     seg2->SetAngles(0.0075,0.0275); // strip angels rad P and N side.
5253     seg2->SetAnglesLay5(0.0075,0.0275); // strip angels rad P and N side.
5254     seg2->SetAnglesLay6(0.0275,0.0075); // strip angels rad P and N side.
5255     SetSegmentationModel(kSSD,seg2); 
5256     const char *kData2=(iDetType->GetResponseModel())->DataType();
5257     if(strstr(kData2,"real") ) iDetType->ClassNames("AliITSdigit",
5258                                                     "AliITSRawClusterSSD");
5259     else iDetType->ClassNames("AliITSdigitSSD","AliITSRawClusterSSD");
5260 //    SetSimulationModel(kSSD,new AliITSsimulationSSD(seg2,resp2));
5261 //    iDetType->ReconstructionModel(new AliITSClusterFinderSSD());
5262
5263     if(kNTYPES>3){
5264         Warning("SetDefaults",
5265                 "Only the four basic detector types are initialised!");
5266     }// end if
5267     return;
5268 }
5269 //______________________________________________________________________
5270 void AliITSvPPRasymmFMD::DrawModule() const{
5271     //     Draw a shaded view of the FMD version 10.
5272     // Inputs:
5273     //   none.
5274     // Outputs:
5275     //   none.
5276     // Return:
5277     //   none.
5278
5279     // Set everything unseen
5280     gMC->Gsatt("*", "seen", -1);
5281     // 
5282     // Set ALIC mother visible
5283     gMC->Gsatt("ALIC","SEEN",0);
5284     //
5285     // Set the volumes visible
5286     gMC->Gsatt("ITSD","SEEN",0);
5287     gMC->Gsatt("ITS1","SEEN",1);
5288     gMC->Gsatt("ITS2","SEEN",1);
5289     gMC->Gsatt("ITS3","SEEN",1);
5290     gMC->Gsatt("ITS4","SEEN",1);
5291     gMC->Gsatt("ITS5","SEEN",1);
5292     gMC->Gsatt("ITS6","SEEN",1);
5293     //
5294     gMC->Gsatt("IPCB","SEEN",1);
5295     gMC->Gsatt("ICO2","SEEN",1);
5296     gMC->Gsatt("ICER","SEEN",0);
5297     gMC->Gsatt("ISI2","SEEN",0);
5298     gMC->Gsatt("IPLA","SEEN",0);
5299     gMC->Gsatt("ICO3","SEEN",0);
5300     gMC->Gsatt("IEPX","SEEN",0);
5301     gMC->Gsatt("ISI3","SEEN",1);
5302     gMC->Gsatt("ISUP","SEEN",0);
5303     gMC->Gsatt("ICHO","SEEN",0);
5304     gMC->Gsatt("ICMO","SEEN",0);
5305     gMC->Gsatt("ICMD","SEEN",0);
5306     gMC->Gsatt("ICCO","SEEN",1);
5307     gMC->Gsatt("ICCM","SEEN",0);
5308     gMC->Gsatt("ITMD","SEEN",0);
5309     gMC->Gsatt("ITTT","SEEN",1);
5310     //
5311     gMC->Gdopt("hide", "on");
5312     gMC->Gdopt("shad", "on");
5313     gMC->Gsatt("*", "fill", 7);
5314     gMC->SetClipBox(".");
5315     gMC->SetClipBox("*", 0, 300, -300, 300, -300, 300);
5316     gMC->DefaultRange();
5317     gMC->Gdraw("alic", 40, 30, 0, 11, 10, .07, .07);
5318     gMC->Gdhead(1111, "Inner Tracking System Version 1");
5319     gMC->Gdman(17, 6, "MAN");
5320 }
5321 //______________________________________________________________________
5322 void AliITSvPPRasymmFMD::StepManager(){
5323     //    Called for every step in the ITS, then calles the AliITShit class
5324     // creator with the information to be recoreded about that hit.
5325     //     The value of the macro ALIITSPRINTGEOM if set to 1 will allow the
5326     // printing of information to a file which can be used to create a .det
5327     // file read in by the routine CreateGeometry(). If set to 0 or any other
5328     // value except 1, the default behavior, then no such file is created nor
5329     // it the extra variables and the like used in the printing allocated.
5330     // Inputs:
5331     //   none.
5332     // Outputs:
5333     //   none.
5334     // Return:
5335     //   none.
5336     Int_t         copy, id;
5337     TLorentzVector position, momentum;
5338     static TLorentzVector position0;
5339     static Int_t stat0=0;
5340
5341     if(!(this->IsActive())){
5342         return;
5343     } // end if !Active volume.
5344
5345     if(!(gMC->TrackCharge())) return;
5346
5347     id=gMC->CurrentVolID(copy);
5348
5349     Bool_t sensvol = kFALSE;
5350     for(Int_t kk=0;kk<6;kk++)if(id == fIdSens[kk])sensvol=kTRUE;
5351     if(sensvol && (gMC->IsTrackExiting())){
5352         copy = fTrackReferences->GetEntriesFast();
5353         TClonesArray &lTR = *fTrackReferences;
5354         // Fill TrackReference structure with this new TrackReference.
5355         new(lTR[copy]) AliTrackReference(gAlice->GetMCApp()->GetCurrentTrackNumber());
5356     } // if Outer ITS mother Volume
5357
5358
5359     Int_t   copy1,copy2;  
5360     Int_t   vol[5];
5361     TClonesArray &lhits = *fHits;
5362     //
5363     // Track status
5364     vol[3] = 0;
5365     vol[4] = 0;
5366     if(gMC->IsTrackInside())      vol[3] +=  1;
5367     if(gMC->IsTrackEntering())    vol[3] +=  2;
5368     if(gMC->IsTrackExiting())     vol[3] +=  4;
5369     if(gMC->IsTrackOut())         vol[3] +=  8;
5370     if(gMC->IsTrackDisappeared()) vol[3] += 16;
5371     if(gMC->IsTrackStop())        vol[3] += 32;
5372     if(gMC->IsTrackAlive())       vol[3] += 64;
5373     //
5374     // Fill hit structure.
5375     if(!(gMC->TrackCharge())) return;
5376     //
5377     // Only entering charged tracks
5378     if((id = gMC->CurrentVolID(copy)) == fIdSens[0]) {
5379         vol[0] = 1;
5380         id = gMC->CurrentVolOffID(2,copy);
5381         //detector copy in the ladder = 1<->4  (ITS1 < I101 < I103 < I10A)
5382         vol[1] = copy;
5383         gMC->CurrentVolOffID(3,copy1);
5384         //ladder copy in the module   = 1<->2  (I10A < I12A)
5385         gMC->CurrentVolOffID(4,copy2);
5386         //module copy in the layer    = 1<->10 (I12A < IT12)
5387         vol[2] = copy1+(copy2-1)*2;//# of ladders in one module  = 2
5388     } else if(id == fIdSens[1]){
5389         vol[0] = 2;
5390         id = gMC->CurrentVolOffID(2,copy);
5391         //detector copy in the ladder = 1<->4  (ITS2 < I1D1 < I1D3 < I20A)
5392         vol[1] = copy;
5393         gMC->CurrentVolOffID(3,copy1);
5394         //ladder copy in the module   = 1<->4  (I20A < I12A)
5395         gMC->CurrentVolOffID(4,copy2);
5396         //module copy in the layer    = 1<->10 (I12A < IT12)
5397         vol[2] = copy1+(copy2-1)*4;//# of ladders in one module  = 4
5398     } else if(id == fIdSens[2]){
5399         vol[0] = 3;
5400         id = gMC->CurrentVolOffID(1,copy);
5401         //detector copy in the ladder = 1<->6  (ITS3 < I302 < I004)
5402         vol[1] = copy;
5403         id = gMC->CurrentVolOffID(2,copy);
5404         //ladder copy in the layer    = 1<->14 (I004 < IT34)
5405         vol[2] = copy;
5406     } else if(id == fIdSens[3]){
5407         vol[0] = 4;
5408         id = gMC->CurrentVolOffID(1,copy);
5409         //detector copy in the ladder = 1<->8  (ITS4 < I402 < I005)
5410         vol[1] = copy;
5411         id = gMC->CurrentVolOffID(2,copy);
5412         //ladder copy in the layer    = 1<->22 (I005 < IT34))
5413         vol[2] = copy;
5414     }else if(id == fIdSens[4]){
5415         vol[0] = 5;
5416         id = gMC->CurrentVolOffID(1,copy);
5417         //detector copy in the ladder = 1<->22  (ITS5 < I562 < I565)
5418         vol[1] = copy;
5419         id = gMC->CurrentVolOffID(2,copy);
5420         //ladder copy in the layer    = 1<->34 (I565 < IT56)
5421         vol[2] = copy;
5422     }else if(id == fIdSens[5]){
5423         vol[0] = 6;
5424         id = gMC->CurrentVolOffID(1,copy);
5425         //detector copy in the ladder = 1<->25  (ITS6 < I566 < I569)
5426         vol[1] = copy;
5427         id = gMC->CurrentVolOffID(2,copy);
5428         //ladder copy in the layer = 1<->38 (I569 < IT56)
5429         vol[2] = copy;
5430     } else {
5431         return; // not an ITS volume?
5432     } // end if/else if (gMC->CurentVolID(copy) == fIdSens[i])
5433     //
5434     gMC->TrackPosition(position);
5435     gMC->TrackMomentum(momentum);
5436     vol[4] = stat0;
5437     if(gMC->IsTrackEntering()){
5438         position0 = position;
5439         stat0 = vol[3];
5440         return;
5441     } // end if IsEntering
5442     // Fill hit structure with this new hit.
5443     new(lhits[fNhits++]) AliITShit(fIshunt,gAlice->GetMCApp()->GetCurrentTrackNumber(),vol,
5444                                    gMC->Edep(),gMC->TrackTime(),position,
5445                                    position0,momentum);
5446     //
5447     position0 = position;
5448     stat0 = vol[3];
5449
5450     return;
5451 }