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