summaryrefslogtreecommitdiff
path: root/detectors
diff options
context:
space:
mode:
authorStan Seibert <stan@mtrr.org>2011-06-22 17:45:50 -0400
committerStan Seibert <stan@mtrr.org>2011-06-22 17:45:50 -0400
commitad5d8d60ba75a95a7557b7aa450ade9ed816fc6b (patch)
treea504001746612ca962b8b4b9d736682c34173bf8 /detectors
parentc363c3f7e396fedfd0e4ef05f777d78fb72aacb3 (diff)
downloadchroma-ad5d8d60ba75a95a7557b7aa450ade9ed816fc6b.tar.gz
chroma-ad5d8d60ba75a95a7557b7aa450ade9ed816fc6b.tar.bz2
chroma-ad5d8d60ba75a95a7557b7aa450ade9ed816fc6b.zip
Rescale the number of PMTs and dimensions of LBNE to match the latest
Water Cherenkov case study.
Diffstat (limited to 'detectors')
-rw-r--r--detectors/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py
index 90f8c22..eeb2e07 100644
--- a/detectors/__init__.py
+++ b/detectors/__init__.py
@@ -1,17 +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
+# from Water Cherenkov case study
+radius = 65.0/2
+height = 80.3
+nstrings = 229
+pmts_per_string = 90
+endcap_spacing = 0.8912
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)
+microlbne = LBNE(radius/40, height/40, nstrings//40, pmts_per_string//40, 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,
+microlbne_cut = LBNE(radius/40, height/40, nstrings//40, pmts_per_string//40, endcap_spacing,
cut_pmt=True)
lbne_cut = LBNE(radius, height, nstrings, pmts_per_string, endcap_spacing, cut_pmt=True)