From 1a6dc30108d3e78f72f773ec025fc98e246f68f5 Mon Sep 17 00:00:00 2001 From: Anthony LaTorre Date: Sat, 30 Jul 2011 16:10:27 -0400 Subject: when throwing photons from the light source out onto the scene, photons are now thrown randomly across each triangle instead of only at the center of each triangle. all of the rendering kernels have been rewritten so that they operate additively; for example, you may now throw photons from the light source onto the scene, render from the camera to the scene, then throw more photons and render again. --- detectors/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'detectors') diff --git a/detectors/__init__.py b/detectors/__init__.py index 199b4d7..5cffce4 100644 --- a/detectors/__init__.py +++ b/detectors/__init__.py @@ -24,6 +24,10 @@ def build_lbne_200kton(): def build_minilbne(): return build_lbne(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing) +@buildable('microlbne') +def build_microlbne(): + return build_lbne(radius/40, height/40, nstrings//40, pmts_per_string//40, endcap_spacing) + @buildable('sno') def build_sno(): return build_sno_detector() -- cgit