1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 Revision 1.10 2003/02/12 10:39:08 hristov
19 Updated AliTrackReference class (S.Radomski)
21 Revision 1.9 2002/11/21 23:05:28 alibrary
22 Removing AliMC and AliMCProcess
24 Revision 1.8 2002/11/14 15:09:58 nilsen
25 Fixed problem of elements of a Mixture having zero concentration. This was
26 done by reordering some of the elements such that those which may have
27 zero concentration were at the end of the array and the array size passed
28 would thereby exclude those zero concentrations.
30 Revision 1.7 2002/11/02 15:15:58 hristov
31 Corrected with respect to the previous versions
33 Revision 1.6 2002/11/01 19:48:35 nilsen
34 Fixed bug in material numbering for new FMD part of code. Removed large part
35 of commented code (if still needed it is in AliITSvPPRasymm.cxx).
37 Revision 1.3 2002/10/05 00:12:39 nilsen
38 Added material to simulate services in front of the SPD, SDD, and SSD support
39 structures. Modified folumes I212, I200, and I099 so that they do not go
40 beyond the volume they are creating holes for. This was nessesary so that
41 the material added to these volumes would be correct.
43 Revision 1.2 2002/10/02 17:56:37 barbera
44 Bug in copy 37 of volume I570 corrected (thanks to J. Belikov)
46 Revision 1.1 2002/09/16 14:45:31 barbera
47 Updated detailed geometry needed by FMD people for some studies
52 ///////////////////////////////////////////////////////////////////////////////
54 // Inner Traking System version PPR asymmetric for the FMD //
55 // This class contains the base procedures for the Inner Tracking System //
57 // Authors: R. Barbera //
59 // Created January 15 2001. //
61 // NOTE: THIS IS THE ASYMMETRIC PPR geometry of the ITS for the PMD. //
63 ///////////////////////////////////////////////////////////////////////////////
65 // See AliITSvPPRasymmFMD::StepManager().
66 #include <Riostream.h>
70 #include <TGeometry.h>
75 #include <TFile.h> // only required for Tracking function?
77 #include <TObjArray.h>
78 #include <TLorentzVector.h>
79 #include <TObjString.h>
80 #include <TClonesArray.h>
87 #include "AliITSGeant3Geometry.h"
88 #include "AliTrackReference.h"
89 #include "AliITShit.h"
91 #include "AliITSvPPRasymmFMD.h"
92 #include "AliITSgeom.h"
93 #include "AliITSgeomSPD.h"
94 #include "AliITSgeomSDD.h"
95 #include "AliITSgeomSSD.h"
96 #include "AliITSDetType.h"
97 #include "AliITSresponseSPD.h"
98 #include "AliITSresponseSDD.h"
99 #include "AliITSresponseSSD.h"
100 #include "AliITSsegmentationSPD.h"
101 #include "AliITSsegmentationSDD.h"
102 #include "AliITSsegmentationSSD.h"
103 #include "AliITSsimulationSPD.h"
104 #include "AliITSsimulationSDD.h"
105 #include "AliITSsimulationSSD.h"
106 #include "AliITSClusterFinderSPD.h"
107 #include "AliITSClusterFinderSDD.h"
108 #include "AliITSClusterFinderSSD.h"
111 ClassImp(AliITSvPPRasymmFMD)
113 //_____________________________________________________________________________
114 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD() {
115 ////////////////////////////////////////////////////////////////////////
116 // Standard default constructor for the ITS version 8.
117 ////////////////////////////////////////////////////////////////////////
123 fEuclidOut = kFALSE; // Don't write Euclide file
124 fGeomDetOut = kFALSE; // Don't write .det file
125 fGeomDetIn = kFALSE; // Don't Read .det file
126 fMajorVersion = IsVersion();
128 for(i=0;i<60;i++) fRead[i] = '\0';
129 for(i=0;i<60;i++) fWrite[i] = '\0';
130 for(i=0;i<60;i++) fEuclidGeomDet[i] = '\0';
132 //_____________________________________________________________________________
133 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD(const char *name, const char *title) : AliITS(name, title){
134 ////////////////////////////////////////////////////////////////////////
135 // Standard constructor for the ITS version 10.
136 ////////////////////////////////////////////////////////////////////////
140 fIdName = new TString[fIdN];
147 fIdSens = new Int_t[fIdN];
148 for(i=0;i<fIdN;i++) fIdSens[i] = 0;
149 fMajorVersion = IsVersion();
151 fEuclidOut = kFALSE; // Don't write Euclide file
152 fGeomDetOut = kFALSE; // Don't write .det file
153 fGeomDetIn = kFALSE; // Don't Read .det file
159 fEuclidGeometry="$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.euc";
160 strncpy(fEuclidGeomDet,"$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det",60);
161 strncpy(fRead,fEuclidGeomDet,60);
162 strncpy(fWrite,fEuclidGeomDet,60);
164 //____________________________________________________________________________
165 AliITSvPPRasymmFMD::AliITSvPPRasymmFMD(const AliITSvPPRasymmFMD &source){
166 ////////////////////////////////////////////////////////////////////////
167 // Copy Constructor for ITS version 8.
168 ////////////////////////////////////////////////////////////////////////
169 if(&source == this) return;
170 Warning("Copy Constructor","Not allowed to copy AliITSvPPRasymmFMD");
173 //_____________________________________________________________________________
174 AliITSvPPRasymmFMD& AliITSvPPRasymmFMD::operator=(const AliITSvPPRasymmFMD &source){
175 ////////////////////////////////////////////////////////////////////////
176 // Assignment operator for the ITS version 8.
177 ////////////////////////////////////////////////////////////////////////
178 if(&source == this) return *this;
179 Warning("= operator","Not allowed to copy AliITSvPPRasymmFMD");
182 //_____________________________________________________________________________
183 AliITSvPPRasymmFMD::~AliITSvPPRasymmFMD() {
184 ////////////////////////////////////////////////////////////////////////
185 // Standard destructor for the ITS version 8.
186 ////////////////////////////////////////////////////////////////////////
188 //__________________________________________________________________________
189 void AliITSvPPRasymmFMD::BuildGeometry(){
190 ////////////////////////////////////////////////////////////////////////
191 // Geometry builder for the ITS version 8.
192 ////////////////////////////////////////////////////////////////////////
195 const Int_t kColorITS=kYellow;
197 top = gAlice->GetGeometry()->GetNode("alice");
200 new TTUBE("S_layer1","Layer1 of ITS","void",3.8095,3.8095+1.03*9.36/100.,14.35);
202 node = new TNode("Layer1","Layer1","S_layer1",0,0,0,"");
203 node->SetLineColor(kColorITS);
206 new TTUBE("S_layer2","Layer2 of ITS","void",7.,7.+1.03*9.36/100.,14.35);
208 node = new TNode("Layer2","Layer2","S_layer2",0,0,0,"");
209 node->SetLineColor(kColorITS);
212 new TTUBE("S_layer3","Layer3 of ITS","void",15.,15.+0.94*9.36/100.,25.1);
214 node = new TNode("Layer3","Layer3","S_layer3",0,0,0,"");
215 node->SetLineColor(kColorITS);
218 new TTUBE("S_layer4","Layer4 of ITS","void",24.1,24.1+0.95*9.36/100.,32.1);
220 node = new TNode("Layer4","Layer4","S_layer4",0,0,0,"");
221 node->SetLineColor(kColorITS);
224 new TTUBE("S_layer5","Layer5 of ITS","void",38.5,38.5+0.91*9.36/100.,49.405);
226 node = new TNode("Layer5","Layer5","S_layer5",0,0,0,"");
227 node->SetLineColor(kColorITS);
230 new TTUBE("S_layer6","Layer6 of ITS","void",43.5765,43.5765+0.87*9.36/100.,55.27);
232 node = new TNode("Layer6","Layer6","S_layer6",0,0,0,"");
233 node->SetLineColor(kColorITS);
236 //_____________________________________________________________________________
237 void AliITSvPPRasymmFMD::CreateGeometry(){
238 ////////////////////////////////////////////////////////////////////////
239 // This routine defines and Creates the geometry for version 6 of the ITS.
240 ////////////////////////////////////////////////////////////////////////
245 <img src="picts/ITS/ITS_full_vPPRasymm.jpg">
248 <font size=+2 color=red>
249 <p>This shows the full ITS geometry.
252 <img src="picts/ITS/ITS_SPD_Barrel_vPPRasymm.jpg">
255 <font size=+2 color=red>
256 <p>This shows the full SPD Barrel of the ITS geometry.
259 <img src="picts/ITS/ITS_SDD_Barrel_vPPRasymm.jpg">
262 <font size=+2 color=red>
263 <p>This shows the full SDD Barrel of the ITS geometry.
266 <img src="picts/ITS/ITS_SSD_Barrel_vPPRasymm.jpg">
269 <font size=+2 color=red>
270 <p>This shows the full SSD Barrel of the ITS geometry.
274 //INNER RADII OF THE SILICON LAYERS
275 // Float_t rl[6] = { 3.8095,7.,15.,24.,38.1,43.5765 };
276 //THICKNESSES OF LAYERS (in % radiation length)
277 Float_t drl[6] = { 1.03,1.03,0.94,0.95,0.91,0.87 };
278 //HALF LENGTHS OF LAYERS
279 // Float_t dzl[6] = { 14.35,14.35,25.1,32.1,49.405,55.27 };
280 //LENGTHS OF END-LADDER BOXES (ALL INCLUDED)
281 // Float_t dzb[6] = { 12.4,12.4,13.5,15.,7.5,7.5 };
282 //THICKNESSES OF END-LADDER BOXES (ALL INCLUDED)
283 // Float_t drb[6] = { rl[1]-rl[0],0.2,5.,5.,4.,4. };
286 Float_t dits[100], rlim, zmax;
290 Int_t idrotm[1999], i;
294 // Define some variables for SPD
296 Float_t dits1[3], di101[3], di107[3], di10b[3], di106[3]; // for layer 1
297 Float_t di103[3], di10a[3], di102[3]; // for layer 1
298 Float_t dits2[3], di1d1[3], di1d7[3], di20b[3], di1d6[3]; // for layer 2
299 Float_t di1d3[3], di20a[3], di1d2[3]; // for layer 2
300 Float_t di108[3], di104[3]; // for both layers
302 Float_t ddet1=200.; // total detector thickness on layer 1 (micron)
303 Float_t dchip1=200.; // total chip thickness on layer 1 (micron)
305 Float_t ddet2=200.; // total detector thickness on layer 2 (micron)
306 Float_t dchip2=200.; // total chip thickness on layer 2 (micron)
308 Float_t dbus=300.; // total bus thickness on both layers (micron)
310 ddet1 = GetThicknessDet1();
311 ddet2 = GetThicknessDet2();
312 dchip1 = GetThicknessChip1();
313 dchip2 = GetThicknessChip2();
315 if(ddet1 < 100. || ddet1 > 300.) {
316 cout << "ITS - WARNING: the detector thickness for layer 1 is outside the range of [100,300] microns."
317 " The default value of 200 microns will be used." << endl;
321 if(ddet2 < 100. || ddet2 > 300.) {
322 cout << "ITS - WARNING: the detector thickness for layer 2 is outside the range of [100,300] microns."
323 " The default value of 200 microns will be used." << endl;
327 if(dchip1 < 100. || dchip1 > 300.) {
328 cout << "ITS - WARNING: the chip thickness for layer 1 is outside the range of [100,300] microns."
329 " The default value of 200 microns will be used." << endl;
333 if(dchip2 < 100. || dchip2 > 300.) {
334 cout << "ITS - WARNING: the chip thickness for layer 2 is outside the range of [100,300] microns."
335 " The default value of 200 microns will be used." << endl;
339 Int_t rails = 1; // flag for rails (1 --> rails in; 0 --> rails out)
341 Int_t fluid = 1; // flag for the cooling fluid (1 --> water; 0 --> freon)
345 fluid = GetCoolingFluid();
347 if(rails != 0 && rails != 1) {
348 cout << "ITS - WARNING: the switch for rails is not set neither to 0 (rails out) nor to 1 (rails in)."
349 " The default value of 1 (rails in) will be used." << endl;
353 if(fluid != 0 && fluid != 1) {
354 cout << "ITS - WARNING: the switch for cooling fluid is not set neither to 0 (freon) nor to 1 (water)."
355 " The default value of 1 (water) will be used." << endl;
358 cout << "ITS: Detector thickness on layer 1 is set to " << ddet1 << " microns." << endl;
359 cout << "ITS: Chip thickness on layer 1 is set to " << dchip1 << " microns." << endl;
360 cout << "ITS: Detector thickness on layer 2 is set to " << ddet2 << " microns." << endl;
361 cout << "ITS: Chip thickness on layer 2 is set to " << dchip2 << " microns." << endl;
363 cout << "ITS: Rails are out." << endl;
365 cout << "ITS: Rails are in." << endl;
368 cout << "ITS: The cooling fluid is freon." << endl;
370 cout << "ITS: The cooling fluid is water." << endl;
373 ddet1 = ddet1*0.0001/2.; // conversion from tot length in um to half in cm
374 ddet2 = ddet2*0.0001/2.; // conversion from tot length in um to half in cm
375 dchip1 = dchip1*0.0001/2.;// conversion from tot length in um to half in cm
376 dchip2 = dchip2*0.0001/2.;// conversion from tot length in um to half in cm
377 dbus = dbus*0.0001/2.; // conversion from tot length in um to half in cm
379 Float_t deltax, deltay;
381 Int_t thickness = fMinorVersion/10;
382 Int_t option = fMinorVersion - 10*thickness;
385 // Define some variables for SDD
388 Float_t sin30, cos30;
390 // SDD electronics+services main volumes
391 Float_t I018dits[3], I024dits[3], I047dits[3], I048dits[3];
393 // SDD detector ladder
395 Float_t I302dits[3], I402dits[3], I004dits[3], I005dits[3];
396 Float_t Y_SDD_sep = 0.20;
399 Float_t Z_SDD_lay3[6] = {18.55, 10.95, 3.70, -3.70, -11.20, -18.35};
400 Float_t Z_SDD_lay4[8] = {25.75, 18.60, 11.00, 3.70, -3.70, -11.20, -18.45, -26.05};
402 // ladder foot and end-ladder (frame and cooling)
403 Float_t I028dits[3], I420dits[3], I421dits[3], I422dits[6], I423dits[3];
404 Float_t I424dits[3], xI424, yI424;
407 Float_t I029dits[4], I030dits[4], I031dits[3], I032dits[3];
409 // SDD ladder frame and cooling
410 Float_t SDD_CoolPipe[3] = {1.7000, -0.5500, 0.0000};
411 Float_t I035dits[3], I037dits[3], I038dits[3];
412 Float_t I039dits[3], xI039, yI039;
415 // SDD hybrid, chips and capacitors
416 Float_t I050dits[3], xI050, yI050;
417 Float_t I052dits[3], xI052, yI052;
418 Float_t I042dits[3], xI042, yI042;
419 Float_t xI042space = 0.17;
420 Float_t I043dits[3], xI043, yI043;
421 Float_t xI043space = 0.17;
422 Float_t zchip, zChipSpace;
423 Float_t I051dits[3], xI051, yI051, zI051, yI051space, xcap;
427 Float_t I044dits[4], xI044, yI044, volI044;
428 Float_t xHV, yHV, zHV, xLV, yLV, zLV;
429 Char_t HVname[5], LVname[5];
432 // Define media off-set
434 Int_t *idtmed = fIdtmed->GetArray()-199;
439 // SPD - option 'a' (this is NOT the default so leave commented)
444 AliMatrix(idrotm[201],90.0,90.0,90.0,180.0,0.0,0.0);
445 AliMatrix(idrotm[202],90.0,90.0,90.0,0.0,0.0,0.0);
446 AliMatrix(idrotm[203],90.0,350.0,90.0,260.0,0.0,0.0);
447 AliMatrix(idrotm[204],90.0,170.0,90.0,80.0,0.0,0.0);
448 AliMatrix(idrotm[205],90.0,10.0,90.0,100.0,0.0,0.0);
449 AliMatrix(idrotm[206],90.0,190.0,90.0,280.0,0.0,0.0);
450 AliMatrix(idrotm[207],90.0,342.0,90.0,72.0,0.0,0.0);
451 AliMatrix(idrotm[208],90.0,156.999893,90.0,246.999893,0.0,0.0);
452 AliMatrix(idrotm[209],90.0,147.999802,90.0,237.999893,0.0,0.0);
453 AliMatrix(idrotm[210],90.0,138.999802,90.0,228.999802,0.0,0.0);
454 AliMatrix(idrotm[211],90.0,129.999802,90.0,219.999802,0.0,0.0);
455 AliMatrix(idrotm[212],90.0,36.7896,90.0,126.789597,0.0,0.0);
456 AliMatrix(idrotm[213],90.0,343.579712,90.0,73.579697,0.0,0.0);
457 AliMatrix(idrotm[214],90.0,95.413696,90.0,185.413696,0.0,0.0);
458 AliMatrix(idrotm[215],90.0,5.4141,90.0,95.414101,0.0,0.0);
459 AliMatrix(idrotm[216],90.0,318.296906,90.0,48.296902,0.0,0.0);
460 AliMatrix(idrotm[217],90.0,67.000099,90.0,157.000107,0.0,0.0);
461 AliMatrix(idrotm[218],90.0,337.003998,90.0,67.003998,0.0,0.0);
462 AliMatrix(idrotm[219],90.0,247.000305,90.0,337.000305,0.0,0.0);
463 AliMatrix(idrotm[220],90.0,305.633514,90.0,35.633499,0.0,0.0);
464 AliMatrix(idrotm[221],90.0,58.000198,90.0,148.000198,0.0,0.0);
465 AliMatrix(idrotm[222],90.0,327.997101,90.0,57.997101,0.0,0.0 );
466 AliMatrix(idrotm[223],90.0,237.994202,90.0,327.994202,0.0,0.0);
467 AliMatrix(idrotm[224],90.0,296.627502,90.0,26.627399,0.0,0.0);
468 AliMatrix(idrotm[225],90.0,48.994099,90.0,138.994095,0.0,0.0);
469 AliMatrix(idrotm[226],90.0,318.990997,90.0,48.991001,0.0,0.0);
470 AliMatrix(idrotm[227],90.0,228.988205,90.0,318.98819,0.0,0.0);
471 AliMatrix(idrotm[228],90.0,287.621399,90.0,17.621401,0.0,0.0);
472 AliMatrix(idrotm[229],90.0,39.988098,90.0,129.988098,0.0,0.0);
473 AliMatrix(idrotm[230],90.0,309.984985,90.0,39.985001,0.0,0.0);
474 AliMatrix(idrotm[231],90.0,327.2612,90.0,57.2612,0.0,0.0);
475 AliMatrix(idrotm[232],90.0,237.261398,90.0,327.261414,0.0,0.0);
476 AliMatrix(idrotm[233],90.0,252.000504,90.0,342.000488,0.0,0.0 );
477 AliMatrix(idrotm[234],90.0,71.9991,90.0,161.9991,0.0,0.0);
478 AliMatrix(idrotm[235],90.0,270.0,90.0,0.0,0.0,0.0);
479 AliMatrix(idrotm[236],90.0,180.013702,90.0,270.013702,0.0,0.0);
480 AliMatrix(idrotm[237],90.0,0.0,90.0,90.0,0.0,0.0);
481 AliMatrix(idrotm[238],90.0,144.0,90.0,234.0,0.0,0.0);
482 AliMatrix(idrotm[239],90.0,216.0,90.0,306.0,0.0,0.0);
483 AliMatrix(idrotm[240],90.0,288.0,90.0,18.0,0.0,0.0);
484 AliMatrix(idrotm[241],90.0,324.0,90.0,54.0,0.0,0.0);
485 AliMatrix(idrotm[242],90.0,36.0,90.0,126.0,0.0,0.0);
486 AliMatrix(idrotm[243],90.0,108.0,90.0,198.0,0.0,0.0);
487 AliMatrix(idrotm[244],90.0,180.0,90.0,270.0,0.0,0.0);
488 AliMatrix(idrotm[245],90.0,162.0,90.0,252.0,0.0,0.0);
489 AliMatrix(idrotm[246],90.0,310.0,90.0,40.0,0.0,0.0);
490 AliMatrix(idrotm[247],90.0,319.0,90.0,49.0,0.0,0.0);
491 AliMatrix(idrotm[248],90.0,328.0,90.0,58.0,0.0,0.0);
492 AliMatrix(idrotm[249],90.0,337.0,90.0,67.0,0.0,0.0);
493 AliMatrix(idrotm[1003],90.0,73.5,90.0,163.5,0.0,0.0);
494 AliMatrix(idrotm[1011],90.0,342.0,90.0,72.0,0.0,0.0);
495 AliMatrix(idrotm[1039],90.0,72.0,90.0,162.0,0.0,0.0);
496 AliMatrix(idrotm[1043],90.0,66.91,90.0,156.91,0.0,0.0);
497 AliMatrix(idrotm[1065],90.0,144.0,90.0,234.0,0.0,0.0);
498 AliMatrix(idrotm[1078],90.0,180.0,90.0,270.0,0.0,0.0);
499 AliMatrix(idrotm[1088],90.0,57.41,90.0,147.41,0.0,0.0);
500 AliMatrix(idrotm[1089],90.0,333.0,90.0,63.0,0.0,0.0);
501 AliMatrix(idrotm[1090],90.0,351.0,90.0,81.0,0.0,0.0);
502 AliMatrix(idrotm[1091],90.0,216.0,90.0,306.0,0.0,0.0);
503 AliMatrix(idrotm[1092],90.0,27.0,90.0,117.0,0.0,0.0);
504 AliMatrix(idrotm[1093],90.0,18.0,90.0,108.0,0.0,0.0);
505 AliMatrix(idrotm[1094],90.0,9.0,90.0,99.0,0.0,0.0);
506 AliMatrix(idrotm[1104],90.0,252.0,90.0,342.0,0.0,0.0);
507 AliMatrix(idrotm[1106],90.0,36.0,90.0,126.0,0.0,0.0);
508 AliMatrix(idrotm[1107],90.0,108.0,90.0,198.0,0.0,0.0);
509 AliMatrix(idrotm[1108],90.0,324.0,90.0,54.0,180.0,0.0);
510 AliMatrix(idrotm[1109],90.0,0.0,90.0,90.0,180.0,0.0);
511 AliMatrix(idrotm[1110],90.0,36.0,90.0,126.0,180.0,0.0);
512 AliMatrix(idrotm[1111],90.0,72.0,90.0,162.0,180.0,0.0);
513 AliMatrix(idrotm[1112],90.0,108.0,90.0,198.0,180.0,0.0);
514 AliMatrix(idrotm[1113],90.0,144.0,90.0,234.0,180.0,0.0);
515 AliMatrix(idrotm[1114],90.0,180.0,90.0,270.0,180.0,0.0);
516 AliMatrix(idrotm[1115],90.0,216.0,90.0,306.0,180.0,0.0);
517 AliMatrix(idrotm[1116],90.0,252.0,90.0,342.0,180.0,0.0);
518 AliMatrix(idrotm[1117],90.0,288.0,90.0,18.0,0.0,0.0);
519 AliMatrix(idrotm[1118],90.0,288.0,90.0,18.0,180.0,0.0);
520 AliMatrix(idrotm[1130],90.0,324.0,90.0,54.0,0.0,0.0);
524 // SPD - option 'b' (this is the default)
528 AliMatrix(idrotm[201],90.0,0.0,90.0,90.0,0.0,0.0);
529 AliMatrix(idrotm[202],90.0,90.0,90.0,0.0,0.0,0.0);
530 AliMatrix(idrotm[203],90.0,350.0,90.0,260.0,0.0,0.0);
531 AliMatrix(idrotm[204],90.0,170.0,90.0,80.0,0.0,0.0);
532 AliMatrix(idrotm[205],90.0,10.0,90.0,100.0,0.0,0.0);
533 AliMatrix(idrotm[206],90.0,190.0,90.0,280.0,0.0,0.0);
534 AliMatrix(idrotm[207],90.0,342.0,90.0,72.0,0.0,0.0);
535 AliMatrix(idrotm[208],90.0,156.999893,90.0,246.999893,0.0,0.0);
536 AliMatrix(idrotm[209],90.0,147.999802,90.0,237.999893,0.0,0.0);
537 AliMatrix(idrotm[210],90.0,138.999802,90.0,228.999802,0.0,0.0);
538 AliMatrix(idrotm[211],90.0,129.999802,90.0,219.999802,0.0,0.0);
539 AliMatrix(idrotm[212],90.0,36.7896,90.0,126.789597,0.0,0.0);
540 AliMatrix(idrotm[213],90.0,343.579712,90.0,73.579697,0.0,0.0);
541 AliMatrix(idrotm[214],90.0,95.413696,90.0,185.413696,0.0,0.0);
542 AliMatrix(idrotm[215],90.0,5.4141,90.0,95.414101,0.0,0.0);
543 AliMatrix(idrotm[216],90.0,318.296906,90.0,48.296902,0.0,0.0);
544 AliMatrix(idrotm[217],90.0,67.000099,90.0,157.000107,0.0,0.0);
545 AliMatrix(idrotm[218],90.0,337.003998,90.0,67.003998,0.0,0.0);
546 AliMatrix(idrotm[219],90.0,247.000305,90.0,337.000305,0.0,0.0);
547 AliMatrix(idrotm[220],90.0,305.633514,90.0,35.633499,0.0,0.0);
548 AliMatrix(idrotm[221],90.0,58.000198,90.0,148.000198,0.0,0.0);
549 AliMatrix(idrotm[222],90.0,327.997101,90.0,57.997101,0.0,0.0);
550 AliMatrix(idrotm[223],90.0,237.994202,90.0,327.994202,0.0,0.0);
551 AliMatrix(idrotm[224],90.0,296.627502,90.0,26.627399,0.0,0.0);
552 AliMatrix(idrotm[225],90.0,48.994099,90.0,138.994095,0.0,0.0);
553 AliMatrix(idrotm[226],90.0,318.990997,90.0,48.991001,0.0,0.0);
554 AliMatrix(idrotm[227],90.0,228.988205,90.0,318.98819,0.0,0.0);
555 AliMatrix(idrotm[228],90.0,287.621399,90.0,17.621401,0.0,0.0);
556 AliMatrix(idrotm[229],90.0,39.988098,90.0,129.988098,0.0,0.0);
557 AliMatrix(idrotm[230],90.0,309.984985,90.0,39.985001,0.0,0.0);
558 AliMatrix(idrotm[231],90.0,327.2612,90.0,57.2612,0.0,0.0);
559 AliMatrix(idrotm[232],90.0,237.261398,90.0,327.261414,0.0,0.0);
560 AliMatrix(idrotm[233],90.0,252.000504,90.0,342.000488,0.0,0.0);
561 AliMatrix(idrotm[234],90.0,71.9991,90.0,161.9991,0.0,0.0);
562 AliMatrix(idrotm[235],90.0,270.0,90.0,0.0,0.0,0.0);
563 AliMatrix(idrotm[236],90.0,180.013702,90.0,270.013702,0.0,0.0);
564 AliMatrix(idrotm[237],90.0,90.0,90.0,180.0,0.0,0.0);
565 AliMatrix(idrotm[238],90.0,180.0,90.0,270.0,0.0,0.0);
566 AliMatrix(idrotm[239],90.0,162.0,90.0,252.0,0.0,0.0);
567 AliMatrix(idrotm[240],90.0,310.0,90.0,40.0,0.0,0.0);
568 AliMatrix(idrotm[241],90.0,319.0,90.0,49.0,0.0,0.0);
569 AliMatrix(idrotm[242],90.0,328.0,90.0,58.0,0.0,0.0);
570 AliMatrix(idrotm[243],90.0,337.0,90.0,67.0,0.0,0.0);
571 AliMatrix(idrotm[244],90.0,216.0,90.0,306.0,0.0,0.0);
572 AliMatrix(idrotm[245],90.0,36.0,90.0,126.0,0.0,0.0);
573 AliMatrix(idrotm[246],90.0,108.0,90.0,198.0,0.0,0.0);
574 AliMatrix(idrotm[247],90.0,144.0,90.0,234.0,0.0,0.0);
575 AliMatrix(idrotm[248],90.0,288.0,90.0,18.0,0.0,0.0);
576 AliMatrix(idrotm[249],90.0,324.0,90.0,54.0,0.0,0.0);
577 AliMatrix(idrotm[1003],90.0,73.5,90.0,163.5,0.0,0.0);
578 AliMatrix(idrotm[1011],90.0,342.0,90.0,72.0,0.0,0.0);
579 AliMatrix(idrotm[1039],90.0,72.0,90.0,162.0,0.0,0.0);
580 AliMatrix(idrotm[1043],90.0,66.91,90.0,156.91,0.0,0.0);
581 AliMatrix(idrotm[1065],90.0,144.0,90.0,234.0,0.0,0.0);
582 AliMatrix(idrotm[1078],90.0,180.0,90.0,270.0,0.0,0.0);
583 AliMatrix(idrotm[1088],90.0,57.41,90.0,147.41,0.0,0.0);
584 AliMatrix(idrotm[1089],90.0,333.0,90.0,63.0,0.0,0.0);
585 AliMatrix(idrotm[1090],90.0,351.0,90.0,81.0,0.0,0.0);
586 AliMatrix(idrotm[1091],90.0,216.0,90.0,306.0,0.0,0.0);
587 AliMatrix(idrotm[1092],90.0,27.0,90.0,117.0,0.0,0.0);
588 AliMatrix(idrotm[1093],90.0,18.0,90.0,108.0,0.0,0.0);
589 AliMatrix(idrotm[1094],90.0,9.0,90.0,99.0,0.0,0.0);
590 AliMatrix(idrotm[1104],90.0,252.0,90.0,342.0,0.0,0.0);
591 AliMatrix(idrotm[1106],90.0,36.0,90.0,126.0,0.0,0.0);
592 AliMatrix(idrotm[1107],90.0,108.0,90.0,198.0,0.0,0.0);
593 AliMatrix(idrotm[1108],90.0,324.0,90.0,54.0,180.0,0.0);
594 AliMatrix(idrotm[1109],90.0,0.0,90.0,90.0,180.0,0.0);
595 AliMatrix(idrotm[1110],90.0,36.0,90.0,126.0,180.0,0.0);
596 AliMatrix(idrotm[1111],90.0,72.0,90.0,162.0,180.0,0.0);
597 AliMatrix(idrotm[1112],90.0,108.0,90.0,198.0,180.0,0.0);
598 AliMatrix(idrotm[1113],90.0,144.0,90.0,234.0,180.0,0.0);
599 AliMatrix(idrotm[1114],90.0,180.0,90.0,270.0,180.0,0.0);
600 AliMatrix(idrotm[1115],90.0,216.0,90.0,306.0,180.0,0.0);
601 AliMatrix(idrotm[1116],90.0,252.0,90.0,342.0,180.0,0.0);
602 AliMatrix(idrotm[1117],90.0,288.0,90.0,18.0,0.0,0.0);
603 AliMatrix(idrotm[1118],90.0,288.0,90.0,18.0,180.0,0.0);
604 AliMatrix(idrotm[1130],90.0,324.0,90.0,54.0,0.0,0.0);
610 AliMatrix(idrotm[301],0.0,0.0,90.0,90.0,90.0,180.0);
611 AliMatrix(idrotm[302],0.0,0.0,90.0,90.0,90.0,0.0);
612 AliMatrix(idrotm[303],180.0,0.0,90.0,90.0,90.0,0.0);
613 AliMatrix(idrotm[304],180.0,0.0,90.0,90.0,90.0,180.0);
614 AliMatrix(idrotm[305],90.0,347.14,90.0,77.14,0.0,0.0);
615 AliMatrix(idrotm[306],90.0,321.43,90.0,51.43,0.0,0.0);
616 AliMatrix(idrotm[307],90.0,295.71,90.0,25.71,0.0,0.0);
617 AliMatrix(idrotm[308],90.0,244.29,90.0,334.29,0.0,0.0);
618 AliMatrix(idrotm[309],90.0,218.57,90.0,308.57,0.0,0.0);
619 AliMatrix(idrotm[310],90.0,167.14,90.0,257.14,0.0,0.0);
620 AliMatrix(idrotm[311],90.0,141.43,90.0,231.43,0.0,0.0);
621 AliMatrix(idrotm[312],90.0,0.0,0.0,0.0,90.0,270.0);
622 AliMatrix(idrotm[313],90.0,115.71,90.0,205.71,0.0,0.0);
623 AliMatrix(idrotm[314],90.0,335.45,90.0,65.45,0.0,0.0);
624 AliMatrix(idrotm[315],90.0,319.09,90.0,49.09,0.0,0.0);
625 AliMatrix(idrotm[316],90.0,302.73,90.0,32.73,0.0,0.0);
626 AliMatrix(idrotm[317],90.0,286.36,90.0,16.36,0.0,0.0);
627 AliMatrix(idrotm[318],90.0,270.0,90.0,360.0,0.0,0.0);
628 AliMatrix(idrotm[319],90.0,253.64,90.0,343.64,0.0,0.0);
629 AliMatrix(idrotm[320],90.0,237.27,90.0,327.27,0.0,0.0);
630 AliMatrix(idrotm[321],90.0,12.86,90.0,102.86,0.0,0.0);
631 AliMatrix(idrotm[322],90.0,220.91,90.0,310.91,0.0,0.0);
632 AliMatrix(idrotm[323],90.0,204.55,90.0,294.55,0.0,0.0);
633 AliMatrix(idrotm[324],90.0,188.18,90.0,278.18,0.0,0.0);
634 AliMatrix(idrotm[325],90.0,171.82,90.0,261.82,0.0,0.0);
635 AliMatrix(idrotm[326],90.0,155.45,90.0,245.45,0.0,0.0);
636 AliMatrix(idrotm[327],90.0,139.09,90.0,229.09,0.0,0.0);
637 AliMatrix(idrotm[328],90.0,122.73,90.0,212.73,0.0,0.0);
638 AliMatrix(idrotm[329],90.0,106.36,90.0,196.36,0.0,0.0);
639 AliMatrix(idrotm[330],90.0,73.64,90.0,163.64,0.0,0.0);
640 AliMatrix(idrotm[331],90.0,40.91,90.0,130.91,0.0,0.0);
641 AliMatrix(idrotm[332],90.0,24.55,90.0,114.55,0.0,0.0);
642 AliMatrix(idrotm[333],90.0,38.57,90.0,128.57,0.0,0.0);
643 AliMatrix(idrotm[334],90.0,351.82,90.0,81.82,0.0,0.0);
644 AliMatrix(idrotm[335],90.0,8.18,90.0,98.18,0.0,0.0);
645 AliMatrix(idrotm[336],90.0,64.29,90.0,154.29,0.0,0.0);
646 AliMatrix(idrotm[337],111.0,300.0,21.0,300.0,90.0,30.0);
647 AliMatrix(idrotm[338],69.0,240.0,159.0,240.0,90.0,150.0);
648 AliMatrix(idrotm[339],111.0,240.0,21.0,240.0,90.0,150.0);
649 AliMatrix(idrotm[340],69.0,300.0,159.0,300.0,90.0,30.0);
650 AliMatrix(idrotm[341],128.0,0.0,38.0,0.0,90.0,270.0);
651 AliMatrix(idrotm[342],90.0,240.0,180.0,0.0,90.0,330.);
652 AliMatrix(idrotm[343],90.0,120.0,180.0,0.0,90.0,210.0);
653 AliMatrix(idrotm[344],90.0,0.0,180.0,0.0,90.0,90.0);
654 AliMatrix(idrotm[345],90.0,180.0,90.0,90.0,0.0,0.0);
655 AliMatrix(idrotm[346],90.0,300.0,90.0,30.0,0.0,0.0);
656 AliMatrix(idrotm[347],90.0,240.0,90.0,150.0,0.0,0.0);
657 AliMatrix(idrotm[348],90.0,180.0,0.0,0.0,90.0,270.0);
658 AliMatrix(idrotm[349],90.0,235.0,90.0,145.0,0.0,0.0);
659 AliMatrix(idrotm[350],90.0,90.0,90.0,180.0,0.0,0.0);
660 AliMatrix(idrotm[351],90.0,305.0,90.0,35.0,0.0,0.0);
661 AliMatrix(idrotm[352],0.0,0.0,90.0,0.0,90.0,90.0);
662 AliMatrix(idrotm[353],90.0,60.0,90.0,150.0,0.0,0.0);
663 AliMatrix(idrotm[354],90.0,120.0,90.0,30.0,0.0,0.0);
664 AliMatrix(idrotm[355],90.0,180.0,90.0,90.0,180.0,0.0);
665 AliMatrix(idrotm[356],90.0,270.0,90.0,0.0,0.0,0.0);
666 AliMatrix(idrotm[366],90.0,57.27,90.0,147.27,0.0,0.0);
667 AliMatrix(idrotm[386],90.0,192.86,90.0,282.86,0.0,0.0);
671 AliMatrix(idrotm[501],90.0,148.24,90.0,238.24,0.0,0.0);
672 AliMatrix(idrotm[503],90.0,137.65,90.0,227.65,0.0,0.0);
673 AliMatrix(idrotm[504],90.0,127.06,90.0,217.06,0.0,0.0);
674 AliMatrix(idrotm[505],90.0,116.47,90.0,206.47,0.0,0.0);
675 AliMatrix(idrotm[506],90.0,105.88,90.0,195.88,0.0,0.0);
676 AliMatrix(idrotm[507],90.0,95.29,90.0,185.29,0.0,0.0);
677 AliMatrix(idrotm[508],90.0,84.71,90.0,174.71,0.0,0.0);
678 AliMatrix(idrotm[509],90.0,74.12,90.0,164.12,0.0,0.0);
679 AliMatrix(idrotm[510],90.0,63.53,90.0,153.53,0.0,0.0);
680 AliMatrix(idrotm[511],90.0,52.94,90.0,142.94,0.0,0.0);
681 AliMatrix(idrotm[512],90.0,42.35,90.0,132.35,0.0,0.0);
682 AliMatrix(idrotm[513],90.0,31.76,90.0,121.76,0.0,0.0);
683 AliMatrix(idrotm[514],90.0,10.59,90.0,100.59,0.0,0.0);
684 AliMatrix(idrotm[515],90.0,349.41,90.0,79.41,0.0,0.0);
685 AliMatrix(idrotm[516],90.0,338.82,90.0,68.82,0.0,0.0);
686 AliMatrix(idrotm[517],90.0,328.24,90.0,58.24,0.0,0.0);
687 AliMatrix(idrotm[518],90.0,317.65,90.0,47.65,0.0,0.0);
688 AliMatrix(idrotm[519],90.0,307.06,90.0,37.06,0.0,0.0);
689 AliMatrix(idrotm[520],90.0,296.47,90.0,26.47,0.0,0.0);
690 AliMatrix(idrotm[521],90.0,285.88,90.0,15.88,0.0,0.0);
691 AliMatrix(idrotm[522],90.0,275.29,90.0,5.29,0.0,0.0);
692 AliMatrix(idrotm[523],90.0,264.71,90.0,354.71,0.0,0.0);
693 AliMatrix(idrotm[524],90.0,254.12,90.0,344.12,0.0,0.0);
694 AliMatrix(idrotm[525],90.0,243.53,90.0,333.53,0.0,0.0);
695 AliMatrix(idrotm[526],90.0,232.94,90.0,322.94,0.0,0.0);
696 AliMatrix(idrotm[527],90.0,222.35,90.0,312.35,0.0,0.0);
697 AliMatrix(idrotm[528],90.0,211.76,90.0,301.76,0.0,0.0);
698 AliMatrix(idrotm[529],90.0,190.59,90.0,280.59,0.0,0.0);
699 AliMatrix(idrotm[530],90.0,169.41,90.0,259.41,0.0,0.0);
700 AliMatrix(idrotm[531],90.0,158.82,90.0,248.82,0.0,0.0);
701 AliMatrix(idrotm[532],90.0,360.0,90.0,90.0,0.0,0.0);
702 AliMatrix(idrotm[533],90.0,180.0,90.0,270.0,0.0,0.0);
703 AliMatrix(idrotm[534],90.0,189.47,90.0,279.47,0.0,0.0);
704 AliMatrix(idrotm[535],90.0,198.95,90.0,288.95,0.0,0.0);
705 AliMatrix(idrotm[537],90.0,217.89,90.0,307.89,0.0,0.0);
706 AliMatrix(idrotm[538],90.0,227.37,90.0,317.37,0.0,0.0);
707 AliMatrix(idrotm[539],90.0,236.84,90.0,326.84,0.0,0.0);
708 AliMatrix(idrotm[540],90.0,246.32,90.0,336.32,0.0,0.0);
709 AliMatrix(idrotm[541],90.0,255.79,90.0,345.79,0.0,0.0);
710 AliMatrix(idrotm[542],90.0,265.26,90.0,355.26,0.0,0.0);
711 AliMatrix(idrotm[543],90.0,274.74,90.0,4.74,0.0,0.0);
712 AliMatrix(idrotm[544],90.0,284.21,90.0,14.21,0.0,0.0);
713 AliMatrix(idrotm[545],90.0,293.68,90.0,23.68,0.0,0.0);
714 AliMatrix(idrotm[546],90.0,303.16,90.0,33.16,0.0,0.0);
715 AliMatrix(idrotm[547],90.0,312.63,90.0,42.63,0.0,0.0);
716 AliMatrix(idrotm[548],90.0,322.11,90.0,52.11,0.0,0.0);
717 AliMatrix(idrotm[549],90.0,331.58,90.0,61.58,0.0,0.0);
718 AliMatrix(idrotm[550],90.0,341.05,90.0,71.05,0.0,0.0);
719 AliMatrix(idrotm[551],90.0,350.53,90.0,80.53,0.0,0.0);
720 AliMatrix(idrotm[552],90.0,9.47,90.0,99.47,0.0,0.0);
721 AliMatrix(idrotm[553],90.0,18.95,90.0,108.95,0.0,0.0);
722 AliMatrix(idrotm[555],90.0,37.89,90.0,127.89,0.0,0.0);
723 AliMatrix(idrotm[556],90.0,47.37,90.0,137.37,0.0,0.0);
724 AliMatrix(idrotm[557],90.0,56.84,90.0,146.84,0.0,0.0);
725 AliMatrix(idrotm[558],90.0,66.32,90.0,156.32,0.0,0.0);
726 AliMatrix(idrotm[559],90.0,75.79,90.0,165.79,0.0,0.0);
727 AliMatrix(idrotm[560],90.0,85.26,90.0,175.26,0.0,0.0);
728 AliMatrix(idrotm[561],90.0,94.74,90.0,184.74,0.0,0.0);
729 AliMatrix(idrotm[562],90.0,104.21,90.0,194.21,0.0,0.0);
730 AliMatrix(idrotm[563],90.0,113.68,90.0,203.68,0.0,0.0);
731 AliMatrix(idrotm[564],90.0,123.16,90.0,213.16,0.0,0.0);
732 AliMatrix(idrotm[565],90.0,132.63,90.0,222.63,0.0,0.0);
733 AliMatrix(idrotm[566],90.0,142.11,90.0,232.11,0.0,0.0);
734 AliMatrix(idrotm[567],90.0,151.58,90.0,241.58,0.0,0.0);
735 AliMatrix(idrotm[568],90.0,161.05,90.0,251.05,0.0,0.0);
736 AliMatrix(idrotm[569],90.0,170.53,90.0,260.53,0.0,0.0);
737 AliMatrix(idrotm[570],90.0,180.0,90.0,90.0,180.0,0.0);
738 AliMatrix(idrotm[571],90.0,0.0,0.0,0.0,90.0,270.0);
739 AliMatrix(idrotm[572],90.0,180.0,0.0,0.0,90.0,270.0);
740 AliMatrix(idrotm[573],90.0,180.0,90.0,90.0,0.0,0.0);
741 AliMatrix(idrotm[575],90.0,120.0,180.0,0.0,90.0,210.0);
742 AliMatrix(idrotm[576],65.71,300.0,90.0,30.0,24.29,120.0);
743 AliMatrix(idrotm[577],114.29,300.0,90.0,30.0,155.71,120.0);
744 AliMatrix(idrotm[579],65.71,240.0,90.0,150.0,24.29,60.0);
745 AliMatrix(idrotm[580],114.29,240.0,90.0,150.0,155.71,60.0);
746 AliMatrix(idrotm[581],90.0,240.0,180.0,0.0,90.0,330.0);
747 AliMatrix(idrotm[583],90.0,0.0,180.0,0.0,90.0,90.0);
748 AliMatrix(idrotm[584],90.0,180.0,180.0,0.0,90.0,90.0);
749 AliMatrix(idrotm[586],180.0,0.0,90.0,90.0,90.0,0.0);
750 AliMatrix(idrotm[618],90.0,201.18,90.0,291.18,0.0,0.0);
751 AliMatrix(idrotm[620],90.0,28.42,90.0,118.42,0.0,0.0);
752 AliMatrix(idrotm[623],90.0,208.42,90.0,298.42,0.0,0.0);
753 AliMatrix(idrotm[633],132.46,0.0,90.0,90.0,42.46,360.0);
754 AliMatrix(idrotm[653],90.0,21.18,90.0,111.18,0.0,0.0);
759 AliMatrix(idrotm[846],90.0,300.0,90.0,30.0,0.0,0.0);
760 AliMatrix(idrotm[851],90.0,305.0,90.0,35.0,0.0,0.0);
761 AliMatrix(idrotm[853],90.0,60.0,90.0,150.0,0.0,0.0);
762 AliMatrix(idrotm[856],90.0,0.0,90.0,90.0,180.0,0.0);
763 AliMatrix(idrotm[857],90.0,5.0,90.0,95.0,180.0,0.0);
764 AliMatrix(idrotm[858],90.0,65.0,90.0,155.0,180.0,0.0);
765 AliMatrix(idrotm[859],90.0,305.0,90.0,35.0,180.0,0.0);
766 AliMatrix(idrotm[860],90.0,245.0,90.0,335.0,180.0,0.0);
767 AliMatrix(idrotm[861],90.0,185.0,90.0,275.0,180.0,0.0);
768 AliMatrix(idrotm[862],90.0,125.0,90.0,215.0,180.0,0.0);
769 AliMatrix(idrotm[863],90.0,257.5,90.0,347.5,180.0,0.0);
770 AliMatrix(idrotm[864],90.0,227.5,90.0,317.5,180.0,0.0);
771 AliMatrix(idrotm[865],90.0,197.5,90.0,287.5,180.0,0.0);
772 AliMatrix(idrotm[867],90.0,167.5,90.0,257.5,180.0,0.0);
773 AliMatrix(idrotm[868],90.0,287.5,90.0,17.5,0.0,0.0);
774 AliMatrix(idrotm[869],90.0,137.5,90.0,227.5,180.0,0.0);
775 AliMatrix(idrotm[870],90.0,107.5,90.0,197.5,180.0,0.0);
776 AliMatrix(idrotm[871],90.0,77.5,90.0,167.5,180.0,0.0);
777 AliMatrix(idrotm[872],90.0,47.5,90.0,137.5,180.0,0.0);
778 AliMatrix(idrotm[873],90.0,17.5,90.0,107.5,180.0,0.0);
779 AliMatrix(idrotm[874],90.0,347.5,90.0,77.5,180.0,0.0);
780 AliMatrix(idrotm[875],90.0,317.5,90.0,47.5,180.0,0.0);
781 AliMatrix(idrotm[876],90.0,287.5,90.0,17.5,180.0,0.0);
782 AliMatrix(idrotm[877],90.0,185.0,90.0,275.0,0.0,0.0);
783 AliMatrix(idrotm[878],90.0,180.0,90.0,270.0,0.0,0.0);
784 AliMatrix(idrotm[879],90.0,125.0,90.0,215.0,0.0,0.0);
785 AliMatrix(idrotm[880],90.0,65.0,90.0,155.0,0.0,0.0);
786 AliMatrix(idrotm[881],90.0,5.0,90.0,95.0,0.0,0.0);
787 AliMatrix(idrotm[882],90.0,245.0,90.0,335.0,0.0,0.0);
788 AliMatrix(idrotm[883],90.0,47.5,90.0,137.5,0.0,0.0);
789 AliMatrix(idrotm[884],90.0,77.5,90.0,167.5,0.0,0.0);
790 AliMatrix(idrotm[885],90.0,107.5,90.0,197.5,0.0,0.0);
791 AliMatrix(idrotm[887],90.0,137.5,90.0,227.5,0.0,0.0);
792 AliMatrix(idrotm[888],90.0,167.5,90.0,257.5,0.0,0.0);
793 AliMatrix(idrotm[889],90.0,197.5,90.0,287.5,0.0,0.0);
794 AliMatrix(idrotm[890],90.0,227.5,90.0,317.5,0.0,0.0);
795 AliMatrix(idrotm[891],90.0,347.5,90.0,77.5,0.0,0.0);
796 AliMatrix(idrotm[892],90.0,317.5,90.0,47.5,0.0,0.0);
797 AliMatrix(idrotm[893],90.0,257.5,90.0,347.5,0.0,0.0);
798 AliMatrix(idrotm[894],90.0,270.0,0.0,0.0,90.0,180.0);
799 AliMatrix(idrotm[895],90.0,286.36,0.0,0.0,90.0,196.36);
800 AliMatrix(idrotm[896],90.0,302.73,0.0,0.0,90.0,212.73);
801 AliMatrix(idrotm[897],90.0,319.09,0.0,0.0,90.0,229.09);
802 AliMatrix(idrotm[898],90.0,17.5,90.0,107.5,0.0,0.0);
803 AliMatrix(idrotm[899],90.0,335.45,0.0,0.0,90.0,245.45);
804 AliMatrix(idrotm[900],90.0,351.82,0.0,0.0,90.0,261.82);
805 AliMatrix(idrotm[901],90.0,8.18,0.0,0.0,90.0,278.18);
806 AliMatrix(idrotm[902],90.0,24.55,0.0,0.0,90.0,294.55);
807 AliMatrix(idrotm[903],90.0,40.91,0.0,0.0,90.0,310.91);
808 AliMatrix(idrotm[904],90.0,57.27,0.0,0.0,90.0,327.27);
809 AliMatrix(idrotm[905],90.0,73.64,0.0,0.0,90.0,343.64);
810 AliMatrix(idrotm[906],90.0,90.0,0.0,0.0,90.0,360.0);
811 AliMatrix(idrotm[907],90.0,106.36,0.0,0.0,90.0,16.36);
812 AliMatrix(idrotm[908],90.0,122.73,0.0,0.0,90.0,32.73);
813 AliMatrix(idrotm[909],90.0,139.09,0.0,0.0,90.0,49.09);
814 AliMatrix(idrotm[910],90.0,155.45,0.0,0.0,90.0,65.45);
815 AliMatrix(idrotm[911],90.0,171.82,0.0,0.0,90.0,81.82);
816 AliMatrix(idrotm[912],90.0,188.18,0.0,0.0,90.0,98.18);
817 AliMatrix(idrotm[913],90.0,204.55,0.0,0.0,90.0,114.55);
818 AliMatrix(idrotm[914],90.0,220.91,0.0,0.0,90.0,130.91);
819 AliMatrix(idrotm[915],90.0,237.27,0.0,0.0,90.0,147.27);
820 AliMatrix(idrotm[916],90.0,253.64,0.0,0.0,90.0,163.64);
821 AliMatrix(idrotm[917],90.0,295.71,0.0,0.0,90.0,205.71);
822 AliMatrix(idrotm[918],90.0,321.43,0.0,0.0,90.0,231.43);
823 AliMatrix(idrotm[919],90.0,347.14,0.0,0.0,90.0,257.14);
824 AliMatrix(idrotm[920],90.0,12.86,0.0,0.0,90.0,282.86);
825 AliMatrix(idrotm[921],90.0,38.57,0.0,0.0,90.0,308.57);
826 AliMatrix(idrotm[922],90.0,64.29,0.0,0.0,90.0,334.29);
827 AliMatrix(idrotm[923],90.0,115.71,0.0,0.0,90.0,25.71);
828 AliMatrix(idrotm[924],90.0,141.43,0.0,0.0,90.0,51.43);
829 AliMatrix(idrotm[925],90.0,167.14,0.0,0.0,90.0,77.14);
830 AliMatrix(idrotm[926],90.0,192.86,0.0,0.0,90.0,102.86);
831 AliMatrix(idrotm[927],90.0,218.57,0.0,0.0,90.0,128.57);
832 AliMatrix(idrotm[928],90.0,244.29,0.0,0.0,90.0,154.29);
833 AliMatrix(idrotm[929],90.0,120.0,90.0,210.0,0.0,0.0);
834 AliMatrix(idrotm[930],90.0,240.0,90.0,330.0,0.0,0.0);
835 AliMatrix(idrotm[931],90.0,60.0,90.0,150.0,180.0,0.0);
836 AliMatrix(idrotm[932],90.0,120.0,90.0,210.0,180.0,0.0);
837 AliMatrix(idrotm[933],90.0,180.0,90.0,270.0,180.0,0.0);
838 AliMatrix(idrotm[934],90.0,240.0,90.0,330.0,180.0,0.0);
839 AliMatrix(idrotm[935],90.0,300.0,90.0,30.0,180.0,0.0);
843 AliMatrix(idrotm[701],90.0,0.0,90.0,90.0,180.0,0.0);
844 AliMatrix(idrotm[702],90.0,347.5,90.0,77.5,180.0,0.0);
845 AliMatrix(idrotm[703],90.0,17.5,90.0,107.5,180.0,0.0);
846 AliMatrix(idrotm[704],90.0,47.5,90.0,137.5,180.0,0.0);
847 AliMatrix(idrotm[705],90.0,77.5,90.0,167.5,180.0,0.0);
848 AliMatrix(idrotm[706],90.0,107.5,90.0,197.5,180.0,0.0);
849 AliMatrix(idrotm[707],90.0,137.5,90.0,227.5,180.0,0.0);
850 AliMatrix(idrotm[708],90.0,167.5,90.0,257.5,180.0,0.0);
851 AliMatrix(idrotm[709],90.0,197.5,90.0,287.5,180.0,0.0);
852 AliMatrix(idrotm[710],90.0,227.5,90.0,317.5,180.0,0.0);
853 AliMatrix(idrotm[711],90.0,257.5,90.0,347.5,180.0,0.0);
854 AliMatrix(idrotm[712],90.0,287.5,90.0,17.5,180.0,0.0);
855 AliMatrix(idrotm[713],90.0,317.5,90.0,47.5,180.0,0.0);
856 AliMatrix(idrotm[714],90.0,328.4,90.0,58.4,180.0,0.0);
857 AliMatrix(idrotm[715],90.0,28.4,90.0,118.4,180.0,0.0);
858 AliMatrix(idrotm[716],90.0,88.4,90.0,178.4,180.0,0.0);
859 AliMatrix(idrotm[717],90.0,148.4,90.0,238.4,180.0,0.0);
860 AliMatrix(idrotm[718],90.0,208.4,90.0,298.4,180.0,0.0);
861 AliMatrix(idrotm[719],90.0,268.4,90.0,358.4,180.0,0.0);
862 AliMatrix(idrotm[720],90.0,28.4,90.0,118.4,0.0,0.0);
863 AliMatrix(idrotm[721],90.0,88.4,90.0,178.4,0.0,0.0);
864 AliMatrix(idrotm[722],90.0,148.4,90.0,238.4,0.0,0.0);
865 AliMatrix(idrotm[723],90.0,208.4,90.0,298.4,0.0,0.0);
866 AliMatrix(idrotm[724],90.0,268.4,90.0,358.4,0.0,0.0);
867 AliMatrix(idrotm[725],90.0,328.4,90.0,58.4,0.0,0.0);
868 AliMatrix(idrotm[726],90.0,77.5,90.0,167.5,0.0,0.0);
869 AliMatrix(idrotm[727],90.0,107.5,90.0,197.5,0.0,0.0);
870 AliMatrix(idrotm[728],90.0,137.5,90.0,227.5,0.0,0.0);
871 AliMatrix(idrotm[729],90.0,167.5,90.0,257.5,0.0,0.0);
872 AliMatrix(idrotm[730],90.0,227.5,90.0,317.5,0.0,0.0);
873 AliMatrix(idrotm[731],90.0,257.5,90.0,347.5,0.0,0.0);
874 AliMatrix(idrotm[732],90.0,317.5,90.0,47.5,0.0,0.0);
875 AliMatrix(idrotm[733],90.0,197.5,90.0,287.5,0.0,0.0);
876 AliMatrix(idrotm[734],90.0,347.5,90.0,77.5,0.0,0.0);
877 AliMatrix(idrotm[735],90.0,47.5,90.0,137.5,0.0,0.0);
878 AliMatrix(idrotm[768],90.0,287.5,90.0,17.5,0.0,0.0);
879 AliMatrix(idrotm[798],90.0,17.5,90.0,107.5,0.0,0.0);
883 AliMatrix(idrotm[200], 90., 0., 90., 90., 180., 0.);
886 // CONVERT INTO CM (RL(SI)=9.36 CM)
888 for (i = 0; i < 6; ++i) {
889 drl[i] = drl[i] / 100. * 9.36;
892 // FIELD CAGE HALF LENGTH
898 // --- Define ghost volume containing the whole ITS (including services)
899 // and fill it with air
904 dgh[3] = -ztpc-5.-0.1;
949 dgh[48] = ztpc+4.+0.1;
952 gMC->Gsvolu("ITSV", "PCON", idtmed[205], dgh, 51);
955 // --- Place the ghost volume in its mother volume (ALIC) and make it
958 gMC->Gspos("ITSV", 1, "ALIC", 0., 0., 0., 0, "ONLY");
959 //gMC->Gsatt("ITSV", "SEEN", 0);
962 // --- Define ghost volume containing the six layers and fill it with air
991 gMC->Gsvolu("ITSD", "PCON", idtmed[205], dgh, 27);
993 // --- Place the ghost volume in its mother volume (ITSV) and make it
996 gMC->Gspos("ITSD", 1, "ITSV", 0., 0., 0., 0, "ONLY");
997 //gMC->Gsatt("ITSD", "SEEN", 0);
1000 // --- Define SPD (option 'a') volumes ----------------------------
1003 // (this is NOT the default)
1010 gMC->Gsvolu("IT12", "TUBE", idtmed[254], dits, 3);
1017 gMC->Gsvolu("I12A", "TUBS", idtmed[254], dits, 5); // sector
1020 di10a[1] = ddet1+dchip1+dbus+0.0025;
1022 gMC->Gsvolu("I10A", "BOX ", idtmed[254], di10a, 3); // mother volume
1025 di20a[1] = ddet2+dchip2+dbus+0.0025;
1027 gMC->Gsvolu("I20A", "BOX ", idtmed[254], di20a, 3); // mother volume
1032 gMC->Gsvolu("I123", "BOX ", idtmed[253], dits, 3);
1039 gMC->Gsvolu("I121", "TUBS", idtmed[253], dits, 5);
1044 gMC->Gsvolu("I122", "BOX ", idtmed[253], dits, 3);
1051 gMC->Gsvolu("I120", "TUBS", idtmed[253], dits, 5);
1056 gMC->Gsvolu("I144", "BOX ", idtmed[253], dits, 3);
1061 gMC->Gsvolu("I113", "BOX ", idtmed[254], dits, 3);
1066 gMC->Gsvolu("I143", "BOX ", idtmed[253], dits, 3);
1073 gMC->Gsvolu("I142", "TUBS", idtmed[253], dits, 5);
1078 gMC->Gsvolu("I141", "BOX ", idtmed[253], dits, 3);
1085 gMC->Gsvolu("I140", "TUBS", idtmed[253], dits, 5);
1090 gMC->Gsvolu("I139", "BOX ", idtmed[253], dits, 3);
1095 gMC->Gsvolu("I138", "BOX ", idtmed[253], dits, 3);
1102 gMC->Gsvolu("I137", "TUBS", idtmed[253], dits, 5);
1107 gMC->Gsvolu("I136", "BOX ", idtmed[253], dits, 3);
1114 gMC->Gsvolu("I135", "TUBS", idtmed[253], dits, 5);
1119 gMC->Gsvolu("I134", "BOX ", idtmed[253], dits, 3);
1124 gMC->Gsvolu("I133", "BOX ", idtmed[253], dits, 3);
1131 gMC->Gsvolu("I132", "TUBS", idtmed[253], dits, 5);
1136 gMC->Gsvolu("I131", "BOX ", idtmed[253], dits, 3);
1143 gMC->Gsvolu("I130", "TUBS", idtmed[253], dits, 5);
1148 gMC->Gsvolu("I129", "BOX ", idtmed[253], dits, 3);
1153 gMC->Gsvolu("I128", "BOX ", idtmed[253], dits, 3);
1160 gMC->Gsvolu("I126", "TUBS", idtmed[253], dits, 5);
1165 gMC->Gsvolu("I125", "BOX ", idtmed[253], dits, 3);
1172 gMC->Gsvolu("I124", "TUBS", idtmed[253], dits, 5);
1175 di103[1] = ddet1+dchip1;
1177 gMC->Gsvolu("I103", "BOX ", idtmed[254], di103, 3); // contains det and chip
1180 dits[1] = 0.475; //0.685; 0.015
1182 gMC->Gsvolu("I105", "BOX ", idtmed[290], dits, 3); // end-ladder electr.
1187 gMC->Gsvolu("I104", "BOX ", idtmed[275], di104, 3); // bus for both layers
1190 di1d3[1] = ddet2+dchip2;
1192 gMC->Gsvolu("I1D3", "BOX ", idtmed[254], di1d3, 3); // contains det and chip
1200 gMC->Gsvolu("I112", "TUBS", idtmed[253], dits, 5);
1207 gMC->Gsvolu("I111", "TUBS", idtmed[253], dits, 5);
1212 gMC->Gsvolu("I118", "BOX ", idtmed[273], dits, 3);
1217 gMC->Gsvolu("I110", "BOX ", idtmed[253], dits, 3);
1224 gMC->Gsvolu("I114", "TUBS", idtmed[264], dits, 5);
1232 gMC->Gsvolu("I115", "TUBS", idtmed[211], dits, 5); // set water as cooling fluid
1239 gMC->Gsvolu("I115", "TUBS", idtmed[212], dits, 5); // set freon as cooling fluid
1245 gMC->Gsvolu("I116", "BOX ", idtmed[264], dits, 3);
1250 gMC->Gsvolu("I102", "BOX ", idtmed[201], di102, 3); // chip layer 1
1255 gMC->Gsvolu("I1D2", "BOX ", idtmed[201], di1d2, 3); // chip layer 2
1260 gMC->Gsvolu("I101", "BOX ", idtmed[250], di101, 3); // contains detector
1265 gMC->Gsvolu("I1D1", "BOX ", idtmed[250], di1d1, 3); // contains detector
1271 gMC->Gsvolu("I117", "BOX ", idtmed[211], dits, 3); // set water as cooling fuid
1276 gMC->Gsvolu("I117", "BOX ", idtmed[212], dits, 3); // set freon as cooling fluid
1282 gMC->Gsvolu("ITS1", "BOX ", idtmed[200], dits1, 3); // detector layer 1
1287 gMC->Gsvolu("ITS2", "BOX ", idtmed[200], dits2, 3); // detector layer 2
1294 gMC->Gsvolu("I650", "TUBS", idtmed[254], dits, 5); // was I150 in old geom.
1299 gMC->Gsvolu("I651", "TUBE", idtmed[296], dits, 3); // services disk
1304 gMC->Gsvolu("I676", "TUBE", idtmed[274], dits, 3); // was I176 in old geom.
1309 gMC->Gsvolu("I673", "TUBE", idtmed[274], dits, 3); // was I173 in old geom.
1314 gMC->Gsvolu("I671", "TUBE", idtmed[274], dits, 3); // was I171 in old geom.
1319 gMC->Gsvolu("I669", "TUBE", idtmed[264], dits, 3); // was I169 in old geom.
1326 gMC->Gsvolu("I667", "TUBS", idtmed[263], dits, 5); // was I167 in old geom.
1333 gMC->Gsvolu("I666", "TUBS", idtmed[263], dits, 5); // was I166 in old geom.
1338 gMC->Gsvolu("I678", "TUBE", idtmed[263], dits, 3); // was I178 in old geom.
1344 gMC->Gsvolu("I677", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1345 // was I177 in old geom.
1350 gMC->Gsvolu("I677", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1351 // was I177 in old geom.
1357 gMC->Gsvolu("I675", "TUBE", idtmed[263], dits, 3); // was I175 in old geom.
1363 gMC->Gsvolu("I674", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1364 // was I174 in old geom.
1369 gMC->Gsvolu("I674", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1370 // was I174 in old geom.
1377 gMC->Gsvolu("I672", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1378 // was I172 in old geom.
1383 gMC->Gsvolu("I672", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1384 // was I172 in old geom.
1391 gMC->Gsvolu("I670", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
1392 // was I170 in old geom.
1397 gMC->Gsvolu("I670", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
1398 // was I170 in old geom.
1407 gMC->Gsvolu("I668", "TUBS", idtmed[211], dits, 5); // set water as cooling fluid
1408 // was I168 in old geom.
1415 gMC->Gsvolu("I668", "TUBS", idtmed[212], dits, 5); // set freon as cooling fluid
1416 // was I168 in old geom.
1422 // --- Define SPD (option 'b') volumes ----------------------------
1425 // (this is the default)
1432 gMC->Gsvolu("IT12", "TUBE", idtmed[254], dits, 3);
1439 gMC->Gsvolu("I12B", "TUBS", idtmed[254], dits, 5); // sector
1442 di10b[1] = ddet1+dchip1+dbus+0.0025;
1444 gMC->Gsvolu("I10B", "BOX ", idtmed[254], di10b, 3); // mother volume
1448 di20b[1] = ddet2+dchip2+dbus+0.0025;
1450 gMC->Gsvolu("I20B", "BOX ", idtmed[254], di20b, 3); // mother volume
1456 gMC->Gsvolu("I123", "BOX ", idtmed[253], dits, 3);
1463 gMC->Gsvolu("I121", "TUBS", idtmed[253], dits, 5);
1468 gMC->Gsvolu("I122", "BOX ", idtmed[253], dits, 3);
1475 gMC->Gsvolu("I120", "TUBS", idtmed[253], dits, 5);
1480 gMC->Gsvolu("I144", "BOX ", idtmed[253], dits, 3);
1485 gMC->Gsvolu("I113", "BOX ", idtmed[254], dits, 3);
1490 gMC->Gsvolu("I143", "BOX ", idtmed[253], dits, 3);
1497 gMC->Gsvolu("I142", "TUBS", idtmed[253], dits, 5);
1502 gMC->Gsvolu("I141", "BOX ", idtmed[253], dits, 3);
1509 gMC->Gsvolu("I140", "TUBS", idtmed[253], dits, 5);
1514 gMC->Gsvolu("I139", "BOX ", idtmed[253], dits, 3);
1519 gMC->Gsvolu("I138", "BOX ", idtmed[253], dits, 3);
1526 gMC->Gsvolu("I137", "TUBS", idtmed[253], dits, 5);
1531 gMC->Gsvolu("I136", "BOX ", idtmed[253], dits, 3);
1538 gMC->Gsvolu("I135", "TUBS", idtmed[253], dits, 5);
1543 gMC->Gsvolu("I134", "BOX ", idtmed[253], dits, 3);
1548 gMC->Gsvolu("I133", "BOX ", idtmed[253], dits, 3);
1555 gMC->Gsvolu("I132", "TUBS", idtmed[253], dits, 5);
1560 gMC->Gsvolu("I131", "BOX ", idtmed[253], dits, 3);
1567 gMC->Gsvolu("I130", "TUBS", idtmed[253], dits, 5);
1572 gMC->Gsvolu("I129", "BOX ", idtmed[253], dits, 3);
1577 gMC->Gsvolu("I128", "BOX ", idtmed[253], dits, 3);
1584 gMC->Gsvolu("I126", "TUBS", idtmed[253], dits, 5);
1589 gMC->Gsvolu("I125", "BOX ", idtmed[253], dits, 3);
1596 gMC->Gsvolu("I124", "TUBS", idtmed[253], dits, 5);
1599 dits[1] = 0.475 ; //0.685; 0.015
1601 gMC->Gsvolu("I105", "BOX ", idtmed[290], dits, 3);
1604 di107[1] = ddet1+dchip1;
1606 gMC->Gsvolu("I107", "BOX ", idtmed[254], di107, 3); // contains det and chip
1611 gMC->Gsvolu("I109", "BOX ", idtmed[275], dits, 3);
1616 gMC->Gsvolu("I108", "BOX ", idtmed[275], di108, 3); // bus for both layers
1619 di1d7[1] = ddet2+dchip2;
1621 gMC->Gsvolu("I1D7", "BOX ", idtmed[254], di1d7, 3); // contains det and chip
1628 gMC->Gsvolu("I112", "TUBS", idtmed[253], dits, 5);
1635 gMC->Gsvolu("I111", "TUBS", idtmed[253], dits, 5);
1640 gMC->Gsvolu("I118", "BOX ", idtmed[273], dits, 3);
1645 gMC->Gsvolu("I110", "BOX ", idtmed[253], dits, 3);
1652 gMC->Gsvolu("I114", "TUBS", idtmed[264], dits, 5);
1660 gMC->Gsvolu("I115", "TUBS", idtmed[211], dits, 5); // set water as cooling fluid
1667 gMC->Gsvolu("I115", "TUBS", idtmed[212], dits, 5); // set freon as cooling fluid
1673 gMC->Gsvolu("I116", "BOX ", idtmed[264], dits, 3);
1678 gMC->Gsvolu("I106", "BOX ", idtmed[201], di106, 3); // chip layer 1
1683 gMC->Gsvolu("I1D6", "BOX ", idtmed[201], di1d6, 3); // chip layer 2
1688 gMC->Gsvolu("I101", "BOX ", idtmed[250], di101, 3); // contains detector
1693 gMC->Gsvolu("I1D1", "BOX ", idtmed[250], di1d1, 3); // contains detector
1700 gMC->Gsvolu("I117", "BOX ", idtmed[211], dits, 3); // set water as cooling fluid
1705 gMC->Gsvolu("I117", "BOX ", idtmed[212], dits, 3); // set freon as cooling fluid
1711 gMC->Gsvolu("ITS1", "BOX ", idtmed[200], dits1, 3); // detector layer 1
1716 gMC->Gsvolu("ITS2", "BOX ", idtmed[200], dits2, 3); // detector layer 2
1723 gMC->Gsvolu("I650", "TUBS", idtmed[254], dits, 5); // was I150 in old geom.
1728 gMC->Gsvolu("I651", "TUBE", idtmed[296], dits, 3); // services disk
1733 gMC->Gsvolu("I676", "TUBE", idtmed[274], dits, 3); // was I176 in old geom.
1738 gMC->Gsvolu("I673", "TUBE", idtmed[274], dits, 3); // was I173 in old geom.
1743 gMC->Gsvolu("I671", "TUBE", idtmed[274], dits, 3); // was I171 in old geom.
1748 gMC->Gsvolu("I669", "TUBE", idtmed[264], dits, 3); // was I169 in old geom.
1755 gMC->Gsvolu("I667", "TUBS", idtmed[263], dits, 5); // was I167 in old geom.
1762 gMC->Gsvolu("I666", "TUBS", idtmed[263], dits, 5); // was I166 in old geom.
1767 gMC->Gsvolu("I678", "TUBE", idtmed[263], dits, 3); // was I178 in old geom.
1773 gMC->Gsvolu("I677", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1774 // was I177 in old geom.
1779 gMC->Gsvolu("I677", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1780 // was I177 in old geom.
1786 gMC->Gsvolu("I675", "TUBE", idtmed[263], dits, 3); // was I175 in old geom.
1792 gMC->Gsvolu("I674", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1793 // was I174 in old geom.
1798 gMC->Gsvolu("I674", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1799 // was I174 in old geom.
1806 gMC->Gsvolu("I672", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1807 // was I172 in old geom.
1812 gMC->Gsvolu("I672", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1813 // was I172 in old geom.
1820 gMC->Gsvolu("I670", "TUBE", idtmed[211], dits, 3); //set water as cooling fluid
1821 // was I170 in old geom.
1826 gMC->Gsvolu("I670", "TUBE", idtmed[212], dits, 3); //set freon as cooling fluid
1827 // was I170 in old geom.
1836 gMC->Gsvolu("I668", "TUBS", idtmed[211], dits, 5); //set water as cooling fluid
1837 // was I168 in old geom.
1844 gMC->Gsvolu("I668", "TUBS", idtmed[212], dits, 5); //set freon as cooling fluid
1845 // was I168 in old geom.
1851 // --- Define SDD volumes ------------------------------------------
1854 cos30 = cos(30.*3.14159/180.);
1855 sin30 = sin(30.*3.14159/180.);
1879 gMC->Gsvolu("IT34", "PCON", idtmed[209], dits, 21);
1881 // block of the SDD electronics and related ladder frame
1885 gMC->Gsvolu("I018", "BOX ", idtmed[209], I018dits, 3);
1887 // block of the SDD end ladder
1890 I024dits[2] = 2.725;
1891 gMC->Gsvolu("I024", "BOX ", idtmed[209], I024dits, 3);
1893 // ladder frame of layer 3 - F.T. March,7-2001
1894 I047dits[0] = I018dits[0];
1895 I047dits[1] = I018dits[1];
1896 I047dits[2] = 6*I018dits[2] + 2*I024dits[2];
1897 gMC->Gsvolu("I047", "BOX ", idtmed[209], I047dits, 3);
1899 // ladder frame of layer 4 - F.T. March,7-2001
1900 I048dits[0] = I018dits[0];
1901 I048dits[1] = I018dits[1];
1902 I048dits[2] = 8*I018dits[2] + 2*I024dits[2];
1903 gMC->Gsvolu("I048", "BOX ", idtmed[209], I048dits, 3);
1906 // global SDD volume (sensitive + insensitive)
1907 I302dits[0] = 3.6250;
1908 I302dits[1] = 0.0150;
1909 I302dits[2] = 4.3794;
1910 gMC->Gsvolu("I302", "BOX ", idtmed[278], I302dits, 3);
1912 // Like for I302 - F.T. March,7-2001
1913 I402dits[0] = 3.6250;
1914 I402dits[1] = 0.0150;
1915 I402dits[2] = 4.3794;
1916 gMC->Gsvolu("I402", "BOX ", idtmed[278], I402dits, 3);
1918 // SDD ladder of layer 3 - F.T. March,7-2001
1919 I004dits[0] = I302dits[0]+0.005;
1920 I004dits[1] = 2*I302dits[1]+Y_SDD_sep/2.;
1921 I004dits[2] = TMath::Abs(Z_SDD_lay3[0]);
1922 if (I004dits[2] < TMath::Abs(Z_SDD_lay3[5])) {
1923 I004dits[2] = TMath::Abs(Z_SDD_lay3[5]);
1925 I004dits[2] = I004dits[2] + I302dits[2];
1926 gMC->Gsvolu("I004", "BOX ", idtmed[209], I004dits, 3);
1928 // SDD ladder of layer 4 - F.T. March,7-2001
1929 I005dits[0] = I402dits[0]+0.005;
1930 I005dits[1] = 2*I402dits[1]+Y_SDD_sep/2.;
1931 I005dits[2] = TMath::Abs(Z_SDD_lay4[0]);
1932 if (I005dits[2] < TMath::Abs(Z_SDD_lay4[7])) {
1933 I005dits[2] = TMath::Abs(Z_SDD_lay4[7]);
1935 I005dits[2] = I005dits[2] + I402dits[2];
1936 gMC->Gsvolu("I005", "BOX ", idtmed[209], I005dits, 3);
1939 // -- block of the SDD ladder foot and end ladder
1941 // ladder foot mother volume
1942 I028dits[0] = 3.0000;
1943 I028dits[1] = 0.4000;
1944 I028dits[2] = 0.9000;
1945 gMC->Gsvolu("I028", "BOX ", idtmed[224], I028dits, 3);
1947 // positioning-box #1 at SDD end-ladder - F.T. March,7-2001
1948 I420dits[0] = 0.4500;
1949 I420dits[1] = 0.4000;
1950 I420dits[2] = 0.4500;
1951 gMC->Gsvolu("I420", "BOX ", idtmed[264], I420dits, 3);
1953 // positioning-box #2 at SDD end-ladder - F.T. March,7-2001
1956 I421dits[2] = I420dits[1];
1957 gMC->Gsvolu("I421", "TUBE", idtmed[209], I421dits, 3);
1959 // reference ruby-sphere at SDD end-ladder - F.T. March,7-2001
1960 I422dits[0] = 0.0000;
1961 I422dits[1] = 0.2000;
1962 I422dits[2] = 0.0000;
1963 I422dits[3] = 180.00;
1964 I422dits[4] = 0.0000;
1965 I422dits[5] = 360.00;
1966 gMC->Gsvolu("I422", "SPHE", idtmed[277], I422dits, 6);
1968 // support for ruby-sphere (I422) - F.T. March,7-2001
1969 I423dits[0] = 0.0000;
1970 I423dits[1] = 0.1000;
1971 I423dits[2] = (I420dits[1]-I422dits[1])/2.;
1972 gMC->Gsvolu("I423", "TUBE", idtmed[264], I423dits, 3);
1974 // passage for HV microcables - F.T. March,7-2001
1975 I424dits[0] = 1.5000;
1976 I424dits[1] = 0.1500;
1977 I424dits[2] = I421dits[2];
1978 gMC->Gsvolu("I424", "BOX ", idtmed[209], I424dits, 3);
1980 // HV microcables segment at the end ladder - F.T. March,7-2001
1981 I425dits[0] = 1.350000;
1982 I425dits[1] = 0.015250;
1983 I425dits[2] = I024dits[2];
1984 gMC->Gsvolu("I425", "BOX ", idtmed[279], I425dits, 3);
1986 // lower edge of SDD ladder frame at end-ladder - part 1
1989 dits[2] = I024dits[2];
1991 gMC->Gsvolu("I025", "TRD1", idtmed[208], dits, 4);
1993 // lower edge of SDD ladder frame at end-ladder - part 2
1996 dits[2] = I024dits[2];
1998 gMC->Gsvolu("I026", "TRD1", idtmed[208], dits, 4);
2000 // new: for the 1st top rod of the structure
2001 // at the end-ladder - F.T. March,7-2001
2003 I029dits[1] = 0.1815;
2004 I029dits[2] = 1.0100;
2005 I029dits[3] = 0.015;
2006 gMC->Gsvolu("I029", "TRD1", idtmed[208], I029dits, 4);
2008 // new: for the 2nd top rod of the structure
2009 // at the end-ladder - F.T. March,7-2001
2010 I030dits[0] = 0.1830;
2011 I030dits[1] = 0.1650;
2012 I030dits[2] = 1.0100;
2013 I030dits[3] = 0.0150;
2014 gMC->Gsvolu("I030", "TRD1", idtmed[208], I030dits, 4);
2016 // inox cooling tubes for the end ladder - F.T. March,7-2001
2017 I031dits[0] = 0.093;
2019 I031dits[2] = I024dits[2];
2020 gMC->Gsvolu("I031", "TUBE", idtmed[264], I031dits, 3);
2023 // cooling water for the end ladder - F.T. March,7-2001
2025 I032dits[1] = I031dits[0];
2026 I032dits[2] = I024dits[2];
2027 gMC->Gsvolu("I032", "TUBE", idtmed[211], I032dits, 3);
2029 // cooling freon for the end ladder - R.B. March,21-2001
2031 I032dits[1] = I031dits[0];
2032 I032dits[2] = I024dits[2];
2033 gMC->Gsvolu("I032", "TUBE", idtmed[212], I032dits, 3);
2036 // -- block of the SDD ladder frame holding the electronics
2038 // edge of the ladder frame - part 1
2043 gMC->Gsvolu("I019", "TRD1", idtmed[208], dits, 4);
2045 // edge of the ladder frame - part 2
2050 gMC->Gsvolu("I020", "TRD1", idtmed[208], dits, 4);
2052 // inclined segments of the ladder frame
2057 gMC->Gsvolu("I021", "TRD1", idtmed[208], dits, 4);
2059 // horiz.segments of the ladders, normal to ladder edges
2064 gMC->Gsvolu("I022", "TRD1", idtmed[208], dits, 4);
2066 // horiz.segments of the ladders, at 45 deg. to ladder edges
2071 gMC->Gsvolu("I023", "TRD1", idtmed[208], dits, 4);
2073 // supports of the ceramic pins holding the detectors
2077 gMC->Gsvolu("I033", "BOX ", idtmed[208], dits, 3);
2079 // ceramic pins holding the detectors
2083 gMC->Gsvolu("I034", "TUBE", idtmed[277], dits, 3);
2085 // holders of cooling tubes
2089 gMC->Gsvolu("I035", "TUBE", idtmed[208], I035dits, 3);
2091 // top holders of microcables
2095 gMC->Gsvolu("I036", "BOX ", idtmed[208], dits, 3);
2097 // inox cooling tubes - F.T. March,7-2001
2098 I037dits[0] = 0.093;
2100 I037dits[2] = I018dits[2];
2101 gMC->Gsvolu("I037", "TUBE", idtmed[264], I037dits, 3);
2104 // cooling water - F.T. March,7-2001
2106 I038dits[1] = I037dits[0];
2107 I038dits[2] = I018dits[2];
2108 gMC->Gsvolu("I038", "TUBE", idtmed[211], I038dits, 3);
2110 // cooling freon - R.B. March,21-2001
2112 I038dits[1] = I037dits[0];
2113 I038dits[2] = I018dits[2];
2114 gMC->Gsvolu("I038", "TUBE", idtmed[212], I038dits, 3);
2116 // -- block of the SDD electronics (heat bridge, chips, hybrid, anode microcable)
2118 // SDD heat bridge - F.T. March,7-2001
2119 I039dits[0] = 1.1000;
2120 I039dits[1] = 0.0087;
2121 I039dits[2] = 3.2500;
2122 gMC->Gsvolu("I039", "BOX ", idtmed[268], I039dits, 3);
2127 dits[2] = I039dits[2];
2128 gMC->Gsvolu("I040", "BOX ", idtmed[268], dits, 3);
2133 I041dits[2] = I039dits[2];
2136 gMC->Gsvolu("I041", "TUBS", idtmed[268], I041dits, 5);
2139 // SDD PASCAL - F.T. March,7-2001
2140 I042dits[0] = 0.5000;
2141 I042dits[1] = 0.0175;
2142 I042dits[2] = 0.5000;
2143 gMC->Gsvolu("I042", "BOX ", idtmed[206], I042dits, 3);
2145 // SDD AMBRA - F.T. March,7-2001
2146 I043dits[0] = 0.3500;
2147 I043dits[1] = 0.0175;
2148 I043dits[2] = 0.5000;
2149 gMC->Gsvolu("I043", "BOX ", idtmed[206], I043dits, 3);
2151 // SDD capacitors - F.T. March,7-2001
2152 I051dits[0] = 0.1400;
2153 I051dits[1] = 0.0350;
2154 I051dits[2] = 0.0625;
2155 gMC->Gsvolu("I051", "BOX ", idtmed[276], I051dits, 3);
2157 // SDD hybrid circuit - F.T. March,7-2001
2158 I052dits[0] = 1.725000;
2159 I052dits[1] = 0.003743;
2160 I052dits[2] = I039dits[2];
2161 gMC->Gsvolu("I052", "BOX ", idtmed[281], I052dits, 3);
2163 // SDD anode microcable : changed - F.T. March,7-2001
2164 I044dits[0] = I018dits[2];
2165 I044dits[1] = I039dits[2];
2166 I044dits[2] = 0.00084;
2167 I044dits[3] = (15.189149/(I044dits[0]+I044dits[1]))/2;
2168 gMC->Gsvolu("I044", "TRD1", idtmed[282], I044dits, 4);
2169 volI044 = ((2*I044dits[0] + 2*I044dits[1]) * 2*I044dits[2])/2 * 2*I044dits[3];
2171 // SDD electronics box - F.T. March,7-2001
2172 I050dits[1] = I039dits[1]+I052dits[1]+I051dits[1]+I044dits[2];
2173 I050dits[0] = I018dits[1]/cos(30.*3.14159/180.)-I050dits[1]*sin(30.*3.14159/180.);
2174 I050dits[2] = I018dits[2];
2175 gMC->Gsvolu("I050", "BOX ", idtmed[209], I050dits, 3);
2177 // SDD sensitive volume
2179 dits[1] = 0.01499; // not 0.015 because it is included into I302 which is 0.015
2181 gMC->Gsvolu("ITS3", "BOX ", idtmed[200], dits, 3);
2183 // Like for ITS3 - F.T. March,7-2001
2185 dits[1] = 0.01499; // not 0.015 because it is included into I402 which is 0.015
2187 gMC->Gsvolu("ITS4", "BOX ", idtmed[200], dits, 3);
2190 // --- Define SSD volumes ------------------------------------------
2214 gMC->Gsvolu("IT56", "PCON", idtmed[220], dits, 21);
2219 gMC->Gsvolu("I570", "BOX ", idtmed[204], dits, 3);
2224 gMC->Gsvolu("I569", "BOX ", idtmed[204], dits, 3);
2229 gMC->Gsvolu("I571", "BOX ", idtmed[204], dits, 3);
2234 gMC->Gsvolu("I565", "BOX ", idtmed[204], dits, 3);
2239 gMC->Gsvolu("I553", "BOX ", idtmed[204], dits, 3);
2244 gMC->Gsvolu("I523", "BOX ", idtmed[204], dits, 3);
2249 gMC->Gsvolu("I566", "BOX ", idtmed[206], dits, 3);
2254 gMC->Gsvolu("I544", "BOX ", idtmed[204], dits, 3);
2259 gMC->Gsvolu("I516", "BOX ", idtmed[204], dits, 3);
2264 gMC->Gsvolu("I562", "BOX ", idtmed[206], dits, 3);
2270 gMC->Gsvolu("I559", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
2275 gMC->Gsvolu("I559", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
2281 gMC->Gsvolu("I560", "TUBE", idtmed[210], dits, 3);
2287 gMC->Gsvolu("I558", "TRD1", idtmed[203], dits, 4);
2293 gMC->Gsvolu("I557", "TRD1", idtmed[203], dits, 4);
2298 gMC->Gsvolu("I556", "BOX ", idtmed[203], dits, 3);
2303 gMC->Gsvolu("I554", "BOX ", idtmed[203], dits, 3);
2308 gMC->Gsvolu("I555", "BOX ", idtmed[203], dits, 3);
2313 gMC->Gsvolu("I561", "BOX ", idtmed[203], dits, 3);
2318 gMC->Gsvolu("I519", "BOX ", idtmed[214], dits, 3);
2323 gMC->Gsvolu("I521", "BOX ", idtmed[206], dits, 3);
2328 gMC->Gsvolu("I520", "BOX ", idtmed[214], dits, 3);
2333 gMC->Gsvolu("I518", "BOX ", idtmed[203], dits, 3);
2339 gMC->Gsvolu("I522", "TRD1", idtmed[203], dits, 4);
2344 gMC->Gsvolu("I542", "TUBE", idtmed[210], dits, 3);
2350 gMC->Gsvolu("I541", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
2355 gMC->Gsvolu("I541", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
2361 gMC->Gsvolu("I543", "BOX ", idtmed[203], dits, 3);
2367 gMC->Gsvolu("I537", "TRD1", idtmed[203], dits, 4);
2373 gMC->Gsvolu("I538", "TRD1", idtmed[203], dits, 4);
2378 gMC->Gsvolu("I536", "BOX ", idtmed[203], dits, 3);
2383 gMC->Gsvolu("I535", "BOX ", idtmed[203], dits, 3);
2388 gMC->Gsvolu("I534", "BOX ", idtmed[203], dits, 3);
2393 gMC->Gsvolu("I540", "TUBE", idtmed[203], dits, 3);
2398 gMC->Gsvolu("I539", "TUBE", idtmed[203], dits, 3);
2403 gMC->Gsvolu("ITS6", "BOX ", idtmed[200], dits, 3);
2409 gMC->Gsvolu("I550", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
2414 gMC->Gsvolu("I550", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
2420 gMC->Gsvolu("I551", "TUBE", idtmed[210], dits, 3);
2426 gMC->Gsvolu("I549", "TRD1", idtmed[203], dits, 4);
2432 gMC->Gsvolu("I548", "TRD1", idtmed[203], dits, 4);
2437 gMC->Gsvolu("I547", "BOX ", idtmed[203], dits, 3);
2442 gMC->Gsvolu("I545", "BOX ", idtmed[203], dits, 3);
2447 gMC->Gsvolu("I546", "BOX ", idtmed[203], dits, 3);
2452 gMC->Gsvolu("I552", "BOX ", idtmed[203], dits, 3);
2457 gMC->Gsvolu("I515", "BOX ", idtmed[206], dits, 3);
2462 gMC->Gsvolu("I513", "BOX ", idtmed[214], dits, 3);
2467 gMC->Gsvolu("I514", "BOX ", idtmed[214], dits, 3);
2472 gMC->Gsvolu("I512", "BOX ", idtmed[203], dits, 3);
2478 gMC->Gsvolu("I528", "TRD1", idtmed[203], dits, 4);
2484 gMC->Gsvolu("I527", "TRD1", idtmed[203], dits, 4);
2489 gMC->Gsvolu("I526", "BOX ", idtmed[203], dits, 3);
2494 gMC->Gsvolu("I525", "BOX ", idtmed[203], dits, 3);
2499 gMC->Gsvolu("I524", "BOX ", idtmed[203], dits, 3);
2504 gMC->Gsvolu("I529", "TUBE", idtmed[203], dits, 3);
2509 gMC->Gsvolu("I530", "TUBE", idtmed[203], dits, 3);
2515 gMC->Gsvolu("I517", "TRD1", idtmed[203], dits, 4);
2521 gMC->Gsvolu("I531", "TUBE", idtmed[211], dits, 3); // set water as cooling fluid
2526 gMC->Gsvolu("I531", "TUBE", idtmed[212], dits, 3); // set freon as cooling fluid
2532 gMC->Gsvolu("I532", "TUBE", idtmed[210], dits, 3);
2537 gMC->Gsvolu("I533", "BOX ", idtmed[203], dits, 3);
2542 gMC->Gsvolu("ITS5", "BOX ", idtmed[200], dits, 3);
2546 // --- Define volumes of shield of SPD ----------------
2552 gMC->Gsvolu("IC01", "TUBE", idtmed[289], dits, 3);
2557 gMC->Gsvolu("IC02", "TUBE", idtmed[289], dits, 3);
2560 // --- Define volume of first cylinder between SPD and SDD --------------
2562 dits[0] = (21.-0.128)/2.;
2565 gMC->Gsvolu("ICY1", "TUBE", idtmed[208], dits, 3);
2567 // --- Define volume of second cylinder between SDD and SSD --------------
2569 dits[0] = (59.5-0.128)/2.;
2571 dits[2] = 56.2; // was 57
2572 gMC->Gsvolu("ICY2", "TUBE", idtmed[208], dits, 3);
2574 // --- Define volumes of SDD cone ----------------------------------
2615 gMC->Gsvolu("IS02", "PCON", idtmed[204], dits, 39);
2638 // gMC->Gsvolu("I093", "PCON", idtmed[272], dits, 21); // SDD cone
2639 gMC->Gsvolu("I093", "PCON", idtmed[287], dits, 21); // SDD cone
2641 // Redefined to make adding material for cables easier (FMD geometry)
2642 Double_t s1,s2,b1,b2;
2643 s1 = (dits[16]-dits[10])/(dits[15]-dits[9]); // Slope of conical section
2644 s2 = (dits[16]-dits[10])/(dits[15]-dits[9]); // Slope of conical section
2645 b1 = dits[13] - s1*dits[15]; // inside cone axis intersept
2646 b2 = dits[14] - s2*dits[15]; // outside cone axis intersept
2647 dits[0] = 0; //dits[0] = 0;
2648 dits[1] = 50; //dits[1] = 50;
2649 dits[2] = 4; //dits[2] = 3;
2651 dits[4] = 14.0; //dits[4] = 14; // r inner
2652 dits[5] = dits[4]; //dits[5] = 18.75; // r outer
2653 dits[3] = (dits[4]-b2)/s2; //dits[3] = 39; // Z
2655 dits[7] = dits[4]; //dits[7] = 14; // r inner
2656 dits[6] = (dits[7]-b1)/s1; //dits[6] = 46.7-3; // Z
2657 dits[8] = s2*dits[6]+b2; //dits[8] = 18.75; // r outer
2659 dits[11] = 18.75; //dits[11] = 18.75; // r outer
2660 dits[9] = (dits[11]-b2)/s2; //dits[9] = 51.45-3; // Z
2661 dits[10] = s1*dits[9]+b1; //dits[10] = 18.75; // r inner
2663 dits[13] = dits[11]; // r inner
2664 dits[14] = dits[11]; // r outer
2665 dits[12] = (dits[13]-b1)/s1; // Z
2666 // gMC->Gsvolu("I099", "PCON", idtmed[204], dits, 12); // SDD 3 cone hole
2667 gMC->Gsvolu("I099", "PCON", idtmed[285], dits, 15); // SDD 3 cone hole
2669 dits[0] = 0; //dits[0] = 0;
2670 dits[1] = 25; //dits[1] = 25;
2671 dits[2] = 4; //dits[2] = 3;
2673 dits[4] = 23.4; //dits[4] = 23.4; // r inner
2674 dits[5] = dits[4]; //dits[5] = 26.4; // r outer
2675 dits[3] = (dits[4]-b2)/s2; //dits[3] = 49; // Z
2677 dits[7] = dits[4]; //dits[7] = 23.4; // r inner
2678 dits[6] = (dits[7]-b1)/s1; //dits[6] = 56.1-3; // Z
2679 dits[8] = s2*dits[6]+b2; //dits[8] = 26.4; // r outer
2681 dits[11] = 26.4; //dits[11] = 26.4; // r outer
2682 dits[9] = (dits[11]-b2)/s2; //dits[9] = 59.1-3; // Z
2683 dits[10] = s1*dits[9]+b1; //dits[10] = 26.4; // r inner
2685 dits[13] = dits[11]; // r inner
2686 dits[14] = dits[11]; // r outer
2687 dits[12] = (dits[13]-b1)/s1; // Z
2688 // gMC->Gsvolu("I200", "PCON", idtmed[204], dits, 12); // SDD 4 cone hole
2689 gMC->Gsvolu("I200", "PCON", idtmed[285], dits, 15); // SDD 4 cone hole
2694 gMC->Gsvolu("I090", "TUBE", idtmed[224], dits, 3); // SDD cylinder flange
2699 gMC->Gsvolu("I098", "TUBE", idtmed[283], dits, 3); // ladder support on layer 4
2704 gMC->Gsvolu("I097", "TUBE", idtmed[283], dits, 3); // ladder support on layer 3
2709 gMC->Gsvolu("I202", "BOX ", idtmed[272], dits, 3);
2714 gMC->Gsvolu("I203", "BOX ", idtmed[272], dits, 3);
2719 gMC->Gsvolu("I095", "TUBE", idtmed[224], dits, 3);
2725 gMC->Gsvolu("I096", "TRD1", idtmed[264], dits, 4);
2730 gMC->Gsvolu("I094", "TUBE", idtmed[224], dits, 3);
2733 // --- Define volumes of SSD cone ----------------------------------
2775 gMC->Gsvolu("IS01", "PCON", idtmed[204], dits, 39); // SSD cone mother volume
2789 dits[12] = -57.25; // was 58.5
2792 dits[15] = -57.25; // was 58.5
2795 dits[18] = -55.75; // was 57
2797 dits[20] = 32.25; // was 31.5
2798 // gMC->Gsvolu("I212", "PCON", idtmed[272], dits, 21); // SSD cone
2799 gMC->Gsvolu("I212", "PCON", idtmed[288], dits, 21); // SSD cone
2801 s1 = (dits[5]-dits[14])/(dits[9]-dits[12]); // Slope of conical section
2802 s2 = (dits[10]-dits[13])/(dits[9]-dits[12]); // Slope of conical section
2803 b1 = dits[14] - s1*dits[12]; // inside cone axis intersept
2804 b2 = dits[13] - s2*dits[12]; // outside cone axis intersept
2807 dits[2] = 4; //dits[2] = 5;
2809 dits[4] = 45.50; //dits[4] = 45.5; // r inner
2810 dits[5] = dits[4]; //dits[5] = 45.5; // r outer
2811 dits[3] = (dits[4] - b2)/s2; //dits[3] = -zmax+3; // z
2813 dits[8] = dits[4]; //dits[8] = 45.5; // r outer
2814 dits[6] = (dits[8] - b1)/s1; //dits[6] = -69.7+3;; // z
2815 dits[7] = s2*dits[6] + b2; //dits[7] = 37; // r inner
2817 dits[10] = 37.00; //dits[10] = 37; // r inner
2818 dits[9] = (dits[10]-b2)/s2; //dits[9] = -68.5+3;; // z
2819 dits[11] = s1*dits[9]+b1; //dits[11] = 45.5; // r outer
2821 dits[13] = dits[10]; //dits[13] = 37; // r inner
2822 dits[14] = dits[13]; //dits[14] = 45.5; // r outer
2823 dits[12] = s2*dits[14] + b2; //dits[12] = -68.5+4.8;; // z
2824 // gMC->Gsvolu("I215", "PCON", idtmed[204], dits, 18); // SSD cone hole
2825 gMC->Gsvolu("I215", "PCON", idtmed[286], dits, 15); // SSD cone hole
2830 gMC->Gsvolu("I211", "TUBE", idtmed[224], dits, 3); // SSD cylinder flange
2835 gMC->Gsvolu("I217", "TUBE", idtmed[283], dits, 3); // ladder support on layer 5
2840 gMC->Gsvolu("I219", "TUBE", idtmed[283], dits, 3); // ladder support on layer 6
2845 gMC->Gsvolu("I214", "TUBE", idtmed[224], dits, 3); // layer 6 electronic support
2846 // this will change after PPR
2850 gMC->Gsvolu("I213", "TUBE", idtmed[224], dits, 3); // layer 5 electronic support
2851 // this will change after PPR
2883 gMC->Gsvolu("I216", "PCON", idtmed[272], dits, 30); // supports (1-6) of the ladders
2886 // --- Place SPD (option 'a') volumes into their mother volume IT12
2889 // (this is NOT the default)
2893 gMC->Gspos("I12A",5,"IT12",0.0,0.0,0.0,idrotm[238],"MANY");
2894 gMC->Gspos("I12A",6,"IT12",0.0,0.0,0.0,idrotm[236],"MANY");
2895 gMC->Gspos("I12A",7,"IT12",0.0,0.0,0.0,idrotm[239],"MANY");
2896 gMC->Gspos("I12A",8,"IT12",0.0,0.0,0.0,idrotm[233],"MANY");
2897 gMC->Gspos("I12A",9,"IT12",0.0,0.0,0.0,idrotm[240],"MANY");
2898 gMC->Gspos("I12A",10,"IT12",0.0,0.0,0.0,idrotm[241],"MANY");
2899 gMC->Gspos("I12A",2,"IT12",0.0,0.0,0.0,idrotm[242],"MANY");
2900 gMC->Gspos("I12A",3,"IT12",0.0,0.0,0.0,idrotm[234],"MANY");
2901 gMC->Gspos("I12A",4,"IT12",0.0,0.0,0.0,idrotm[243],"MANY");
2902 gMC->Gspos("I12A",1,"IT12",0.0,0.0,0.0,0,"MANY");
2903 deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.); // see definition of idrotm[244]
2904 deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.); // see definition of idrotm[244]
2905 gMC->Gspos("I10A",2,"I12A",0.203+deltax,3.8206+deltay,0.0,idrotm[244],"ONLY");
2906 deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.); // see definition of idrotm[245]
2907 deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.); // see definition of idrotm[245]
2908 gMC->Gspos("I10A",1,"I12A",1.4531+deltax,3.8152+deltay,0.0,idrotm[245],"ONLY");
2909 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.); // see definition of idrotm[246]
2910 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.); // see definition of idrotm[246]
2911 gMC->Gspos("I20A",1,"I12A",3.0174+deltax,6.5143+deltay,0.0,idrotm[246],"ONLY");
2912 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.); // see definition of idrotm[247]
2913 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.); // see definition of idrotm[247]
2914 gMC->Gspos("I20A",2,"I12A",1.9612+deltax,6.9062+deltay,0.0,idrotm[247],"ONLY");
2915 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.); // see definition of idrotm[248]
2916 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.); // see definition of idrotm[248]
2917 gMC->Gspos("I20A",3,"I12A",0.8567+deltax,7.1279+deltay,0.0,idrotm[248],"ONLY");
2918 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.); // see definition of idrotm[249]
2919 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.); // see definition of idrotm[249]
2920 gMC->Gspos("I20A",4,"I12A",-0.2689+deltax,7.1742+deltay,0.0,idrotm[249],"ONLY");
2921 gMC->Gspos("I123",2,"I12A",-0.2978,5.5196,0.0,idrotm[214],"ONLY");
2922 gMC->Gspos("I121",2,"I12A",-0.2385,4.1518,0.0,idrotm[213],"ONLY");
2923 gMC->Gspos("I122",2,"I12A",-0.2968,4.0207,0.0,idrotm[212],"ONLY");
2924 gMC->Gspos("I120",2,"I12A",-0.3672,3.9056,0.0,0,"ONLY");
2925 gMC->Gspos("I144",1,"I12A",-0.2538,3.8556,0.0,0,"ONLY");
2926 gMC->Gspos("I113",3,"I12A",0.1095,3.9056,0.0,0,"ONLY");
2927 gMC->Gspos("I143",1,"I12A",0.4365,3.8556,0.0,idrotm[236],"ONLY");
2928 gMC->Gspos("I142",1,"I12A",0.5136,3.9056,0.0,idrotm[235],"ONLY");
2929 gMC->Gspos("I141",1,"I12A",0.5636,3.9752,0.0,idrotm[201],"ONLY");
2930 gMC->Gspos("I140",1,"I12A",0.6336,4.0447,0.0,idrotm[234],"ONLY");
2931 gMC->Gspos("I139",1,"I12A",0.8297,4.0545,0.0,idrotm[207],"ONLY");
2932 gMC->Gspos("I113",5,"I12A",1.2575,3.9681,0.0,idrotm[207],"ONLY");
2933 gMC->Gspos("I138",1,"I12A",1.66,3.7848,0.0,idrotm[207],"ONLY");
2934 gMC->Gspos("I137",1,"I12A",1.8556,3.7738,0.0,idrotm[233],"ONLY");
2935 gMC->Gspos("I136",1,"I12A",2.6224,4.874,0.0,idrotm[232],"ONLY");
2936 gMC->Gspos("I135",1,"I12A",3.2967,6.0337,0.0,idrotm[231],"ONLY");
2937 gMC->Gspos("I134",1,"I12A",3.266,6.1636,0.0,idrotm[230],"ONLY");
2938 gMC->Gspos("I113",1,"I12A",2.9903,6.4144,0.0,idrotm[211],"ONLY");
2939 gMC->Gspos("I133",3,"I12A",2.7631,6.7627,0.0,idrotm[230],"ONLY");
2940 gMC->Gspos("I132",3,"I12A",2.62,6.8555,0.0,idrotm[229],"ONLY");
2941 gMC->Gspos("I131",3,"I12A",2.648,6.6023,0.0,idrotm[228],"ONLY");
2942 gMC->Gspos("I130",3,"I12A",2.6569,6.3431,0.0,idrotm[227],"ONLY");
2943 gMC->Gspos("I129",3,"I12A",2.3906,6.4819,0.0,idrotm[226],"ONLY");
2944 gMC->Gspos("I113",2,"I12A",1.9488,6.7998,0.0,idrotm[210],"ONLY");
2945 gMC->Gspos("I133",2,"I12A",1.6699,7.1085,0.0,idrotm[226],"ONLY");
2946 gMC->Gspos("I132",2,"I12A",1.5142,7.1777,0.0,idrotm[225],"ONLY");
2947 gMC->Gspos("I131",2,"I12A",1.5814,6.932,0.0,idrotm[224],"ONLY");
2948 gMC->Gspos("I130",2,"I12A",1.6308,6.6774,0.0,idrotm[223],"ONLY");
2949 gMC->Gspos("I129",2,"I12A",1.346,6.7728,0.0,idrotm[222],"ONLY");
2950 gMC->Gspos("I113",6,"I12A",0.8599,7.0176,0.0,idrotm[209],"ONLY");
2951 gMC->Gspos("I133",1,"I12A",0.5362,7.2789,0.0,idrotm[222],"ONLY");
2952 gMC->Gspos("I132",1,"I12A",0.3715,7.3228,0.0,idrotm[221],"ONLY");
2953 gMC->Gspos("I131",1,"I12A",0.4763,7.0907,0.0,idrotm[220],"ONLY");
2954 gMC->Gspos("I130",1,"I12A",0.5649,6.8469,0.0,idrotm[219],"ONLY");
2955 gMC->Gspos("I129",1,"I12A",0.2688,6.8966,0.0,idrotm[218],"ONLY");
2956 gMC->Gspos("I113",4,"I12A",-0.2497,7.0624,0.0,idrotm[208],"ONLY");
2957 gMC->Gspos("I128",1,"I12A",-0.6103,7.2698,0.0,idrotm[218],"ONLY");
2958 gMC->Gspos("I126",2,"I12A",-0.7799,7.2874,0.0,idrotm[217],"ONLY");
2959 gMC->Gspos("I125",2,"I12A",-0.6315,7.0883,0.0,idrotm[216],"ONLY");
2960 gMC->Gspos("I124",2,"I12A",-0.4965,6.8742,0.0,idrotm[215],"ONLY");
2961 gMC->Gspos("I103",3,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],-3.536,0,"ONLY");
2962 gMC->Gspos("I103",4,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],-10.708,0,"ONLY");
2963 gMC->Gspos("I103",1,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],10.708,0,"ONLY");
2964 gMC->Gspos("I103",2,"I10A",-0.05,-di10a[1]+2.*di104[1]+di103[1],3.536,0,"ONLY");
2965 gMC->Gspos("I105",1,"I10A",-0.05,0.01,-16.844,idrotm[237],"ONLY");
2966 gMC->Gspos("I105",2,"I10A",-0.05,0.01,16.844,0,"ONLY");
2967 gMC->Gspos("I104",1,"I10A",0.0,-di10a[1]+di104[1],0.0,0,"ONLY");
2968 gMC->Gspos("I1D3",3,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],-3.536,0,"ONLY");
2969 gMC->Gspos("I1D3",4,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],-10.708,0,"ONLY");
2970 gMC->Gspos("I1D3",1,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],10.708,0,"ONLY");
2971 gMC->Gspos("I1D3",2,"I20A",-0.05,-di20a[1]+2.*di104[1]+di1d3[1],3.536,0,"ONLY");
2972 gMC->Gspos("I105",3,"I20A",-0.05,0.01,-16.844,idrotm[237],"ONLY");
2973 gMC->Gspos("I105",4,"I20A",-0.05,0.01,16.844,0,"ONLY");
2974 gMC->Gspos("I104",2,"I20A",0.0,-di20a[1]+di104[1],0.0,0,"ONLY");
2975 gMC->Gspos("I112",2,"I113",0.25,0.02,0.0,idrotm[206],"ONLY");
2976 gMC->Gspos("I111",2,"I113",0.1318,-0.0008,0.0,idrotm[205],"ONLY");
2977 gMC->Gspos("I118",1,"I113",0.0,-0.0454,0.0,0,"ONLY");
2978 gMC->Gspos("I110",1,"I113",0.0,0.0492,0.0,0,"ONLY");
2979 gMC->Gspos("I114",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
2980 gMC->Gspos("I115",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
2981 gMC->Gspos("I115",2,"I113",-0.063,0.0042,0.0,idrotm[201],"ONLY");
2982 gMC->Gspos("I114",2,"I113",-0.063,0.0042,0.0,idrotm[201],"ONLY");
2983 gMC->Gspos("I116",1,"I113",0.0,0.0042,0.0,0,"ONLY");
2984 gMC->Gspos("I111",1,"I113",-0.1318,-0.0008,0.0,idrotm[204],"ONLY");
2985 gMC->Gspos("I112",1,"I113",-0.25,0.02,0.0,idrotm[203],"ONLY");
2986 gMC->Gspos("I101",1,"I103",-0.088,ddet1,0.0,0,"ONLY");
2987 gMC->Gspos("I102",1,"I103",0.0,-dchip1,-2.8,0,"ONLY");
2988 gMC->Gspos("I102",2,"I103",0.0,-dchip1,-1.4,0,"ONLY");
2989 gMC->Gspos("I102",3,"I103",0.0,-dchip1,0.0,0,"ONLY");
2990 gMC->Gspos("I102",4,"I103",0.0,-dchip1,1.4,0,"ONLY");
2991 gMC->Gspos("I102",5,"I103",0.0,-dchip1,2.8,0,"ONLY");
2992 gMC->Gspos("I1D1",1,"I1D3",-0.088,ddet2,0.0,0,"ONLY");
2993 gMC->Gspos("I1D2",1,"I1D3",0.0,-dchip2,-2.8,0,"ONLY");
2994 gMC->Gspos("I1D2",2,"I1D3",0.0,-dchip2,-1.4,0,"ONLY");
2995 gMC->Gspos("I1D2",3,"I1D3",0.0,-dchip2,0.0,0,"ONLY");
2996 gMC->Gspos("I1D2",4,"I1D3",0.0,-dchip2,1.4,0,"ONLY");
2997 gMC->Gspos("I1D2",5,"I1D3",0.0,-dchip2,2.8,0,"ONLY");
2998 gMC->Gspos("I117",1,"I116",0.0,0.0,0.0,0,"ONLY");
2999 gMC->Gspos("ITS1",1,"I101",0.0,0.0,0.0,0,"ONLY");
3000 gMC->Gspos("ITS2",1,"I1D1",0.0,0.0,0.0,0,"ONLY");
3001 gMC->Gspos("I651",1,"IT12",0.0,0.0,26.05,0,"ONLY");
3002 gMC->Gspos("I651",2,"IT12",0.0,0.0,-26.05,0,"ONLY");
3003 gMC->Gspos("I650",16,"IT12",0.0,0.0,22.0,idrotm[1104],"MANY");
3004 gMC->Gspos("I650",20,"IT12",0.0,0.0,22.0,idrotm[1130],"MANY");
3005 gMC->Gspos("I650",18,"IT12",0.0,0.0,22.0,idrotm[1117],"MANY");
3006 gMC->Gspos("I650",1,"IT12",0.0,0.0,22.0,0,"MANY");
3007 gMC->Gspos("I650",4,"IT12",0.0,0.0,22.0,idrotm[1106],"MANY");
3008 gMC->Gspos("I650",6,"IT12",0.0,0.0,22.0,idrotm[1039],"MANY");
3009 gMC->Gspos("I650",8,"IT12",0.0,0.0,22.0,idrotm[1107],"MANY");
3010 gMC->Gspos("I650",10,"IT12",0.0,0.0,22.0,idrotm[1065],"MANY");
3011 gMC->Gspos("I650",12,"IT12",0.0,0.0,22.0,idrotm[1078],"MANY");
3012 gMC->Gspos("I650",14,"IT12",0.0,0.0,22.0,idrotm[1091],"MANY");
3013 gMC->Gspos("I650",19,"IT12",0.0,0.0,-22.0,idrotm[1108],"MANY");
3014 gMC->Gspos("I650",2,"IT12",0.0,0.0,-22.0,idrotm[1109],"MANY");
3015 gMC->Gspos("I650",3,"IT12",0.0,0.0,-22.0,idrotm[1110],"MANY");
3016 gMC->Gspos("I650",5,"IT12",0.0,0.0,-22.0,idrotm[1111],"MANY");
3017 gMC->Gspos("I650",7,"IT12",0.0,0.0,-22.0,idrotm[1112],"MANY");
3018 gMC->Gspos("I650",9,"IT12",0.0,0.0,-22.0,idrotm[1113],"MANY");
3019 gMC->Gspos("I650",11,"IT12",0.0,0.0,-22.0,idrotm[1114],"MANY");
3020 gMC->Gspos("I650",13,"IT12",0.0,0.0,-22.0,idrotm[1115],"MANY");
3021 gMC->Gspos("I650",15,"IT12",0.0,0.0,-22.0,idrotm[1116],"MANY");
3022 gMC->Gspos("I650",17,"IT12",0.0,0.0,-22.0,idrotm[1118],"MANY");
3023 gMC->Gspos("I666",1,"I650",0.0,0.0,0.25,idrotm[1003],"MANY");
3024 gMC->Gspos("I667",1,"I650",0.1102,0.9945,0.45,idrotm[1088],"ONLY");
3025 gMC->Gspos("I669",3,"I650",0.1883,4.0372,-3.2,0,"ONLY");
3026 gMC->Gspos("I671",3,"I650",0.1883,4.0372,0.6,0,"ONLY");
3027 gMC->Gspos("I669",2,"I650",1.3343,4.0609,-3.2,0,"ONLY");
3028 gMC->Gspos("I671",2,"I650",1.3343,4.0609,0.6,0,"ONLY");
3029 gMC->Gspos("I669",6,"I650",2.9567,6.1959,-3.2,idrotm[1089],"ONLY");
3030 gMC->Gspos("I671",6,"I650",2.9567,6.1959,0.6,idrotm[1089],"ONLY");
3031 gMC->Gspos("I669",5,"I650",1.9511,6.5822,-3.2,idrotm[1011],"ONLY");
3032 gMC->Gspos("I671",5,"I650",1.9511,6.5822,0.6,idrotm[1011],"ONLY");
3033 gMC->Gspos("I669",4,"I650",0.8974,6.8064,-3.2,idrotm[1090],"ONLY");
3034 gMC->Gspos("I671",4,"I650",0.8974,6.8064,0.6,idrotm[1090],"ONLY");
3035 gMC->Gspos("I669",1,"I650",-0.1784,6.863,-3.2,0,"ONLY");
3036 gMC->Gspos("I671",1,"I650",-0.1784,6.863,0.6,0,"ONLY");
3037 gMC->Gspos("I673",1,"I650",0.2173,4.8037,1.8,0,"ONLY");
3038 gMC->Gspos("I673",6,"I650",1.5093,4.5605,1.8,0,"ONLY");
3039 gMC->Gspos("I673",4,"I650",-0.173,6.2531,1.8,idrotm[1092],"ONLY");
3040 gMC->Gspos("I673",3,"I650",0.8073,6.2032,1.8,idrotm[1093],"ONLY");
3041 gMC->Gspos("I673",2,"I650",1.7678,6.0005,1.8,idrotm[1094],"ONLY");
3042 gMC->Gspos("I673",5,"I650",2.6847,5.6501,1.8,0,"ONLY");
3043 gMC->Gspos("I676",2,"I650",1.7618,5.2269,2.5,0,"ONLY");
3044 gMC->Gspos("I676",1,"I650",0.4018,5.5869,2.5,0,"ONLY");
3045 gMC->Gspos("I668",1,"I667",0.0,0.0,0.0,0,"ONLY");
3046 gMC->Gspos("I670",1,"I669",0.0,0.0,0.0,0,"ONLY");
3047 gMC->Gspos("I672",1,"I671",0.0,0.0,0.0,0,"ONLY");
3048 gMC->Gspos("I674",1,"I673",0.0,0.0,0.0,0,"MANY");
3049 gMC->Gspos("I675",1,"I673",0.0,0.0,-0.5,0,"ONLY");
3050 gMC->Gspos("I677",1,"I676",0.0,0.0,0.0,0,"MANY");
3051 gMC->Gspos("I678",1,"I676",0.0,0.0,-0.95,0,"ONLY");
3056 // --- Place SPD (option 'b') volumes into their mother volume IT12
3059 // (this is the default)
3063 gMC->Gspos("I12B",1,"IT12",0.0,0.0,0.0,0,"MANY");
3064 gMC->Gspos("I12B",8,"IT12",0.0,0.0,0.0,idrotm[233],"MANY");
3065 gMC->Gspos("I12B",7,"IT12",0.0,0.0,0.0,idrotm[244],"MANY");
3066 gMC->Gspos("I12B",6,"IT12",0.0,0.0,0.0,idrotm[236],"MANY");
3067 gMC->Gspos("I12B",2,"IT12",0.0,0.0,0.0,idrotm[245],"MANY");
3068 gMC->Gspos("I12B",3,"IT12",0.0,0.0,0.0,idrotm[234],"MANY");
3069 gMC->Gspos("I12B",4,"IT12",0.0,0.0,0.0,idrotm[246],"MANY");
3070 gMC->Gspos("I12B",5,"IT12",0.0,0.0,0.0,idrotm[247],"MANY");
3071 gMC->Gspos("I12B",9,"IT12",0.0,0.0,0.0,idrotm[248],"MANY");
3072 gMC->Gspos("I12B",10,"IT12",0.0,0.0,0.0,idrotm[249],"MANY");
3073 deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.); // see definition of idrotm[238]
3074 deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.); // see definition of idrotm[238]
3075 gMC->Gspos("I10B",2,"I12B",0.203+deltax,3.8206+deltay,0.0,idrotm[238],"ONLY");
3076 deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.); // see definition of idrotm[239]
3077 deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.); // see definition of idrotm[239]
3078 gMC->Gspos("I10B",1,"I12B",1.4531+deltax,3.8152+deltay,0.0,idrotm[239],"ONLY");
3079 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.); // see definition of idrotm[240]
3080 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.); // see definition of idrotm[240]
3081 gMC->Gspos("I20B",1,"I12B",3.0174+deltax,6.5143+deltay,0.0,idrotm[240],"ONLY");
3082 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.); // see definition of idrotm[241]
3083 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.); // see definition of idrotm[241]
3084 gMC->Gspos("I20B",2,"I12B",1.9612+deltax,6.9062+deltay,0.0,idrotm[241],"ONLY");
3085 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.); // see definition of idrotm[242]
3086 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.); // see definition of idrotm[242]
3087 gMC->Gspos("I20B",3,"I12B",0.8567+deltax,7.1279+deltay,0.0,idrotm[242],"ONLY");
3088 deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.); // see definition of idrotm[243]
3089 deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.); // see definition of idrotm[243]
3090 gMC->Gspos("I20B",4,"I12B",-0.2689+deltax,7.1742+deltay,0.0,idrotm[243],"ONLY");
3091 gMC->Gspos("I123",1,"I12B",-0.2978,5.5196,0.0,idrotm[214],"ONLY");
3092 gMC->Gspos("I121",1,"I12B",-0.2385,4.1518,0.0,idrotm[213],"ONLY");
3093 gMC->Gspos("I122",1,"I12B",-0.2968,4.0207,0.0,idrotm[212],"ONLY");
3094 gMC->Gspos("I120",1,"I12B",-0.3672,3.9056,0.0,0,"ONLY");
3095 gMC->Gspos("I144",1,"I12B",-0.2538,3.8556,0.0,0,"ONLY");
3096 gMC->Gspos("I113",3,"I12B",0.1095,3.9056,0.0,0,"ONLY");
3097 gMC->Gspos("I143",1,"I12B",0.4365,3.8556,0.0,idrotm[236],"ONLY");
3098 gMC->Gspos("I142",1,"I12B",0.5136,3.9056,0.0,idrotm[235],"ONLY");
3099 gMC->Gspos("I141",1,"I12B",0.5636,3.9752,0.0,idrotm[237],"ONLY");
3100 gMC->Gspos("I140",1,"I12B",0.6336,4.0447,0.0,idrotm[234],"ONLY");
3101 gMC->Gspos("I139",1,"I12B",0.8297,4.0545,0.0,idrotm[207],"ONLY");
3102 gMC->Gspos("I113",5,"I12B",1.2575,3.9681,0.0,idrotm[207],"ONLY");
3103 gMC->Gspos("I138",1,"I12B",1.66,3.7848,0.0,idrotm[207],"ONLY");
3104 gMC->Gspos("I137",1,"I12B",1.8556,3.7738,0.0,idrotm[233],"ONLY");
3105 gMC->Gspos("I136",1,"I12B",2.6224,4.874,0.0,idrotm[232],"ONLY");
3106 gMC->Gspos("I135",1,"I12B",3.2967,6.0337,0.0,idrotm[231],"ONLY");
3107 gMC->Gspos("I134",1,"I12B",3.266,6.1636,0.0,idrotm[230],"ONLY");
3108 gMC->Gspos("I113",1,"I12B",2.9903,6.4144,0.0,idrotm[211],"ONLY");
3109 gMC->Gspos("I133",3,"I12B",2.7631,6.7627,0.0,idrotm[230],"ONLY");
3110 gMC->Gspos("I132",3,"I12B",2.62,6.8555,0.0,idrotm[229],"ONLY");
3111 gMC->Gspos("I131",3,"I12B",2.648,6.6023,0.0,idrotm[228],"ONLY");
3112 gMC->Gspos("I130",3,"I12B",2.6569,6.3431,0.0,idrotm[227],"ONLY");
3113 gMC->Gspos("I129",3,"I12B",2.3906,6.4819,0.0,idrotm[226],"ONLY");
3114 gMC->Gspos("I113",2,"I12B",1.9488,6.7998,0.0,idrotm[210],"ONLY");
3115 gMC->Gspos("I133",2,"I12B",1.6699,7.1085,0.0,idrotm[226],"ONLY");
3116 gMC->Gspos("I132",2,"I12B",1.5142,7.1777,0.0,idrotm[225],"ONLY");
3117 gMC->Gspos("I131",2,"I12B",1.5814,6.932,0.0,idrotm[224],"ONLY");
3118 gMC->Gspos("I130",2,"I12B",1.6308,6.6774,0.0,idrotm[223],"ONLY");
3119 gMC->Gspos("I129",2,"I12B",1.346,6.7728,0.0,idrotm[222],"ONLY");
3120 gMC->Gspos("I113",6,"I12B",0.8599,7.0176,0.0,idrotm[209],"ONLY");
3121 gMC->Gspos("I133",1,"I12B",0.5362,7.2789,0.0,idrotm[222],"ONLY");
3122 gMC->Gspos("I132",1,"I12B",0.3715,7.3228,0.0,idrotm[221],"ONLY");
3123 gMC->Gspos("I131",1,"I12B",0.4763,7.0907,0.0,idrotm[220],"ONLY");
3124 gMC->Gspos("I130",1,"I12B",0.5649,6.8469,0.0,idrotm[219],"ONLY");
3125 gMC->Gspos("I129",1,"I12B",0.2688,6.8966,0.0,idrotm[218],"ONLY");
3126 gMC->Gspos("I113",4,"I12B",-0.2497,7.0624,0.0,idrotm[208],"ONLY");
3127 gMC->Gspos("I128",1,"I12B",-0.6103,7.2698,0.0,idrotm[218],"ONLY");
3128 gMC->Gspos("I126",1,"I12B",-0.7799,7.2874,0.0,idrotm[217],"ONLY");
3129 gMC->Gspos("I125",1,"I12B",-0.6315,7.0883,0.0,idrotm[216],"ONLY");
3130 gMC->Gspos("I124",1,"I12B",-0.4965,6.8742,0.0,idrotm[215],"ONLY");
3131 gMC->Gspos("I105",3,"I10B",-0.05,-0.01,-16.844,idrotm[201],"ONLY");
3132 gMC->Gspos("I105",4,"I10B",-0.05,-0.01,16.844,0,"ONLY");
3133 gMC->Gspos("I107",2,"I10B",-0.0455,-di10b[1]+di107[1],3.536,0,"ONLY");
3134 gMC->Gspos("I107",1,"I10B",-0.0455,-di10b[1]+di107[1],10.708,0,"ONLY");
3135 gMC->Gspos("I107",4,"I10B",-0.0455,-di10b[1]+di107[1],-10.708,0,"ONLY");
3136 gMC->Gspos("I107",3,"I10B",-0.0455,-di10b[1]+di107[1],-3.536,0,"ONLY");
3137 gMC->Gspos("I109",1,"I10B",-0.138,0.015,-16.844,idrotm[201],"ONLY");
3138 gMC->Gspos("I109",2,"I10B",-0.138,0.015,16.844,0,"ONLY");
3139 gMC->Gspos("I108",1,"I10B",-0.138,-di10b[1]+2.*di107[1]+di108[1],0.0,0,"ONLY");
3140 gMC->Gspos("I105",1,"I20B",-0.05,-0.01,-16.844,idrotm[201],"ONLY");
3141 gMC->Gspos("I105",2,"I20B",-0.05,-0.01,16.844,0,"ONLY");
3142 gMC->Gspos("I1D7",2,"I20B",-0.0455,-di20b[1]+di1d7[1],3.536,0,"ONLY");
3143 gMC->Gspos("I1D7",1,"I20B",-0.0455,-di20b[1]+di1d7[1],10.708,0,"ONLY");
3144 gMC->Gspos("I1D7",4,"I20B",-0.0455,-di20b[1]+di1d7[1],-10.708,0,"ONLY");
3145 gMC->Gspos("I1D7",3,"I20B",-0.0455,-di20b[1]+di1d7[1],-3.536,0,"ONLY");
3146 gMC->Gspos("I109",3,"I20B",-0.138,0.015,-16.844,idrotm[201],"ONLY");
3147 gMC->Gspos("I109",4,"I20B",-0.138,0.015,16.844,0,"ONLY");
3148 gMC->Gspos("I108",2,"I20B",-0.138,-di20b[1]+2.*di1d7[1]+di108[1],0.0,0,"ONLY");
3149 gMC->Gspos("I112",2,"I113",0.25,0.02,0.0,idrotm[206],"ONLY");
3150 gMC->Gspos("I111",2,"I113",0.1318,-0.0008,0.0,idrotm[205],"ONLY");
3151 gMC->Gspos("I118",1,"I113",0.0,-0.0454,0.0,0,"ONLY");
3152 gMC->Gspos("I110",1,"I113",0.0,0.0492,0.0,0,"ONLY");
3153 gMC->Gspos("I114",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3154 gMC->Gspos("I115",1,"I113",0.063,0.0042,0.0,idrotm[202],"ONLY");
3155 gMC->Gspos("I115",2,"I113",-0.063,0.0042,0.0,idrotm[237],"ONLY");
3156 gMC->Gspos("I114",2,"I113",-0.063,0.0042,0.0,idrotm[237],"ONLY");
3157 gMC->Gspos("I116",1,"I113",0.0,0.0042,0.0,0,"ONLY");
3158 gMC->Gspos("I111",1,"I113",-0.1318,-0.0008,0.0,idrotm[204],"ONLY");
3159 gMC->Gspos("I112",1,"I113",-0.25,0.02,0.0,idrotm[203],"ONLY");
3160 gMC->Gspos("I106",1,"I107",0.0,-dchip1,-1.4,0,"ONLY");
3161 gMC->Gspos("I106",2,"I107",0.0,-dchip1,0.0,0,"ONLY");
3162 gMC->Gspos("I106",3,"I107",0.0,-dchip1,1.4,0,"ONLY");
3163 gMC->Gspos("I106",4,"I107",0.0,-dchip1,2.8,0,"ONLY");
3164 gMC->Gspos("I106",5,"I107",0.0,-dchip1,-2.8,0,"ONLY");
3165 gMC->Gspos("I101",1,"I107",0.0,ddet1,0.0,0,"ONLY");
3166 gMC->Gspos("I1D6",1,"I1D7",0.0,-dchip2,-1.4,0,"ONLY");
3167 gMC->Gspos("I1D6",2,"I1D7",0.0,-dchip2,0.0,0,"ONLY");
3168 gMC->Gspos("I1D6",3,"I1D7",0.0,-dchip2,1.4,0,"ONLY");
3169 gMC->Gspos("I1D6",4,"I1D7",0.0,-dchip2,2.8,0,"ONLY");
3170 gMC->Gspos("I1D6",5,"I1D7",0.0,-dchip2,-2.8,0,"ONLY");
3171 gMC->Gspos("I1D1",1,"I1D7",0.0,ddet2,0.0,0,"ONLY");
3172 gMC->Gspos("I117",1,"I116",0.0,0.0,0.0,0,"ONLY");
3173 gMC->Gspos("ITS1",1,"I101",0.0,0.0,0.0,0,"ONLY");
3174 gMC->Gspos("ITS2",1,"I1D1",0.0,0.0,0.0,0,"ONLY");
3175 gMC->Gspos("I651",1,"IT12",0.0,0.0,26.05,0,"ONLY");
3176 gMC->Gspos("I651",2,"IT12",0.0,0.0,-26.05,0,"ONLY");
3177 gMC->Gspos("I650",16,"IT12",0.0,0.0,22.0,idrotm[1104],"MANY");
3178 gMC->Gspos("I650",20,"IT12",0.0,0.0,22.0,idrotm[1130],"MANY");
3179 gMC->Gspos("I650",18,"IT12",0.0,0.0,22.0,idrotm[1117],"MANY");
3180 gMC->Gspos("I650",1,"IT12",0.0,0.0,22.0,0,"MANY");
3181 gMC->Gspos("I650",4,"IT12",0.0,0.0,22.0,idrotm[1106],"MANY");
3182 gMC->Gspos("I650",6,"IT12",0.0,0.0,22.0,idrotm[1039],"MANY");
3183 gMC->Gspos("I650",8,"IT12",0.0,0.0,22.0,idrotm[1107],"MANY");
3184 gMC->Gspos("I650",10,"IT12",0.0,0.0,22.0,idrotm[1065],"MANY");
3185 gMC->Gspos("I650",12,"IT12",0.0,0.0,22.0,idrotm[1078],"MANY");
3186 gMC->Gspos("I650",14,"IT12",0.0,0.0,22.0,idrotm[1091],"MANY");
3187 gMC->Gspos("I650",19,"IT12",0.0,0.0,-22.0,idrotm[1108],"MANY");
3188 gMC->Gspos("I650",2,"IT12",0.0,0.0,-22.0,idrotm[1109],"MANY");
3189 gMC->Gspos("I650",3,"IT12",0.0,0.0,-22.0,idrotm[1110],"MANY");
3190 gMC->Gspos("I650",5,"IT12",0.0,0.0,-22.0,idrotm[1111],"MANY");
3191 gMC->Gspos("I650",7,"IT12",0.0,0.0,-22.0,idrotm[1112],"MANY");
3192 gMC->Gspos("I650",9,"IT12",0.0,0.0,-22.0,idrotm[1113],"MANY");
3193 gMC->Gspos("I650",11,"IT12",0.0,0.0,-22.0,idrotm[1114],"MANY");
3194 gMC->Gspos("I650",13,"IT12",0.0,0.0,-22.0,idrotm[1115],"MANY");
3195 gMC->Gspos("I650",15,"IT12",0.0,0.0,-22.0,idrotm[1116],"MANY");
3196 gMC->Gspos("I650",17,"IT12",0.0,0.0,-22.0,idrotm[1118],"MANY");
3197 gMC->Gspos("I666",1,"I650",0.0,0.0,0.25,idrotm[1003],"MANY");
3198 gMC->Gspos("I667",1,"I650",0.1102,0.9945,0.45,idrotm[1088],"ONLY");
3199 gMC->Gspos("I669",3,"I650",0.1883,4.0372,-3.2,0,"ONLY");
3200 gMC->Gspos("I671",3,"I650",0.1883,4.0372,0.6,0,"ONLY");
3201 gMC->Gspos("I669",2,"I650",1.3343,4.0609,-3.2,0,"ONLY");
3202 gMC->Gspos("I671",2,"I650",1.3343,4.0609,0.6,0,"ONLY");
3203 gMC->Gspos("I669",6,"I650",2.9567,6.1959,-3.2,idrotm[1089],"ONLY");
3204 gMC->Gspos("I671",6,"I650",2.9567,6.1959,0.6,idrotm[1089],"ONLY");
3205 gMC->Gspos("I669",5,"I650",1.9511,6.5822,-3.2,idrotm[1011],"ONLY");
3206 gMC->Gspos("I671",5,"I650",1.9511,6.5822,0.6,idrotm[1011],"ONLY");
3207 gMC->Gspos("I669",4,"I650",0.8974,6.8064,-3.2,idrotm[1090],"ONLY");
3208 gMC->Gspos("I671",4,"I650",0.8974,6.8064,0.6,idrotm[1090],"ONLY");
3209 gMC->Gspos("I669",1,"I650",-0.1784,6.863,-3.2,0,"ONLY");
3210 gMC->Gspos("I671",1,"I650",-0.1784,6.863,0.6,0,"ONLY");
3211 gMC->Gspos("I673",1,"I650",0.2173,4.8037,1.8,0,"ONLY");
3212 gMC->Gspos("I673",6,"I650",1.5093,4.5605,1.8,0,"ONLY");
3213 gMC->Gspos("I673",4,"I650",-0.173,6.2531,1.8,idrotm[1092],"ONLY");
3214 gMC->Gspos("I673",3,"I650",0.8073,6.2032,1.8,idrotm[1093],"ONLY");
3215 gMC->Gspos("I673",2,"I650",1.7678,6.0005,1.8,idrotm[1094],"ONLY");
3216 gMC->Gspos("I673",5,"I650",2.6847,5.6501,1.8,0,"ONLY");
3217 gMC->Gspos("I676",2,"I650",1.7618,5.2269,2.5,0,"ONLY");
3218 gMC->Gspos("I676",1,"I650",0.4018,5.5869,2.5,0,"ONLY");
3219 gMC->Gspos("I668",1,"I667",0.0,0.0,0.0,0,"ONLY");
3220 gMC->Gspos("I670",1,"I669",0.0,0.0,0.0,0,"ONLY");
3221 gMC->Gspos("I672",1,"I671",0.0,0.0,0.0,0,"ONLY");
3222 gMC->Gspos("I674",1,"I673",0.0,0.0,0.0,0,"MANY");
3223 gMC->Gspos("I675",1,"I673",0.0,0.0,-0.5,0,"ONLY");
3224 gMC->Gspos("I677",1,"I676",0.0,0.0,0.0,0,"MANY");
3225 gMC->Gspos("I678",1,"I676",0.0,0.0,-0.95,0,"ONLY");
3229 // --- Place SDD volumes into their mother volume IT34
3232 // -- position SDD detectors of ladder 3 / layer 3
3234 gMC->Gspos("ITS3", 1,"I302", 0.0, 0.0, 0.0, 0, "ONLY");
3235 ySDD = Y_SDD_sep/2.+I302dits[1];
3236 for (iSDD=0; iSDD<6; iSDD++) {
3237 gMC->Gspos("I302", iSDD+1, "I004", 0.0, ySDD, Z_SDD_lay3[iSDD], 0, "ONLY");
3241 gMC->Gspos("I004", 1,"IT34", -3.2777, 14.3607, 0.0, idrotm[321],"ONLY");
3242 gMC->Gspos("I004", 2,"IT34", -9.5581, 11.9855, 0.0, idrotm[333],"ONLY");
3243 gMC->Gspos("I004", 3,"IT34",-13.2713, 6.3911, 0.0, idrotm[336],"ONLY");
3244 gMC->Gspos("I004", 4,"IT34",-15.33, 0.0, 0.0, idrotm[350],"ONLY");
3245 gMC->Gspos("I004", 5,"IT34",-13.2713, -6.3911, 0.0, idrotm[313],"ONLY");
3246 gMC->Gspos("I004", 6,"IT34", -9.5581, -11.9855, 0.0, idrotm[311],"ONLY");
3247 gMC->Gspos("I004", 7,"IT34", -3.2777, -14.3607, 0.0, idrotm[310],"ONLY");
3248 gMC->Gspos("I004", 8,"IT34", 3.4112, -14.9456, 0.0, idrotm[386],"ONLY");
3249 gMC->Gspos("I004", 9,"IT34", 9.184, -11.5164, 0.0, idrotm[309],"ONLY");
3250 gMC->Gspos("I004",10,"IT34", 13.8119, -6.6514, 0.0, idrotm[308],"ONLY");
3251 gMC->Gspos("I004",11,"IT34", 14.73, 0.0, 0.0, idrotm[356],"ONLY");
3252 gMC->Gspos("I004",12,"IT34", 13.8119, 6.6514, 0.0, idrotm[307],"ONLY");
3253 gMC->Gspos("I004",13,"IT34", 9.184, 11.5164, 0.0, idrotm[306],"ONLY");
3254 gMC->Gspos("I004",14,"IT34", 3.4113, 14.9456, 0.0, idrotm[305],"ONLY");
3257 // -- position SDD detectors of ladder 4 / layer 4
3259 gMC->Gspos("ITS4", 1,"I402", 0.0, 0.000, 0.0, 0,"ONLY");
3260 ySDD = -(Y_SDD_sep/2.+I402dits[1]);
3261 for (iSDD=0; iSDD<8; iSDD++) {
3262 gMC->Gspos("I402", iSDD+1, "I005", 0.0, ySDD, Z_SDD_lay4[iSDD], 0, "ONLY");
3266 gMC->Gspos("I005", 1,"IT34", -3.3629, 23.3895,-0.15, idrotm[335],"ONLY");
3267 gMC->Gspos("I005", 2,"IT34",-10.0447, 21.9949,-0.15, idrotm[332],"ONLY");
3268 gMC->Gspos("I005", 3,"IT34",-15.4744, 17.8584,-0.15, idrotm[331],"ONLY");
3269 gMC->Gspos("I005", 4,"IT34",-20.3415, 13.0727,-0.15, idrotm[366],"ONLY");
3270 gMC->Gspos("I005", 5,"IT34",-22.6728, 6.6573,-0.15, idrotm[330],"ONLY");
3271 gMC->Gspos("I005", 6,"IT34",-24.18, 0.0, -0.15, idrotm[350],"ONLY");
3272 gMC->Gspos("I005", 7,"IT34",-22.6728, -6.6573,-0.15, idrotm[329],"ONLY");
3273 gMC->Gspos("I005", 8,"IT34",-20.3415, -13.0727,-0.15, idrotm[328],"ONLY");
3274 gMC->Gspos("I005", 9,"IT34",-15.4744, -17.8584,-0.15, idrotm[327],"ONLY");
3275 gMC->Gspos("I005",10,"IT34",-10.0447, -21.9949,-0.15, idrotm[326],"ONLY");
3276 gMC->Gspos("I005",11,"IT34", -3.3629, -23.3895,-0.15, idrotm[325],"ONLY");
3277 gMC->Gspos("I005",12,"IT34", 3.4412, -23.9339,-0.15, idrotm[324],"ONLY");
3278 gMC->Gspos("I005",13,"IT34", 9.8163, -21.4946,-0.15, idrotm[323],"ONLY");
3279 gMC->Gspos("I005",14,"IT34", 15.8345, -18.274, -0.15, idrotm[322],"ONLY");
3280 gMC->Gspos("I005",15,"IT34", 19.8788, -12.7753,-0.15, idrotm[320],"ONLY");
3281 gMC->Gspos("I005",16,"IT34", 23.2005, -6.8123,-0.15, idrotm[319],"ONLY");
3282 gMC->Gspos("I005",17,"IT34", 23.63, 0.0, -0.15, idrotm[318],"ONLY");
3283 gMC->Gspos("I005",18,"IT34", 23.2005, 6.8123,-0.15, idrotm[317],"ONLY");
3284 gMC->Gspos("I005",19,"IT34", 19.8788, 12.7753,-0.15, idrotm[316],"ONLY");
3285 gMC->Gspos("I005",20,"IT34", 15.8345, 18.274, -0.15, idrotm[315],"ONLY");
3286 gMC->Gspos("I005",21,"IT34", 9.8163, 21.4946,-0.15, idrotm[314],"ONLY");
3287 gMC->Gspos("I005",22,"IT34", 3.4412, 23.9339,-0.15, idrotm[334],"ONLY");
3290 // -- build block of the SDD ladder frame holding the electronics
3292 gMC->Gspos("I019", 1,"I018", -1.9, -1.735, 0.0, idrotm[344], "ONLY");
3293 gMC->Gspos("I019", 2,"I018", 1.987, -1.5843, 0.0, idrotm[343], "ONLY");
3294 gMC->Gspos("I019", 3,"I018", -0.087, 1.7066, 0.0, idrotm[342], "ONLY");
3296 gMC->Gspos("I020", 1,"I018", -1.9782, -1.569, 0.0, idrotm[342], "ONLY");
3297 gMC->Gspos("I020", 2,"I018", 1.8824, -1.735, 0.0, idrotm[344], "ONLY");
3298 gMC->Gspos("I020", 3,"I018", 0.0958, 1.6913, 0.0, idrotm[343], "ONLY");
3300 gMC->Gspos("I021", 1,"I018", 1.0761, 0.0835, 2.6008, idrotm[340], "ONLY");
3301 gMC->Gspos("I021", 2,"I018", -1.0761, 0.0835,-2.8008, idrotm[339], "ONLY");
3302 gMC->Gspos("I021", 3,"I018", -1.0761, 0.0835,-1.0492, idrotm[338], "ONLY");
3303 gMC->Gspos("I021", 4,"I018", 1.0761, 0.0835,-2.8008, idrotm[337], "ONLY");
3304 gMC->Gspos("I021", 5,"I018", 1.0761, 0.0835,-1.0492, idrotm[340], "ONLY");
3305 gMC->Gspos("I021", 6,"I018", -1.0761, 0.0835, 0.8492, idrotm[339], "ONLY");
3306 gMC->Gspos("I021", 7,"I018", -1.0761, 0.0835, 2.6008, idrotm[338], "ONLY");
3307 gMC->Gspos("I021", 8,"I018", 1.0761, 0.0835, 0.8492, idrotm[337], "ONLY");
3309 gMC->Gspos("I022", 1,"I018", 0.0, -1.79, 3.55, idrotm[312], "ONLY");
3310 gMC->Gspos("I022", 2,"I018", 0.0, -1.79, -0.1, idrotm[312], "ONLY");
3312 gMC->Gspos("I023", 1,"I018", 0.0, -1.79, 1.725, idrotm[341], "ONLY");
3313 gMC->Gspos("I023", 2,"I018", 0.0, -1.79, -1.925, idrotm[341], "ONLY");
3315 gMC->Gspos("I033", 1,"I018", 1.8, -1.75, 1.35, 0, "MANY");
3316 gMC->Gspos("I033", 2,"I018", -1.8, -1.75, -2.65, idrotm[345], "MANY");
3317 gMC->Gspos("I033", 3,"I018", -1.8, -1.75, 1.35, idrotm[345], "MANY");
3318 gMC->Gspos("I033", 4,"I018", 1.8, -1.75, -2.65, 0, "MANY");
3320 gMC->Gspos("I034", 1,"I018", 1.6, -1.775, 1.35, idrotm[312], "ONLY");
3321 gMC->Gspos("I034", 2,"I018", -1.6, -1.775, -2.65, idrotm[348], "ONLY");
3322 gMC->Gspos("I034", 3,"I018", -1.6, -1.775, 1.35, idrotm[348], "ONLY");
3323 gMC->Gspos("I034", 4,"I018", 1.6, -1.775, -2.65, idrotm[312], "ONLY");
3325 gMC->Gspos("I035", 1,"I018", 1.7, -0.55, I018dits[2]-I035dits[2], 0, "MANY");
3326 gMC->Gspos("I035", 2,"I018", -1.7, -0.55, I018dits[2]-I035dits[2], 0, "MANY");
3328 gMC->Gspos("I036", 1,"I018", 0.3087, 1.7191, 3.56, idrotm[346], "ONLY");
3329 gMC->Gspos("I036", 2,"I018", 0.3087, 1.7191,-0.11, idrotm[346], "ONLY");
3330 gMC->Gspos("I036", 3,"I018", -0.3087, 1.7191,-0.11, idrotm[347], "ONLY");
3331 gMC->Gspos("I036", 4,"I018", -0.3087, 1.7191, 3.56, idrotm[347], "ONLY");
3333 gMC->Gspos("I037", 1,"I018", SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 , "ONLY");
3334 gMC->Gspos("I037", 2,"I018", -SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 , "ONLY");
3336 gMC->Gspos("I038", 1,"I018", SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 , "ONLY");
3337 gMC->Gspos("I038", 2,"I018", -SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 , "ONLY");
3339 gMC->Gspos("I040", 1,"I018", 1.9204, -0.7118, 0.0, idrotm[346],"ONLY");
3340 gMC->Gspos("I040", 2,"I018", -1.9204, -0.7118, 0.0, idrotm[347],"ONLY");
3341 gMC->Gspos("I041", 1,"I018", SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], idrotm[346], "ONLY");
3342 gMC->Gspos("I041", 2,"I018", -SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], idrotm[347], "ONLY");
3345 // -- build block of the SDD electronics (heat bridge, chips, hybrid, anode microcable)
3347 xI050 = SDD_CoolPipe[0]+SDD_CoolPipe[1]*sin30+I050dits[1]/cos30+I041dits[1];
3349 xI039 = -SDD_CoolPipe[1]/cos30;
3350 yI039 = -I050dits[1]+I039dits[1];
3351 gMC->Gspos("I039", 1,"I050", xI039, yI039, 0.0, 0, "ONLY");
3352 xI042 = xI039+I039dits[0]-xI042space-I042dits[0];
3353 yI042 = yI039+I039dits[1]+I042dits[1];
3354 xI043 = xI039-I039dits[0]+xI043space+I043dits[0];
3355 yI043 = yI039+I039dits[1]+I043dits[1];
3356 zChipSpace = I042dits[2];
3357 if (zChipSpace < I043dits[2]) {
3358 zChipSpace = I043dits[2];
3360 zChipSpace = zChipSpace * 2;
3361 yI051space = (2*I039dits[2] - 4*zChipSpace)/5;
3362 zchip = -I039dits[2] + yI051space + zChipSpace/2.;
3363 for (ichip=0; ichip<4; ichip++) {
3364 gMC->Gspos("I042", ichip+1, "I050", xI042, yI042, zchip, 0, "ONLY");
3365 gMC->Gspos("I043", ichip+1, "I050", xI043, yI043, zchip, 0, "ONLY");
3366 zchip += zChipSpace + yI051space;
3368 xcap = 2*I039dits[0]/5.;
3369 yI051 = yI039+I039dits[1]+I051dits[1];
3370 zI051 = -I039dits[2] + yI051space/3.;
3372 for (ichip=0; ichip<5; ichip++) {
3373 xI051 = xI039-I039dits[0]+xcap;
3374 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3375 zI051 += yI051space/3.;
3376 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3378 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3380 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3382 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3383 zI051 -= yI051space/3.;
3385 gMC->Gspos("I051", icap++,"I050", xI051, yI051, zI051, 0, "ONLY");
3387 zI051 += zChipSpace + yI051space;
3389 xI052 = -I050dits[0]+I052dits[0];
3390 yI052 = yI051+I051dits[1]+I052dits[1];
3391 gMC->Gspos("I052", 1,"I050", xI052, yI052, 0.0, 0, "ONLY");
3392 xI044 = I050dits[0]-I044dits[3];
3393 yI044 = yI052+I052dits[1]+I044dits[2];
3394 gMC->Gspos("I044", 1,"I050", xI044, yI044, 0.0, idrotm[301], "ONLY");
3395 gMC->Gspos("I050", 1,"I018", xI050, yI050, 0.0, idrotm[346],"ONLY");
3396 gMC->Gspos("I050", 2,"I018", -xI050, yI050, 0.0, idrotm[347],"ONLY");
3399 // -- build block of the SDD ladder frame at the end ladders
3401 gMC->Gspos("I021",12,"I024", 1.0761, 0.0836,-0.1242, idrotm[340], "ONLY");
3402 gMC->Gspos("I021",11,"I024", -1.0761, 0.0836,-0.1242, idrotm[338], "ONLY");
3403 gMC->Gspos("I021",13,"I024", -1.0761, 0.0836,-1.8758, idrotm[339], "ONLY");
3404 gMC->Gspos("I021",14,"I024", 1.0761, 0.0836,-1.8758, idrotm[337], "ONLY");
3406 gMC->Gspos("I022", 3,"I024", 0.0, -1.7899, 0.825, idrotm[312], "ONLY");
3408 gMC->Gspos("I023", 3,"I024", 0.0, -1.7899,-1.0, idrotm[341], "ONLY");
3410 gMC->Gspos("I025", 1,"I024", -1.9, -1.7349, 0.0, idrotm[344], "ONLY");
3411 gMC->Gspos("I025", 2,"I024", 1.987, -1.5842, 0.0, idrotm[343], "ONLY");
3413 gMC->Gspos("I026", 1,"I024", -1.9782, -1.5689, 0.0, idrotm[342], "ONLY");
3414 gMC->Gspos("I026", 2,"I024", 1.8824, -1.7349, 0.0, idrotm[344], "ONLY");
3416 gMC->Gspos("I029", 1,"I024", -0.087, 1.7067, I029dits[2]-I024dits[2], idrotm[342], "ONLY");
3418 gMC->Gspos("I030", 1,"I024", 0.0958, 1.6914, I030dits[2]-I024dits[2], idrotm[343], "ONLY");
3420 gMC->Gspos("I031", 1,"I024", SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 ,"ONLY");
3421 gMC->Gspos("I031", 2,"I024", -SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 ,"ONLY");
3423 gMC->Gspos("I032", 1,"I024", SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 ,"ONLY");
3424 gMC->Gspos("I032", 2,"I024", -SDD_CoolPipe[0], SDD_CoolPipe[1], SDD_CoolPipe[2], 0 ,"ONLY");
3427 xI424 = I028dits[0]/3.;
3428 yI424 = -I028dits[1]+I424dits[1];
3429 gMC->Gspos("I422", 1,"I421", 0.0, 0.0, 0.0, 0, "ONLY");
3430 gMC->Gspos("I423", 1,"I421", 0.0, 0.0, I421dits[2]-I423dits[2], 0, "ONLY");
3431 gMC->Gspos("I421", 1,"I420", 0.0, 0.0, 0.0, idrotm[312], "ONLY");
3432 gMC->Gspos("I420", 1,"I028", -I028dits[0]/3., I028dits[1]-I420dits[1], 0.0, 0, "ONLY");
3433 gMC->Gspos("I424", 1,"I028", xI424, yI424, 0.0, 0, "ONLY");
3434 gMC->Gspos("I028", 1,"I024", 0.0, I028dits[1]-I024dits[1], I024dits[2]-I028dits[2], 0, "MANY");
3437 // -- build the SDD ladder 3
3440 gMC->Gspos("I024", 1,"I047", 0.0, 0.0, 24.625, 0, "ONLY");
3441 gMC->Gspos("I018", 1,"I047", 0.0, 0.0, 3.65, 0, "ONLY");
3442 gMC->Gspos("I018", 2,"I047", 0.0, 0.0, 10.95, 0, "ONLY");
3443 gMC->Gspos("I018", 3,"I047", 0.0, 0.0, 18.25, 0, "ONLY");
3444 gMC->Gspos("I018", 4,"I047", 0.0, 0.0, -3.65, 0, "ONLY");
3445 gMC->Gspos("I018", 5,"I047", 0.0, 0.0, -10.95, 0, "ONLY");
3446 gMC->Gspos("I018", 6,"I047", 0.0, 0.0, -18.25, 0, "ONLY");
3447 gMC->Gspos("I024", 2,"I047", 0.0, 0.0, -24.625, idrotm[355], "ONLY");
3452 for (iSDD=0; iSDD<3; iSDD++) {
3453 HVname[3] = (Char_t)(48+iSDD+5);
3455 dits[1] = I425dits[1];
3456 dits[2] = (I047dits[2] - 2*I024dits[2] - Z_SDD_lay3[iSDD])/2.;
3457 gMC->Gsvolu(HVname, "BOX ", idtmed[279], dits, 3);
3459 yHV = -I047dits[1] + (2*iSDD+1)*dits[1];
3460 zHV = I047dits[2] - 2*I024dits[2] - dits[2];
3461 gMC->Gspos(HVname, 1,"I047", xHV, yHV, zHV, 0, "ONLY");
3462 gMC->Gspos(HVname, 2,"I047", xHV, yHV, -zHV, 0, "ONLY");
3463 gMC->Gspos("I425", indI425++,"I047", xI424, yHV, 24.625, 0, "ONLY");
3464 gMC->Gspos("I425", indI425++,"I047", -xI424, yHV, -24.625, 0, "ONLY");
3470 for (iSDD=0; iSDD<3; iSDD++) {
3471 LVname[3] = (Char_t)(48+iSDD+1);
3474 dits[2] = (I047dits[2] - (2*iSDD+1)*I018dits[2] - I039dits[2])/2.;
3475 gMC->Gsvolu(LVname, "BOX ", idtmed[280], dits, 3);
3476 yLV = I018dits[1] - dits[0]*cos30 - dits[1]*sin30;
3478 fabs(yI050-yLV)*sin30/cos30 +
3479 (I050dits[1]+(2*iSDD+1)*dits[1])/cos30;
3480 zLV = I047dits[2] - dits[2];
3481 gMC->Gspos(LVname, 1,"I047", xLV, yLV, zLV, idrotm[346], "ONLY");
3482 gMC->Gspos(LVname, 2,"I047", xLV, yLV, -zLV, idrotm[346], "ONLY");
3483 gMC->Gspos(LVname, 3,"I047", -xLV, yLV, zLV, idrotm[347], "ONLY");
3484 gMC->Gspos(LVname, 4,"I047", -xLV, yLV, -zLV, idrotm[347], "ONLY");
3488 // -- build the SDD ladder 4
3491 gMC->Gspos("I024", 3,"I048", -0.0001, 0.0, 31.925, 0, "ONLY");
3492 gMC->Gspos("I018", 7,"I048", -0.0001, 0.0, -3.65, 0, "ONLY");
3493 gMC->Gspos("I018", 8,"I048", -0.0001, 0.0, 3.65, 0, "ONLY");
3494 gMC->Gspos("I018", 9,"I048", -0.0001, 0.0, 10.95, 0, "ONLY");
3495 gMC->Gspos("I018",10,"I048", -0.0001, 0.0, 18.25, 0, "ONLY");
3496 gMC->Gspos("I018",11,"I048", -0.0001, 0.0, 25.55, 0, "ONLY");
3497 gMC->Gspos("I018",12,"I048", -0.0001, 0.0, -10.95, 0, "ONLY");
3498 gMC->Gspos("I018",13,"I048", -0.0001, 0.0, -18.25, 0, "ONLY");
3499 gMC->Gspos("I018",14,"I048", -0.0001, 0.0, -25.55, 0, "ONLY");
3500 gMC->Gspos("I024", 4,"I048", -0.0001, 0.0, -31.925, idrotm[355], "ONLY");
3505 for (iSDD=0; iSDD<4; iSDD++) {
3506 HVname[3] = (Char_t)(48+iSDD+5);
3508 dits[1] = I425dits[1];
3509 dits[2] = (I048dits[2] - 2*I024dits[2] - Z_SDD_lay4[iSDD])/2.;
3510 gMC->Gsvolu(HVname, "BOX ", idtmed[279], dits, 3);
3512 yHV = -I048dits[1] + (2*iSDD+1)*dits[1];
3513 zHV = I048dits[2] - 2*I024dits[2] - dits[2];
3514 gMC->Gspos(HVname, 1,"I048", xHV, yHV, zHV, 0, "ONLY");
3515 gMC->Gspos(HVname, 2,"I048", xHV, yHV, -zHV, 0, "ONLY");
3516 gMC->Gspos("I425", indI425++,"I048", xI424, yHV, 31.925, 0, "ONLY");
3517 gMC->Gspos("I425", indI425++,"I048", -xI424, yHV, -31.925, 0, "ONLY");
3523 for (iSDD=0; iSDD<4; iSDD++) {
3524 LVname[3] = (Char_t)(48+iSDD+1);
3527 dits[2] = (I048dits[2] - (2*iSDD+1)*I018dits[2] - I039dits[2])/2.;
3528 gMC->Gsvolu(LVname, "BOX ", idtmed[280], dits, 3);
3529 yLV = I018dits[1] - dits[0]*cos30 - dits[1]*sin30;
3531 fabs(yI050-yLV)*sin30/cos30 +
3532 (I050dits[1]+(2*iSDD+1)*dits[1])/cos30;
3533 zLV = I048dits[2] - dits[2];
3534 gMC->Gspos(LVname, 1,"I048", xLV, yLV, zLV, idrotm[346], "ONLY");
3535 gMC->Gspos(LVname, 2,"I048", xLV, yLV, -zLV, idrotm[346], "ONLY");
3536 gMC->Gspos(LVname, 3,"I048", -xLV, yLV, zLV, idrotm[347], "ONLY");
3537 gMC->Gspos(LVname, 4,"I048", -xLV, yLV, -zLV, idrotm[347], "ONLY");
3541 // -- build the SDD barrel (layers 3 and 4)
3543 gMC->Gspos("I047", 1,"IT34", -3.7528, 16.4422, 0.0, idrotm[321], "ONLY");
3544 gMC->Gspos("I047", 2,"IT34",-10.8892, 13.6547, 0.0, idrotm[333], "ONLY");
3545 gMC->Gspos("I047", 3,"IT34",-15.1948, 7.3175, 0.0, idrotm[336], "ONLY");
3546 gMC->Gspos("I047", 4,"IT34",-17.465, 0.0, 0.0, idrotm[350], "ONLY");
3547 gMC->Gspos("I047", 5,"IT34",-15.1948, -7.3174, 0.0, idrotm[313], "ONLY");
3548 gMC->Gspos("I047", 6,"IT34",-10.8893, -13.6547, 0.0, idrotm[311], "ONLY");
3549 gMC->Gspos("I047", 7,"IT34", -3.7528, -16.4422, 0.0, idrotm[310], "ONLY");
3550 gMC->Gspos("I047", 8,"IT34", 3.8863, -17.0271, 0.0, idrotm[386], "ONLY");
3551 gMC->Gspos("I047", 9,"IT34", 10.5152, -13.1856, 0.0, idrotm[309], "ONLY");
3552 gMC->Gspos("I047",10,"IT34", 15.7354, -7.5778, 0.0, idrotm[308], "ONLY");
3553 gMC->Gspos("I047",11,"IT34", 16.865, 0.0, 0.0, idrotm[356], "ONLY");
3554 gMC->Gspos("I047",12,"IT34", 15.7354, 7.5778, 0.0, idrotm[307], "ONLY");
3555 gMC->Gspos("I047",13,"IT34", 10.5152, 13.1856, 0.0, idrotm[306], "ONLY");
3556 gMC->Gspos("I047",14,"IT34", 3.8863, 17.0271, 0.0, idrotm[305], "ONLY");
3558 gMC->Gspos("I048", 1,"IT34", -3.6667, 25.5027, 0.0, idrotm[335], "ONLY");
3559 gMC->Gspos("I048", 2,"IT34",-10.9317, 23.937, 0.0, idrotm[332], "ONLY");
3560 gMC->Gspos("I048", 3,"IT34",-16.8725, 19.4719, 0.0, idrotm[331], "ONLY");
3561 gMC->Gspos("I048", 4,"IT34",-22.1376, 14.227, 0.0, idrotm[366], "ONLY");
3562 gMC->Gspos("I048", 5,"IT34",-24.7213, 7.2588, 0.0, idrotm[330], "ONLY");
3563 gMC->Gspos("I048", 6,"IT34",-26.315, 0.0, 0.0, idrotm[350], "ONLY");
3564 gMC->Gspos("I048", 7,"IT34",-24.7213, -7.2588, 0.0, idrotm[329], "ONLY");
3565 gMC->Gspos("I048", 8,"IT34",-22.1376, -14.227, 0.0, idrotm[328], "ONLY");
3566 gMC->Gspos("I048", 9,"IT34",-16.8725, -19.4719, 0.0, idrotm[327], "ONLY");
3567 gMC->Gspos("I048",10,"IT34",-10.9316, -23.937, 0.0, idrotm[326], "ONLY");
3568 gMC->Gspos("I048",11,"IT34", -3.6667, -25.5027, 0.0, idrotm[325], "ONLY");
3569 gMC->Gspos("I048",12,"IT34", 3.745, -26.0472, 0.0, idrotm[324], "ONLY");
3570 gMC->Gspos("I048",13,"IT34", 10.7032, -23.4367, 0.0, idrotm[323], "ONLY");
3571 gMC->Gspos("I048",14,"IT34", 17.2327, -19.8876, 0.0, idrotm[322], "ONLY");
3572 gMC->Gspos("I048",15,"IT34", 21.6749, -13.9296, 0.0, idrotm[320], "ONLY");
3573 gMC->Gspos("I048",16,"IT34", 25.2491, -7.4138, 0.0, idrotm[319], "ONLY");
3574 gMC->Gspos("I048",17,"IT34", 25.765, 0.0, 0.0, idrotm[318], "ONLY");
3575 gMC->Gspos("I048",18,"IT34", 25.2491, 7.4138, 0.0, idrotm[317], "ONLY");
3576 gMC->Gspos("I048",19,"IT34", 21.6749, 13.9296, 0.0, idrotm[316], "ONLY");
3577 gMC->Gspos("I048",20,"IT34", 17.2327, 19.8876, 0.0, idrotm[315], "ONLY");
3578 gMC->Gspos("I048",21,"IT34", 10.7032, 23.4367, 0.0, idrotm[314], "ONLY");
3579 gMC->Gspos("I048",22,"IT34", 3.745, 26.0472, 0.0, idrotm[334], "ONLY");
3582 // --- Place SSD volumes into their mother volume IT56
3585 gMC->Gspos("I570",14,"IT56",-28.0681,-36.0619,-0.27,idrotm[566],"ONLY");
3586 gMC->Gspos("I570",15,"IT56",-21.677,-40.0556,-0.27,idrotm[567],"ONLY");
3587 gMC->Gspos("I570",16,"IT56",-14.838,-43.2217,-0.27,idrotm[568],"ONLY");
3588 gMC->Gspos("I570",17,"IT56",-7.4965,-44.9238,-0.27,idrotm[569],"ONLY");
3589 gMC->Gspos("I570",18,"IT56",-0.27,-45.6977,-0.27,idrotm[533],"ONLY");
3590 gMC->Gspos("I570",19,"IT56",7.4965,-44.9238,-0.27,idrotm[534],"ONLY");
3591 gMC->Gspos("I570",20,"IT56",14.838,-43.2217,-0.27,idrotm[535],"ONLY");
3592 gMC->Gspos("I570",21,"IT56",21.677,-40.0556,-0.27,idrotm[623],"ONLY");
3593 gMC->Gspos("I570",22,"IT56",28.0681,-36.0619,-0.27,idrotm[537],"ONLY");
3594 gMC->Gspos("I570",23,"IT56",33.5085,-30.8468,-0.27,idrotm[538],"ONLY");
3595 gMC->Gspos("I570",24,"IT56",38.2566,-24.9943,-0.27,idrotm[539],"ONLY");
3596 gMC->Gspos("I570",25,"IT56",41.7089,-18.2952,-0.27,idrotm[540],"ONLY");
3597 gMC->Gspos("I570",26,"IT56",44.2994,-11.2181,-0.27,idrotm[541],"ONLY");
3598 gMC->Gspos("I570",27,"IT56",45.3894,-3.7611,-0.27,idrotm[542],"ONLY");
3599 gMC->Gspos("I570",28,"IT56",45.5416,3.7737,-0.27,idrotm[543],"ONLY");
3600 gMC->Gspos("I570",29,"IT56",44.1513,11.1806,-0.27,idrotm[544],"ONLY");
3601 gMC->Gspos("I570",30,"IT56",41.8487,18.3566,-0.27,idrotm[545],"ONLY");
3602 gMC->Gspos("I570",31,"IT56",38.1287,24.9107,-0.27,idrotm[546],"ONLY");
3603 gMC->Gspos("I570",32,"IT56",33.6209,30.9502,-0.27,idrotm[547],"ONLY");
3604 gMC->Gspos("I570",33,"IT56",27.9743,35.9414,-0.27,idrotm[548],"ONLY");
3605 gMC->Gspos("I570",34,"IT56",21.7497,40.1899,-0.27,idrotm[549],"ONLY");
3606 gMC->Gspos("I570",35,"IT56",14.7884,43.0772,-0.27,idrotm[550],"ONLY");
3607 gMC->Gspos("I570",36,"IT56",7.5216,45.0744,-0.27,idrotm[551],"ONLY");
3608 gMC->Gspos("I570",37,"IT56",0.00,45.545,-0.27,0,"ONLY");
3609 gMC->Gspos("I570",38,"IT56",-7.5216,45.0744,-0.27,idrotm[552],"ONLY");
3610 gMC->Gspos("I570",1,"IT56",-14.7884,43.0772,-0.27,idrotm[553],"ONLY");
3611 gMC->Gspos("I570",2,"IT56",-21.7497,40.1899,-0.27,idrotm[620],"ONLY");
3612 gMC->Gspos("I570",3,"IT56",-27.9743,35.9414,-0.27,idrotm[555],"ONLY");
3613 gMC->Gspos("I570",4,"IT56",-33.6209,30.9502,-0.27,idrotm[556],"ONLY");
3614 gMC->Gspos("I570",5,"IT56",-38.1287,24.9108,-0.27,idrotm[557],"ONLY");
3615 gMC->Gspos("I570",6,"IT56",-41.8487,18.3566,-0.27,idrotm[558],"ONLY");
3616 gMC->Gspos("I570",7,"IT56",-44.1513,11.1806,-0.27,idrotm[559],"ONLY");
3617 gMC->Gspos("I570",8,"IT56",-45.5416,3.7737,-0.27,idrotm[560],"ONLY");
3618 gMC->Gspos("I570",9,"IT56",-45.3894,-3.7611,-0.27,idrotm[561],"ONLY");
3619 gMC->Gspos("I570",10,"IT56",-44.2994,-11.2181,-0.27,idrotm[562],"ONLY");
3620 gMC->Gspos("I570",11,"IT56",-41.7089,-18.2952,-0.27,idrotm[563],"ONLY");
3621 gMC->Gspos("I570",12,"IT56",-38.2566,-24.9943,-0.27,idrotm[564],"ONLY");
3622 gMC->Gspos("I570",13,"IT56",-33.5086,-30.8468,-0.27,idrotm[565],"ONLY");
3623 gMC->Gspos("I569",8,"IT56",-43.5484,3.6085,0.0,idrotm[560],"ONLY");
3624 gMC->Gspos("I569",9,"IT56",-43.3963,-3.5959,0.0,idrotm[561],"ONLY");
3625 gMC->Gspos("I569",10,"IT56",-42.3606,-10.7271,0.0,idrotm[562],"ONLY");
3626 gMC->Gspos("I569",11,"IT56",-39.8773,-17.4918,0.0,idrotm[563],"ONLY");
3627 gMC->Gspos("I569",12,"IT56",-36.5823,-23.9004,0.0,idrotm[564],"ONLY");
3628 gMC->Gspos("I569",13,"IT56",-32.0371,-29.4922,0.0,idrotm[565],"ONLY");
3629 gMC->Gspos("I569",14,"IT56",-26.8397,-34.4836,0.0,idrotm[566],"ONLY");
3630 gMC->Gspos("I569",15,"IT56",-20.7251,-38.2967,0.0,idrotm[567],"ONLY");
3631 gMC->Gspos("I569",16,"IT56",-14.1886,-41.33,0.0,idrotm[568],"ONLY");
3632 gMC->Gspos("I569",17,"IT56",-7.1673,-42.9511,0.0,idrotm[569],"ONLY");
3633 gMC->Gspos("I569",18,"IT56",0.0,-43.6977,0.0,idrotm[533],"ONLY");
3634 gMC->Gspos("I569",19,"IT56",7.1673,-42.9511,0.0,idrotm[534],"ONLY");
3635 gMC->Gspos("I569",20,"IT56",14.1886,-41.33,0.0,idrotm[535],"ONLY");
3636 gMC->Gspos("I569",21,"IT56",20.7251,-38.2967,0.0,idrotm[623],"ONLY");
3637 gMC->Gspos("I569",22,"IT56",26.8397,-34.4836,0.0,idrotm[537],"ONLY");
3638 gMC->Gspos("I569",23,"IT56",32.0371,-29.4922,0.0,idrotm[538],"ONLY");
3639 gMC->Gspos("I569",24,"IT56",36.5822,-23.9004,0.0,idrotm[539],"ONLY");
3640 gMC->Gspos("I569",25,"IT56",39.8773,-17.4918,0.0,idrotm[540],"ONLY");
3641 gMC->Gspos("I569",26,"IT56",42.3606,-10.7272,0.0,idrotm[541],"ONLY");
3642 gMC->Gspos("I569",27,"IT56",43.3963,-3.5959,0.0,idrotm[542],"ONLY");
3643 gMC->Gspos("I569",28,"IT56",43.5484,3.6085,0.0,idrotm[543],"ONLY");
3644 gMC->Gspos("I569",29,"IT56",42.2125,10.6897,0.0,idrotm[544],"ONLY");
3645 gMC->Gspos("I569",30,"IT56",40.0172,17.5532,0.0,idrotm[545],"ONLY");
3646 gMC->Gspos("I569",31,"IT56",36.4544,23.8169,0.0,idrotm[546],"ONLY");
3647 gMC->Gspos("I569",32,"IT56",32.1494,29.5956,0.0,idrotm[547],"ONLY");
3648 gMC->Gspos("I569",33,"IT56",26.7459,34.3631,0.0,idrotm[548],"ONLY");
3649 gMC->Gspos("I569",34,"IT56",20.7978,38.431,0.0,idrotm[549],"ONLY");
3650 gMC->Gspos("I569",35,"IT56",14.139,41.1856,0.0,idrotm[550],"ONLY");
3651 gMC->Gspos("I569",36,"IT56",7.1924,43.1017,0.0,idrotm[551],"ONLY");
3652 gMC->Gspos("I569",37,"IT56",0.0,43.545,0.0,0,"ONLY");
3653 gMC->Gspos("I569",38,"IT56",-7.1924,43.1017,0.0,idrotm[552],"ONLY");
3654 gMC->Gspos("I569",1,"IT56",-14.139,41.1856,0.0,idrotm[553],"ONLY");
3655 gMC->Gspos("I569",2,"IT56",-20.7978,38.431,0.0,idrotm[620],"ONLY");
3656 gMC->Gspos("I569",3,"IT56",-26.7459,34.3631,0.0,idrotm[555],"ONLY");
3657 gMC->Gspos("I569",4,"IT56",-32.1494,29.5956,0.0,idrotm[556],"ONLY");
3658 gMC->Gspos("I569",5,"IT56",-36.4544,23.8169,0.0,idrotm[557],"ONLY");
3659 gMC->Gspos("I569",6,"IT56",-40.0172,17.5532,0.0,idrotm[558],"ONLY");
3660 gMC->Gspos("I569",7,"IT56",-42.2125,10.6897,0.0,idrotm[559],"ONLY");
3661 gMC->Gspos("I571",15,"IT56",-21.2916,-34.387,0.0,idrotm[501],"ONLY");
3662 gMC->Gspos("I571",14,"IT56",-27.351,-30.0026,0.0,idrotm[503],"ONLY");
3663 gMC->Gspos("I571",13,"IT56",-32.2758,-24.3735,0.0,idrotm[504],"ONLY");
3664 gMC->Gspos("I571",12,"IT56",-36.3422,-18.0963,0.0,idrotm[505],"ONLY");
3665 gMC->Gspos("I571",11,"IT56",-38.901,-11.0683,0.0,idrotm[506],"ONLY");
3666 gMC->Gspos("I571",10,"IT56",-40.4252,-3.7459,0.0,idrotm[507],"ONLY");
3667 gMC->Gspos("I571",9,"IT56",-40.2725,3.7318,0.0,idrotm[508],"ONLY");
3668 gMC->Gspos("I571",8,"IT56",-39.0486,11.1103,0.0,idrotm[509],"ONLY");
3669 gMC->Gspos("I571",7,"IT56",-36.2049,18.0279,0.0,idrotm[510],"ONLY");
3670 gMC->Gspos("I571",6,"IT56",-32.3982,24.466,0.0,idrotm[511],"ONLY");
3671 gMC->Gspos("I571",5,"IT56",-27.2476,29.8892,0.0,idrotm[512],"ONLY");
3672 gMC->Gspos("I571",4,"IT56",-21.3723,34.5175,0.0,idrotm[513],"ONLY");
3673 gMC->Gspos("I571",3,"IT56",-14.6104,37.7138,0.0,idrotm[653],"ONLY");
3674 gMC->Gspos("I571",2,"IT56",-7.4599,39.9072,0.0,idrotm[514],"ONLY");
3675 gMC->Gspos("I571",1,"IT56",0.0,40.445,0.0,0,"ONLY");
3676 gMC->Gspos("I571",34,"IT56",7.46,39.9071,0.0,idrotm[515],"ONLY");
3677 gMC->Gspos("I571",33,"IT56",14.6104,37.7138,0.0,idrotm[516],"ONLY");
3678 gMC->Gspos("I571",32,"IT56",21.3723,34.5175,0.0,idrotm[517],"ONLY");
3679 gMC->Gspos("I571",31,"IT56",27.2476,29.8892,0.0,idrotm[518],"ONLY");
3680 gMC->Gspos("I571",30,"IT56",32.3983,24.466,0.0,idrotm[519],"ONLY");
3681 gMC->Gspos("I571",29,"IT56",36.2049,18.0279,0.0,idrotm[520],"ONLY");
3682 gMC->Gspos("I571",28,"IT56",39.0486,11.1103,0.0,idrotm[521],"ONLY");
3683 gMC->Gspos("I571",27,"IT56",40.2725,3.7318,0.0,idrotm[522],"ONLY");
3684 gMC->Gspos("I571",26,"IT56",40.4252,-3.746,0.0,idrotm[523],"ONLY");
3685 gMC->Gspos("I571",25,"IT56",38.901,-11.0683,0.0,idrotm[524],"ONLY");
3686 gMC->Gspos("I571",24,"IT56",36.3422,-18.0963,0.0,idrotm[525],"ONLY");
3687 gMC->Gspos("I571",23,"IT56",32.2758,-24.3736,0.0,idrotm[526],"ONLY");
3688 gMC->Gspos("I571",22,"IT56",27.351,-30.0026,0.0,idrotm[527],"ONLY");
3689 gMC->Gspos("I571",21,"IT56",21.2915,-34.387,0.0,idrotm[528],"ONLY");
3690 gMC->Gspos("I571",20,"IT56",14.6658,-37.8569,0.0,idrotm[618],"ONLY");
3691 gMC->Gspos("I571",19,"IT56",7.4317,-39.7563,0.0,idrotm[529],"ONLY");
3692 gMC->Gspos("I571",18,"IT56",0.0,-40.5984,0.0,idrotm[533],"ONLY");
3693 gMC->Gspos("I571",17,"IT56",-7.4318,-39.7563,0.0,idrotm[530],"ONLY");
3694 gMC->Gspos("I571",16,"IT56",-14.6659,-37.8569,0.0,idrotm[531],"ONLY");
3695 gMC->Gspos("I565",13,"IT56",-30.6798,-23.1683,0.0,idrotm[504],"ONLY");
3696 gMC->Gspos("I565",12,"IT56",-34.5519,-17.2048,0.0,idrotm[505],"ONLY");
3697 gMC->Gspos("I565",11,"IT56",-36.9774,-10.521,0.0,idrotm[506],"ONLY");
3698 gMC->Gspos("I565",10,"IT56",-38.4338,-3.5614,0.0,idrotm[507],"ONLY");
3699 gMC->Gspos("I565",9,"IT56",-38.281,3.5473,0.0,idrotm[508],"ONLY");
3700 gMC->Gspos("I565",8,"IT56",-37.1249,10.563,0.0,idrotm[509],"ONLY");
3701 gMC->Gspos("I565",7,"IT56",-34.4146,17.1364,0.0,idrotm[510],"ONLY");
3702 gMC->Gspos("I565",6,"IT56",-30.8022,23.2608,0.0,idrotm[511],"ONLY");
3703 gMC->Gspos("I565",5,"IT56",-25.9002,28.4112,0.0,idrotm[512],"ONLY");
3704 gMC->Gspos("I565",4,"IT56",-20.3195,32.817,0.0,idrotm[513],"ONLY");
3705 gMC->Gspos("I565",3,"IT56",-13.8879,35.8489,0.0,idrotm[653],"ONLY");
3706 gMC->Gspos("I565",2,"IT56",-7.0924,37.9412,0.0,idrotm[514],"ONLY");
3707 gMC->Gspos("I565",1,"IT56",0.0,38.445,0.0,0,"ONLY");
3708 gMC->Gspos("I565",34,"IT56",7.0925,37.9412,0.0,idrotm[515],"ONLY");
3709 gMC->Gspos("I565",33,"IT56",13.888,35.8489,0.0,idrotm[516],"ONLY");
3710 gMC->Gspos("I565",32,"IT56",20.3195,32.817,0.0,idrotm[517],"ONLY");
3711 gMC->Gspos("I565",31,"IT56",25.9002,28.4112,0.0,idrotm[518],"ONLY");
3712 gMC->Gspos("I565",30,"IT56",30.8022,23.2607,0.0,idrotm[519],"ONLY");
3713 gMC->Gspos("I565",29,"IT56",34.4146,17.1364,0.0,idrotm[520],"ONLY");
3714 gMC->Gspos("I565",28,"IT56",37.125,10.5629,0.0,idrotm[521],"ONLY");
3715 gMC->Gspos("I565",27,"IT56",38.281,3.5472,0.0,idrotm[522],"ONLY");
3716 gMC->Gspos("I565",26,"IT56",38.4338,-3.5614,0.0,idrotm[523],"ONLY");
3717 gMC->Gspos("I565",25,"IT56",36.9774,-10.521,0.0,idrotm[524],"ONLY");
3718 gMC->Gspos("I565",24,"IT56",34.5519,-17.2048,0.0,idrotm[525],"ONLY");
3719 gMC->Gspos("I565",23,"IT56",30.6798,-23.1683,0.0,idrotm[526],"ONLY");
3720 gMC->Gspos("I565",22,"IT56",26.0036,-28.5246,0.0,idrotm[527],"ONLY");
3721 gMC->Gspos("I565",21,"IT56",20.2387,-32.6866,0.0,idrotm[528],"ONLY");
3722 gMC->Gspos("I565",20,"IT56",13.9433,-35.992,0.0,idrotm[618],"ONLY");
3723 gMC->Gspos("I565",19,"IT56",7.0642,-37.7904,0.0,idrotm[529],"ONLY");
3724 gMC->Gspos("I565",18,"IT56",0.0,-38.5984,0.0,idrotm[533],"ONLY");
3725 gMC->Gspos("I565",17,"IT56",-7.0643,-37.7904,0.0,idrotm[530],"ONLY");
3726 gMC->Gspos("I565",16,"IT56",-13.9434,-35.992,0.0,idrotm[531],"ONLY");
3727 gMC->Gspos("I565",15,"IT56",-20.2387,-32.6866,0.0,idrotm[501],"ONLY");
3728 gMC->Gspos("I565",14,"IT56",-26.0036,-28.5246,0.0,idrotm[503],"ONLY");
3729 gMC->Gspos("I553",1,"I570",0.005,0.0,52.8453,0,"ONLY");
3730 gMC->Gspos("I523",1,"I570",0.0,0.0,46.9203+0.82,0,"ONLY");
3731 gMC->Gspos("I523",2,"I570",0.0,0.0,43.0103+0.82,0,"ONLY");
3732 gMC->Gspos("I523",3,"I570",0.0,0.0,39.1003+0.82,0,"ONLY");
3733 gMC->Gspos("I523",4,"I570",0.0,0.0,35.1903+0.82,0,"ONLY");
3734 gMC->Gspos("I523",5,"I570",0.0,0.0,31.2803+0.82,0,"ONLY");
3735 gMC->Gspos("I523",6,"I570",0.0,0.0,27.3703+0.82,0,"ONLY");
3736 gMC->Gspos("I523",7,"I570",0.0,0.0,23.4603+0.82,0,"ONLY");
3737 gMC->Gspos("I523",8,"I570",0.0,0.0,19.5503+0.82,0,"ONLY");
3738 gMC->Gspos("I523",9,"I570",0.0,0.0,15.6403+0.82,0,"ONLY");
3739 gMC->Gspos("I523",10,"I570",0.0,0.0,11.7303+0.82,0,"ONLY");
3740 gMC->Gspos("I523",11,"I570",0.0,0.0,7.8203+0.82,0,"ONLY");
3741 gMC->Gspos("I523",12,"I570",0.0,0.0,3.9103+0.82,0,"ONLY");
3742 gMC->Gspos("I523",13,"I570",0.0,0.0,0.0003+0.82,0,"ONLY");
3743 gMC->Gspos("I523",14,"I570",0.0,0.0,-3.9097+0.82,0,"ONLY");
3744 gMC->Gspos("I523",15,"I570",0.0,0.0,-7.8197+0.82,0,"ONLY");
3745 gMC->Gspos("I523",16,"I570",0.0,0.0,-11.7297+0.82,0,"ONLY");
3746 gMC->Gspos("I523",17,"I570",0.0,0.0,-15.6397+0.82,0,"ONLY");
3747 gMC->Gspos("I523",18,"I570",0.0,0.0,-19.5497+0.82,0,"ONLY");
3748 gMC->Gspos("I523",19,"I570",0.0,0.0,-23.4597+0.82,0,"ONLY");
3749 gMC->Gspos("I523",20,"I570",0.0,0.0,-27.3697+0.82,0,"ONLY");
3750 gMC->Gspos("I523",21,"I570",0.0,0.0,-31.2797+0.82,0,"ONLY");
3751 gMC->Gspos("I523",22,"I570",0.0,0.0,-35.1897+0.82,0,"ONLY");
3752 gMC->Gspos("I523",23,"I570",0.0,0.0,-39.0997+0.82,0,"ONLY");
3753 gMC->Gspos("I523",24,"I570",0.0,0.0,-43.0097+0.82,0,"ONLY");
3754 gMC->Gspos("I523",25,"I570",0.0,0.0,-46.9197+0.82,0,"ONLY");
3755 gMC->Gspos("I553",2,"I570",-0.005,0.0,-51.2047,idrotm[570],"ONLY");
3756 gMC->Gspos("I566",1,"I569",0.0,-0.03,46.9203,idrotm[532],"ONLY");
3757 gMC->Gspos("I566",2,"I569",0.0,0.03,43.0103,0,"ONLY");
3758 gMC->Gspos("I566",3,"I569",0.0,-0.03,39.1003,idrotm[532],"ONLY");
3759 gMC->Gspos("I566",4,"I569",0.0,0.03,35.1903,0,"ONLY");
3760 gMC->Gspos("I566",5,"I569",0.0,-0.03,31.2803,idrotm[532],"ONLY");
3761 gMC->Gspos("I566",6,"I569",0.0,0.03,27.3703,0,"ONLY");
3762 gMC->Gspos("I566",7,"I569",0.0,-0.03,23.4603,idrotm[532],"ONLY");
3763 gMC->Gspos("I566",8,"I569",0.0,0.03,19.5503,0,"ONLY");
3764 gMC->Gspos("I566",9,"I569",0.0,-0.03,15.6403,idrotm[532],"ONLY");
3765 gMC->Gspos("I566",10,"I569",0.0,0.03,11.7303,0,"ONLY");
3766 gMC->Gspos("I566",11,"I569",0.0,-0.03,7.8203,idrotm[532],"ONLY");
3767 gMC->Gspos("I566",12,"I569",0.0,0.03,3.9103,0,"ONLY");
3768 gMC->Gspos("I566",13,"I569",0.0,-0.03,0.0003,0,"ONLY");
3769 gMC->Gspos("I566",14,"I569",0.0,0.03,-3.9097,0,"ONLY");
3770 gMC->Gspos("I566",15,"I569",0.0,-0.03,-7.8197,idrotm[532],"ONLY");
3771 gMC->Gspos("I566",16,"I569",0.0,0.03,-11.7297,0,"ONLY");
3772 gMC->Gspos("I566",17,"I569",0.0,-0.03,-15.6397,0,"ONLY");
3773 gMC->Gspos("I566",18,"I569",0.0,0.03,-19.5497,0,"ONLY");
3774 gMC->Gspos("I566",19,"I569",0.0,-0.03,-23.4597,idrotm[532],"ONLY");
3775 gMC->Gspos("I566",20,"I569",0.0,0.03,-27.3697,0,"ONLY");
3776 gMC->Gspos("I566",21,"I569",0.0,-0.03,-31.2797,idrotm[532],"ONLY");
3777 gMC->Gspos("I566",22,"I569",0.0,0.03,-35.1897,0,"ONLY");
3778 gMC->Gspos("I566",23,"I569",0.0,-0.03,-39.0997,0,"ONLY");
3779 gMC->Gspos("I566",24,"I569",0.0,0.03,-43.0097,0,"ONLY");
3780 gMC->Gspos("I566",25,"I569",0.0,-0.03,-46.9197,idrotm[532],"ONLY");
3781 gMC->Gspos("I544",1,"I571",0.0101,0.0,43.125,0,"ONLY");
3782 gMC->Gspos("I516",20,"I571",0.0001,0.0,39.1-1.08,0,"ONLY");
3783 gMC->Gspos("I516",19,"I571",0.0001,0.0,35.19-1.08,0,"ONLY");
3784 gMC->Gspos("I516",18,"I571",0.0001,0.0,31.28-1.08,0,"ONLY");
3785 gMC->Gspos("I516",17,"I571",0.0001,0.0,27.37-1.08,0,"ONLY");
3786 gMC->Gspos("I516",16,"I571",0.0001,0.0,23.46-1.08,0,"ONLY");
3787 gMC->Gspos("I516",15,"I571",0.0001,0.0,19.55-1.08,0,"ONLY");
3788 gMC->Gspos("I516",14,"I571",0.0001,0.0,15.64-1.08,0,"ONLY");
3789 gMC->Gspos("I516",13,"I571",0.0001,0.0,11.73-1.08,0,"ONLY");
3790 gMC->Gspos("I516",12,"I571",0.0001,0.0,7.82-1.08,0,"ONLY");
3791 gMC->Gspos("I516",11,"I571",0.0001,0.0,3.91-1.08,0,"ONLY");
3792 gMC->Gspos("I516",10,"I571",0.0001,0.0,0.0-1.08,0,"ONLY");
3793 gMC->Gspos("I516",9,"I571",0.0001,0.0,-3.91-1.08,0,"ONLY");
3794 gMC->Gspos("I516",8,"I571",0.0001,0.0,-7.82-1.08,0,"ONLY");
3795 gMC->Gspos("I516",7,"I571",0.0001,0.0,-11.73-1.08,0,"ONLY");
3796 gMC->Gspos("I516",6,"I571",0.0001,0.0,-15.64-1.08,0,"ONLY");
3797 gMC->Gspos("I516",5,"I571",0.0001,0.0,-19.55-1.08,0,"ONLY");
3798 gMC->Gspos("I516",4,"I571",0.0001,0.0,-23.46-1.08,0,"ONLY");
3799 gMC->Gspos("I516",3,"I571",0.0001,0.0,-27.37-1.08,0,"ONLY");
3800 gMC->Gspos("I516",2,"I571",0.0001,0.0,-31.28-1.08,0,"ONLY");
3801 gMC->Gspos("I516",1,"I571",0.0001,0.0,-35.19-1.08,0,"ONLY");
3802 gMC->Gspos("I544",2,"I571",-0.0099,0.0,-41.375,idrotm[570],"ONLY");
3803 gMC->Gspos("I562",1,"I565",0.0,0.03,41.1546,0,"ONLY");
3804 gMC->Gspos("I562",2,"I565",0.0,-0.03,37.2246,0,"ONLY");
3805 gMC->Gspos("I562",3,"I565",0.0,0.03,33.3146,0,"ONLY");
3806 gMC->Gspos("I562",4,"I565",0.0,-0.03,29.3846,0,"ONLY");
3807 gMC->Gspos("I562",5,"I565",0.0,0.03,25.4746,0,"ONLY");
3808 gMC->Gspos("I562",6,"I565",0.0,-0.03,21.5446,0,"ONLY");
3809 gMC->Gspos("I562",7,"I565",0.0,0.03,17.6346,0,"ONLY");
3810 gMC->Gspos("I562",8,"I565",0.0,-0.03,13.7046,0,"ONLY");
3811 gMC->Gspos("I562",9,"I565",0.0,0.03,9.7946,0,"ONLY");
3812 gMC->Gspos("I562",10,"I565",0.0,-0.03,5.8645,0,"ONLY");
3813 gMC->Gspos("I562",11,"I565",0.0,0.03,1.9546,0,"ONLY");
3814 gMC->Gspos("I562",12,"I565",0.0,-0.03,-1.9754,0,"ONLY");
3815 gMC->Gspos("I562",13,"I565",0.0,0.03,-5.8855,0,"ONLY");
3816 gMC->Gspos("I562",14,"I565",0.0,-0.03,-9.8154,0,"ONLY");
3817 gMC->Gspos("I562",15,"I565",0.0,0.03,-13.7254,0,"ONLY");
3818 gMC->Gspos("I562",16,"I565",0.0,-0.03,-17.6555,0,"ONLY");
3819 gMC->Gspos("I562",17,"I565",0.0,0.03,-21.5655,0,"ONLY");
3820 gMC->Gspos("I562",18,"I565",0.0,-0.03,-25.4954,0,"ONLY");
3821 gMC->Gspos("I562",19,"I565",0.0,0.03,-29.4054,0,"ONLY");
3822 gMC->Gspos("I562",20,"I565",0.0,-0.03,-33.3354,0,"ONLY");
3823 gMC->Gspos("I562",21,"I565",0.0,0.03,-37.2454,0,"ONLY");
3824 gMC->Gspos("I562",22,"I565",0.0,-0.03,-41.1554,0,"ONLY");
3825 gMC->Gspos("I559",1,"I553",2.25,-1.615,0.0,0,"ONLY");
3826 gMC->Gspos("I560",1,"I553",2.25,-1.615,0.0,0,"ONLY");
3827 gMC->Gspos("I560",2,"I553",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3828 gMC->Gspos("I558",1,"I553",-1.7167,-1.52,0.0,idrotm[583],"ONLY");
3829 gMC->Gspos("I557",1,"I553",-1.8533,-1.341,0.0,idrotm[581],"ONLY");
3830 gMC->Gspos("I558",2,"I553",1.8367,-1.3122,0.0,idrotm[575],"ONLY");
3831 gMC->Gspos("I557",2,"I553",1.75,-1.52,0.0,idrotm[583],"ONLY");
3832 gMC->Gspos("I558",3,"I553",-0.12,1.6613,0.0,idrotm[581],"ONLY");
3833 gMC->Gspos("I557",3,"I553",0.1034,1.6901,0.0,idrotm[575],"ONLY");
3834 gMC->Gspos("I556",3,"I553",-1.031,0.2033,-2.203,idrotm[580],"ONLY");
3835 gMC->Gspos("I556",1,"I553",1.0311,0.2033,-0.287,idrotm[576],"ONLY");
3836 gMC->Gspos("I554",1,"I553",0.0,-1.58,0.71,0,"ONLY");
3837 gMC->Gspos("I555",1,"I553",-0.0072,-1.58,-1.2311,idrotm[633],"ONLY");
3838 gMC->Gspos("I556",2,"I553",1.0311,0.2033,-2.203,idrotm[577],"ONLY");
3839 gMC->Gspos("I556",4,"I553",-1.031,0.2033,-0.287,idrotm[579],"ONLY");
3840 gMC->Gspos("I559",2,"I553",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3841 gMC->Gspos("I561",1,"I553",2.1,-1.615,-0.24,0,"MANY");
3842 gMC->Gspos("I561",2,"I553",-2.1,-1.615,-0.24,idrotm[573],"MANY");
3843 gMC->Gspos("I519",37,"I523",0.0001,-1.79,-0.99,idrotm[586],"ONLY");
3844 gMC->Gspos("I519",36,"I523",-3.2986,-1.79,-1.2943,0,"ONLY");
3845 gMC->Gspos("I519",35,"I523",-3.2986,-1.71,-1.2943,0,"ONLY");
3846 gMC->Gspos("I519",34,"I523",-3.2286,-1.71,-1.2943,0,"ONLY");
3847 gMC->Gspos("I519",33,"I523",-3.2286,-1.79,-1.2943,0,"ONLY");
3848 gMC->Gspos("I519",32,"I523",-3.1586,-1.79,-1.2943,0,"ONLY");
3849 gMC->Gspos("I519",31,"I523",-3.1586,-1.71,-1.2943,0,"ONLY");
3850 gMC->Gspos("I519",30,"I523",-1.3436,-1.71,-1.2943,0,"ONLY");
3851 gMC->Gspos("I519",29,"I523",-1.3436,-1.79,-1.2943,0,"ONLY");
3852 gMC->Gspos("I519",28,"I523",-1.2736,-1.79,-1.2943,0,"ONLY");
3853 gMC->Gspos("I519",27,"I523",-1.2736,-1.71,-1.2943,0,"ONLY");
3854 gMC->Gspos("I519",26,"I523",-1.2036,-1.71,-1.2943,0,"ONLY");
3855 gMC->Gspos("I519",25,"I523",-1.2036,-1.79,-1.2943,0,"ONLY");
3856 gMC->Gspos("I519",24,"I523",-1.0458,-1.79,-1.2943,0,"ONLY");
3857 gMC->Gspos("I519",23,"I523",-1.0458,-1.71,-1.2943,0,"ONLY");
3858 gMC->Gspos("I519",22,"I523",-0.9758,-1.71,-1.2943,0,"ONLY");
3859 gMC->Gspos("I519",21,"I523",-0.9758,-1.79,-1.2943,0,"ONLY");
3860 gMC->Gspos("I519",20,"I523",-0.9058,-1.79,-1.2943,0,"ONLY");
3861 gMC->Gspos("I519",19,"I523",-0.9058,-1.71,-1.2943,0,"ONLY");
3862 gMC->Gspos("I519",18,"I523",0.9092,-1.71,-1.2943,0,"ONLY");
3863 gMC->Gspos("I519",17,"I523",0.9092,-1.79,-1.2943,0,"ONLY");
3864 gMC->Gspos("I519",16,"I523",0.9792,-1.79,-1.2943,0,"ONLY");
3865 gMC->Gspos("I519",15,"I523",0.9792,-1.71,-1.2943,0,"ONLY");
3866 gMC->Gspos("I519",14,"I523",1.0492,-1.71,-1.2943,0,"ONLY");
3867 gMC->Gspos("I519",13,"I523",1.0492,-1.79,-1.2943,0,"ONLY");
3868 gMC->Gspos("I519",12,"I523",1.207,-1.79,-1.2943,0,"ONLY");
3869 gMC->Gspos("I519",11,"I523",1.207,-1.71,-1.2943,0,"ONLY");
3870 gMC->Gspos("I519",10,"I523",1.277,-1.71,-1.2943,0,"ONLY");
3871 gMC->Gspos("I519",9,"I523",1.277,-1.79,-1.2943,0,"ONLY");
3872 gMC->Gspos("I519",8,"I523",1.347,-1.79,-1.2943,0,"ONLY");
3873 gMC->Gspos("I519",7,"I523",1.347,-1.71,-1.2943,0,"ONLY");
3874 gMC->Gspos("I519",6,"I523",3.162,-1.71,-1.2943,0,"ONLY");
3875 gMC->Gspos("I519",5,"I523",3.162,-1.79,-1.2943,0,"ONLY");
3876 gMC->Gspos("I519",4,"I523",3.232,-1.79,-1.2943,0,"ONLY");
3877 gMC->Gspos("I519",3,"I523",3.232,-1.71,-1.2943,0,"ONLY");
3878 gMC->Gspos("I521",12,"I523",-2.8209,-1.7925,-0.982,0,"ONLY");
3879 gMC->Gspos("I521",11,"I523",-1.6895,-1.7925,-0.982,0,"ONLY");
3880 gMC->Gspos("I521",10,"I523",-0.5631,-1.7925,-0.982,0,"ONLY");
3881 gMC->Gspos("I521",9,"I523",0.5633,-1.7925,-0.982,0,"ONLY");
3882 gMC->Gspos("I521",8,"I523",1.6861,-1.7925,-0.982,0,"ONLY");
3883 gMC->Gspos("I521",7,"I523",2.8161,-1.7925,-0.982,0,"ONLY");
3884 gMC->Gspos("I519",2,"I523",3.302,-1.79,-1.2943,0,"ONLY");
3885 gMC->Gspos("I520",3,"I523",0.0001,-1.845,-1.19,0,"ONLY");
3886 gMC->Gspos("I520",2,"I523",-2.2499,-1.845,-1.19,0,"ONLY");
3887 gMC->Gspos("I521",6,"I523",-2.8209,-1.7075,-0.982,0,"ONLY");
3888 gMC->Gspos("I521",5,"I523",-1.6895,-1.7075,-0.982,0,"ONLY");
3889 gMC->Gspos("I521",4,"I523",-0.5631,-1.7075,-0.982,0,"ONLY");
3890 gMC->Gspos("I521",3,"I523",0.5633,-1.7075,-0.982,0,"ONLY");
3891 gMC->Gspos("I521",2,"I523",1.6861,-1.7075,-0.982,0,"ONLY");
3892 gMC->Gspos("I518",1,"I523",0.0001,-1.75,-1.065,0,"ONLY");
3893 gMC->Gspos("I519",1,"I523",3.302,-1.71,-1.2943,0,"ONLY");
3894 gMC->Gspos("I520",1,"I523",2.2501,-1.845,-1.19,0,"ONLY");
3895 gMC->Gspos("I521",1,"I523",2.8161,-1.7075,-0.982,0,"ONLY");
3896 gMC->Gspos("I522",1,"I523",2.2501,-1.655,-1.3,idrotm[583],"MANY");
3897 gMC->Gspos("I522",2,"I523",-2.2499,-1.655,-1.3,idrotm[583],"MANY");
3898 gMC->Gspos("I542",2,"I523",-2.2499,-1.615,0.0,idrotm[573],"ONLY");
3899 gMC->Gspos("I541",2,"I523",-2.2499,-1.615,0.0,idrotm[573],"ONLY");
3900 gMC->Gspos("I541",1,"I523",2.2501,-1.615,0.0,0,"ONLY");
3901 gMC->Gspos("I542",1,"I523",2.2501,-1.615,0.0,0,"ONLY");
3902 gMC->Gspos("I543",1,"I523",2.1001,-1.615,0.955,0,"MANY");
3903 gMC->Gspos("I543",2,"I523",-2.0999,-1.615,0.955,idrotm[573],"MANY");
3904 gMC->Gspos("I537",2,"I523",1.7501,-1.52,0.0,idrotm[583],"ONLY");
3905 gMC->Gspos("I538",2,"I523",1.8368,-1.3122,0.0,idrotm[575],"ONLY");
3906 gMC->Gspos("I537",3,"I523",0.1035,1.6901,0.0,idrotm[575],"ONLY");
3907 gMC->Gspos("I538",3,"I523",-0.1199,1.6612,0.0,idrotm[581],"ONLY");
3908 gMC->Gspos("I538",1,"I523",-1.7166,-1.52,0.0,idrotm[583],"ONLY");
3909 gMC->Gspos("I537",1,"I523",-1.8532,-1.341,0.0,idrotm[581],"ONLY");
3910 gMC->Gspos("I536",3,"I523",-1.031,0.2033,-1.008,idrotm[580],"ONLY");
3911 gMC->Gspos("I536",4,"I523",-1.031,0.2033,0.908,idrotm[579],"ONLY");
3912 gMC->Gspos("I535",1,"I523",-0.0072,-1.58,-0.0361,idrotm[633],"ONLY");
3913 gMC->Gspos("I536",2,"I523",1.0312,0.2033,-1.008,idrotm[577],"ONLY");
3914 gMC->Gspos("I536",1,"I523",1.0312,0.2033,0.908,idrotm[576],"ONLY");
3915 gMC->Gspos("I534",1,"I523",0.0001,-1.58,1.905,0,"ONLY");
3916 gMC->Gspos("I540",1,"I523",0.0001,-1.785,1.905,idrotm[571],"ONLY");
3917 gMC->Gspos("I539",1,"I523",1.8001,-1.75,-0.195,idrotm[571],"ONLY");
3918 gMC->Gspos("I539",2,"I523",-1.7999,-1.75,-0.195,idrotm[572],"ONLY");
3919 gMC->Gspos("ITS6",1,"I566",0.0,0.0,0.0,0,"ONLY");
3920 gMC->Gspos("I550",1,"I544",2.25,-1.615,0.0,0,"ONLY");
3921 gMC->Gspos("I551",1,"I544",2.25,-1.615,0.0,0,"ONLY");
3922 gMC->Gspos("I551",2,"I544",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3923 gMC->Gspos("I550",2,"I544",-2.25,-1.615,0.0,idrotm[573],"ONLY");
3924 gMC->Gspos("I549",1,"I544",1.7167,-1.52,0.0,idrotm[583],"ONLY");