Skip to content

Commit 2d73087

Browse files
committed
Fix services crossing
1 parent ff29e3d commit 2d73087

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Detectors/Upgrades/ALICE3/TRK/simulation/src/TRKServices.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ void TRKServices::createMiddleServices(TGeoVolume* motherVolume)
264264
// Carbon Fiber Cylinder support for the middle tracker
265265
float rMinMiddleCarbonSupport = 34.8f; // Arbitrary value
266266
float rMaxMiddleCarbonSupport = 35.f; // 2 mm of carbon fiber
267-
const float zLengthMiddleCarbon = 62.f;
267+
const float zLengthMiddleCarbon = 64.2f;
268268
TGeoTube* middleBarrelCarbonSupport = new TGeoTube("TRK_MID_CARBONSUPPORTsh", rMinMiddleCarbonSupport, rMaxMiddleCarbonSupport, zLengthMiddleCarbon);
269269
TGeoVolume* middleBarrelCarbonSupportVolume = new TGeoVolume("TRK_MID_CARBONSUPPORT", middleBarrelCarbonSupport, medCFiber);
270270
middleBarrelCarbonSupportVolume->SetLineColor(kGray);
@@ -318,7 +318,7 @@ void TRKServices::createMiddleServices(TGeoVolume* motherVolume)
318318
// Middle barrel connection disks
319319
const float rMinMiddleBarrelDisk = 5.68f;
320320
const float rMaxMiddleBarrelDisk = 35.f;
321-
const float zLengthMiddleBarrel = 62.f;
321+
const float zLengthMiddleBarrel = 64.2f;
322322
for (auto& orientation : {Orientation::kASide, Orientation::kCSide}) {
323323
TGeoTube* middleBarrelConnDiskSIO2 = new TGeoTube(Form("TRK_MIDBARCONN_DISK_SIO2sh_%s", orientation == Orientation::kASide ? "bwd" : "fwd"), rMinMiddleBarrelDisk, rMaxMiddleBarrelDisk, siO2FiberThick);
324324
TGeoTube* middleBarrelConnDiskPE = new TGeoTube(Form("TRK_MIDBARCONN_DISK_PEsh_%s", orientation == Orientation::kASide ? "bwd" : "fwd"), rMinMiddleBarrelDisk, rMaxMiddleBarrelDisk, peFiberThick);

0 commit comments

Comments
 (0)