summaryrefslogtreecommitdiff
path: root/detectors/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r--detectors/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py
new file mode 100644
index 0000000..90f8c22
--- /dev/null
+++ b/detectors/__init__.py
@@ -0,0 +1,17 @@
+from lbne import LBNE
+
+# from lbne document 94
+radius = 25.0
+height = 50.0
+nstrings = 324
+pmts_per_string = 102
+endcap_spacing = .485
+
+minilbne = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing)
+microlbne = LBNE(radius/50, height/50, nstrings//50, pmts_per_string//50, endcap_spacing)
+
+minilbne_cut = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing,
+ cut_pmt=True)
+microlbne_cut = LBNE(radius/50, height/50, nstrings//50, pmts_per_string//50, endcap_spacing,
+ cut_pmt=True)
+lbne_cut = LBNE(radius, height, nstrings, pmts_per_string, endcap_spacing, cut_pmt=True)