diff options
author | Stan Seibert <stan@mtrr.org> | 2011-10-05 19:13:16 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-10-05 19:13:16 -0400 |
commit | 8c57794e94f9a9321f76946b33dbff6ab1b4d964 (patch) | |
tree | bd4b9173eb1f084fd347405c883e7ce645311c64 | |
parent | e4ea02720991b5e923e0b7b1045709aff0d6b0c0 (diff) | |
download | chroma-8c57794e94f9a9321f76946b33dbff6ab1b4d964.tar.gz chroma-8c57794e94f9a9321f76946b33dbff6ab1b4d964.tar.bz2 chroma-8c57794e94f9a9321f76946b33dbff6ab1b4d964.zip |
Missing glass parameter in build_pmt_shell()
-rw-r--r-- | chroma/pmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chroma/pmt.py b/chroma/pmt.py index 6f9e0df..c8badad 100644 --- a/chroma/pmt.py +++ b/chroma/pmt.py @@ -22,7 +22,7 @@ def build_light_collector(pmt, a, b, d, rmin, rmax, surface, npoints=10): return Solid(lc_mesh, pmt.outer_material, pmt.outer_material, surface=surface) -def build_pmt_shell(filename, outer_material, nsteps=16): +def build_pmt_shell(filename, outer_material, glass, nsteps=16): profile = read_csv(filename) # slice profile in half |