diff options
author | Stan Seibert <stan@mtrr.org> | 2011-07-28 16:08:43 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-07-28 16:08:43 -0400 |
commit | 8f4281b554ae4478baa984e777460a9b3e16eae6 (patch) | |
tree | 441aa015ff7752cfdcbce594e8ce36b7f45feaa9 /detectors/__init__.py | |
parent | c507d760713abf5756c37b3eefd56c8ecd091227 (diff) | |
download | chroma-8f4281b554ae4478baa984e777460a9b3e16eae6.tar.gz chroma-8f4281b554ae4478baa984e777460a9b3e16eae6.tar.bz2 chroma-8f4281b554ae4478baa984e777460a9b3e16eae6.zip |
Alternate "real_sno" detector configuration using the CAD model of the
acrylic vessel. There are serious issues with this model which
probably make it unsuitable for photon propagation at the moment.
(Example: Why do you need to traverse 8 surfaces to cross the acrylic
vessel? There should only be 4.)
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r-- | detectors/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py index 199b4d7..147fd59 100644 --- a/detectors/__init__.py +++ b/detectors/__init__.py @@ -27,3 +27,7 @@ def build_minilbne(): @buildable('sno') def build_sno(): return build_sno_detector() + +@buildable('real_sno') +def build_real_sno(): + return build_sno_detector(real_av=True) |