Skip to content

Commit

Permalink
change SCT rMax and TRT rMin manually
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaocongAi committed Aug 5, 2024
1 parent 7fe54d2 commit a6c9671
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ struct WrappingConfig {
wCondition = Wrapping;
wConditionScreen = "[fully wrapped]";

// std::cout<<"WARNING: [fully wrapped] manually set the SCT barrel
// rMax to 550 mm " << std::endl; cVolumeConfig.rMax = 550;
std::cout<<"WARNING: [fully wrapped] manually set the SCT barrel rMax to 550 mm " << std::endl;
cVolumeConfig.rMax = 550;
} else if (existingVolumeConfig.rMin > containerVolumeConfig.rMax) {
// full insertion case
// set the rMax
Expand Down Expand Up @@ -377,8 +377,8 @@ struct WrappingConfig {
wCondition = CentralWrapping;
wConditionScreen = "[CentralWrapping]";

// std::cout<<"WARNING: [CentralWrapping] manually set the TRT barrel
// rMin to 550 mm " << std::endl; cVolumeConfig.rMin = 550;
std::cout<<"WARNING: [CentralWrapping] manually set the TRT barrel rMin to 550 mm " << std::endl;
cVolumeConfig.rMin = 550;
} else if ((existingVolumeConfig.rMax > containerVolumeConfig.rMin &&
existingVolumeConfig.rMin < containerVolumeConfig.rMin) ||
(existingVolumeConfig.rMax > containerVolumeConfig.rMax &&
Expand Down

0 comments on commit a6c9671

Please sign in to comment.