diff options
author | Stan Seibert <stan@mtrr.org> | 2011-08-10 19:22:06 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-08-10 19:22:06 -0400 |
commit | 142e790aeae55d405f7921527cd8e869d36c5671 (patch) | |
tree | 6aa48a00575d8a04317a5a3090bd05028bc19cb9 /detectors/lbne.py | |
parent | 0dcfffe29e8e8baac6f854cb6fde0e09d81ab62a (diff) | |
download | chroma-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.py | 6 |
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 = [] |