From 142e790aeae55d405f7921527cd8e869d36c5671 Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Wed, 10 Aug 2011 19:22:06 -0400 Subject: Use WCSim properties for water with the lbne detector --- detectors/lbne.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'detectors/lbne.py') diff --git a/detectors/lbne.py b/detectors/lbne.py index 3e8ae7b..3e27907 100644 --- a/detectors/lbne.py +++ b/detectors/lbne.py @@ -14,16 +14,16 @@ from make import cylinder def build_lbne(radius, height, nstrings, pmts_per_string, endcap_spacing, physical_model=True): if physical_model: - pmt = build_12inch_pmt_with_lc() + pmt = build_12inch_pmt_with_lc(outer_material=water_wcsim) else: - pmt = build_12inch_pmt_shell() + pmt = build_12inch_pmt_shell(outer_material=water_wcsim) lbne = Geometry() # outer cylinder cylinder_mesh = cylinder(radius, radius, height+height/(pmts_per_string-1), theta=(2*np.pi/nstrings)/4) cylinder_mesh.vertices = rotate(cylinder_mesh.vertices, np.pi/2, (-1,0,0)) - lbne.add_solid(Solid(cylinder_mesh, water, vacuum, black_surface, 0xff0000ff)) + lbne.add_solid(Solid(cylinder_mesh, water_wcsim, vacuum, black_surface, 0xff0000ff)) lbne.pmtids = [] -- cgit