Skip to content

Commit ead07d1

Browse files
[ALICE3] Fix some overlaps between services and supports
1 parent b122c5f commit ead07d1

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Detectors/Upgrades/ALICE3/TRKFT3/FT3/simulation/src/FT3Layer.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,8 @@ void FT3Layer::createLayer(TGeoVolume* motherVolume)
469469
double z_local_offset = z_layer_thickness / 2.0;
470470
// ensure staves fully encapsulated in the layer volume,
471471
// but don't cross out of max nominal radii of 38.5cm & 71.5cm respectively (3.5cm tolerance)
472-
TGeoTube* layer = new TGeoTube(mInnerRadius - 0.2, mOuterRadius + 3.49, z_layer_thickness / 2);
472+
// MvL: try 70.5 // 2.5 cm tolerance instead
473+
TGeoTube* layer = new TGeoTube(mInnerRadius - 0.2, mOuterRadius + 2.49, z_layer_thickness / 2);
473474
layerVol = new TGeoVolume(mLayerName.c_str(), layer, medAir);
474475

475476
if (ft3Params.drawReferenceCircles) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ void TRKServices::createMLServicesPeacock(TGeoVolume* motherVolume)
629629
motherVolume->AddNode(middleBarrelCarbonSupportVolume, 1, nullptr);
630630

631631
// Get geometry information from TRK which is already present
632-
float rMinMiddleServices = 38.5f; // cm, start radius of the ML services = maximum radius allowed for sensors (35 cm), plus some margin for disk paving with modules
632+
float rMinMiddleServices = 38.0f; // cm, start radius of the ML services = maximum radius allowed for sensors (35 cm), plus some margin for disk paving with modules
633633
const float zMiddleServicesBarrel = 64.5f; // cm, z position of the first barrel ML service disk
634634
const float zMiddleServicesBarrelFwdConnection = 143.f; // cm, z position of barrel to forward connection services
635635
const float zLengthCylinderMiddleServicesBarrel = zMiddleServicesBarrelFwdConnection - zMiddleServicesBarrel;

0 commit comments

Comments
 (0)