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