From 8f4281b554ae4478baa984e777460a9b3e16eae6 Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Thu, 28 Jul 2011 16:08:43 -0400 Subject: 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.) --- detectors/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'detectors/__init__.py') 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) -- cgit