Skip to content

Commit 0650a9e

Browse files
committed
Vessel: Fixes from Fairhurst
1 parent 3fe43cd commit 0650a9e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

geometry/geometry_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@
132132
c.Veto.outerSupport = 8.*u.mm
133133
c.Veto.outerSupportMed = "Aluminum"
134134
c.Veto.lidThickness = 80.*u.mm
135-
c.Veto.sensitiveThickness = 0.3*u.m
135+
c.Veto.sensitiveThickness = 0.2 * u.m
136136
c.Veto.sensitiveMed = "Scintillator"
137137
c.Veto.decayMed = "vacuums"
138-
c.Veto.rib = 3.*u.cm
138+
c.Veto.rib = 1.5 * u.cm
139139
c.Veto.ribMed = "steel"
140140
# horizontal width at start and focus point, for conical/rectangular size
141141
# envelope (46,1.2) or (46,0.9) end at T4: (100.,2.5) London slides, https://indico.cern.ch/event/508465/contributions/2166894/

veto/veto.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ veto::veto(const char* name, Bool_t active)
9292
vetoMed_name("Scintillator"), // for liquid scintillator
9393
supportMedIn_name("steel"), // for vacuum option
9494
supportMedOut_name("Aluminum"), // for vacuum option
95-
f_RibThickness(3.*cm),
95+
f_RibThickness(1.5 * cm),
9696
decayVolumeMed_name("vacuums") // for vacuum option
9797
{
9898
fUseSupport=1;
@@ -184,8 +184,8 @@ TGeoVolume* veto::GeoTrapezoidNew(TString xname,Double_t thick,Double_t wz,
184184

185185
double wx(double z){
186186

187-
double wx1 = 1000 * mm;
188-
double wx2 = 4200 * mm;
187+
double wx1 = 920 * mm;
188+
double wx2 = 4120 * mm;
189189
double z1 = 0 * m;
190190
double z2 = 50 * m;
191191

@@ -194,8 +194,8 @@ double wx(double z){
194194

195195
double wy(double z){
196196

197-
double wy1 = 2700 * mm;
198-
double wy2 = 6200 * mm;
197+
double wy1 = 2620 * mm;
198+
double wy2 = 6120 * mm;
199199
double z1 = 0 * m;
200200
double z2 = 50 * m;
201201

@@ -826,7 +826,7 @@ TGeoVolume* veto::MakeSegments(Double_t dz,Double_t dx_start,Double_t dy_start,D
826826

827827
double wallThick = 20 * mm; // wall thickness
828828
double liscThick= 200*mm;
829-
double ribThick = 10*mm;
829+
double ribThick = 15 * mm;
830830

831831
double Zshift=-dz + wz/2;//calibration of Z position
832832
double shiftPlot=0;//calibration of Z position

0 commit comments

Comments
 (0)