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