From 747df46e04c7bddd9416a7ebc4e08244618ccad7 Mon Sep 17 00:00:00 2001 From: Marek Kowalski Date: Thu, 4 Mar 2021 10:50:29 +0100 Subject: [PATCH 1/2] corrected overlaps --- Detectors/TPC/simulation/src/Detector.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Detectors/TPC/simulation/src/Detector.cxx b/Detectors/TPC/simulation/src/Detector.cxx index d05ce659a51f9..d90a49bfba88c 100644 --- a/Detectors/TPC/simulation/src/Detector.cxx +++ b/Detectors/TPC/simulation/src/Detector.cxx @@ -1436,11 +1436,11 @@ void Detector::ConstructTPCGeometry() // auto* cflv = new TGeoVolume("TPC_CDR", cfl, m3); // sandwich - auto* cd1 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 0.2, 119.95); - auto* cd2 = new TGeoTubeSeg(60.6262, 61.1862, 69.8, 0.2, 119.95); - auto* cd3 = new TGeoTubeSeg(60.6462, 61.1662, 69.8, 0.2, 119.95); - auto* cd4 = new TGeoTubeSeg(60.6562, 61.1562, 69.8, 0.2, 119.95); - auto* tepox4 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 359.8, 0.8); + auto* cd1 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 0.05, 119.95); + auto* cd2 = new TGeoTubeSeg(60.6262, 61.1862, 69.8, 0.05, 119.95); + auto* cd3 = new TGeoTubeSeg(60.6462, 61.1662, 69.8, 0.05, 119.95); + auto* cd4 = new TGeoTubeSeg(60.6562, 61.1562, 69.8, 0.05, 119.95); + auto* tepox4 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 359.95, 0.05); //epoxy glue 0.01 deg // TGeoMedium* sm6 = gGeoManager->GetMedium("TPC_Prepreg1"); TGeoMedium* sm8 = gGeoManager->GetMedium("TPC_Epoxyfm"); From f620be33cf313739f4fd5a47cda119239a87a58e Mon Sep 17 00:00:00 2001 From: Marek Kowalski Date: Thu, 4 Mar 2021 13:08:49 +0100 Subject: [PATCH 2/2] corrected overlaps in cdrum --- Detectors/TPC/simulation/src/Detector.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/TPC/simulation/src/Detector.cxx b/Detectors/TPC/simulation/src/Detector.cxx index d90a49bfba88c..3d0799faee480 100644 --- a/Detectors/TPC/simulation/src/Detector.cxx +++ b/Detectors/TPC/simulation/src/Detector.cxx @@ -1440,7 +1440,7 @@ void Detector::ConstructTPCGeometry() auto* cd2 = new TGeoTubeSeg(60.6262, 61.1862, 69.8, 0.05, 119.95); auto* cd3 = new TGeoTubeSeg(60.6462, 61.1662, 69.8, 0.05, 119.95); auto* cd4 = new TGeoTubeSeg(60.6562, 61.1562, 69.8, 0.05, 119.95); - auto* tepox4 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 359.95, 0.05); //epoxy glue 0.01 deg + auto* tepox4 = new TGeoTubeSeg(60.6224, 61.19, 69.8, 359.95, 0.05); //epoxy glue 0.01 deg // TGeoMedium* sm6 = gGeoManager->GetMedium("TPC_Prepreg1"); TGeoMedium* sm8 = gGeoManager->GetMedium("TPC_Epoxyfm");