summaryrefslogtreecommitdiff
path: root/detectors/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r--detectors/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py
index 8bcf69b..7a36101 100644
--- a/detectors/__init__.py
+++ b/detectors/__init__.py
@@ -1 +1,11 @@
from lbne import LBNE
+
+# from lbne document 94
+radius = 25.0
+height = 50.0
+nstrings = 324
+pmts_per_string = 102
+endcap_spacing = .485
+
+lbne = LBNE(radius, height, nstrings, pmts_per_string, endcap_spacing)
+minilbne = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing)