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