summaryrefslogtreecommitdiff
path: root/detectors/lbne.py
diff options
context:
space:
mode:
authorStan Seibert <stan@mtrr.org>2011-08-10 19:22:06 -0400
committerStan Seibert <stan@mtrr.org>2011-08-10 19:22:06 -0400
commit142e790aeae55d405f7921527cd8e869d36c5671 (patch)
tree6aa48a00575d8a04317a5a3090bd05028bc19cb9 /detectors/lbne.py
parent0dcfffe29e8e8baac6f854cb6fde0e09d81ab62a (diff)
downloadchroma-142e790aeae55d405f7921527cd8e869d36c5671.tar.gz
chroma-142e790aeae55d405f7921527cd8e869d36c5671.tar.bz2
chroma-142e790aeae55d405f7921527cd8e869d36c5671.zip
Use WCSim properties for water with the lbne detector
Diffstat (limited to 'detectors/lbne.py')
-rw-r--r--detectors/lbne.py6
1 files changed, 3 insertions, 3 deletions
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 = []