summaryrefslogtreecommitdiff
path: root/detectors/__init__.py
diff options
context:
space:
mode:
authorStan Seibert <stan@mtrr.org>2011-06-21 15:45:05 -0400
committerStan Seibert <stan@mtrr.org>2011-06-21 15:45:05 -0400
commitd41ad45a2d1c4ffd32375c6b8e24f09d34585913 (patch)
tree86e1beee4f4a95d0867357cd02b193e2f01eef39 /detectors/__init__.py
parent8f51be58c07772585cb7522c18c32465d20120e1 (diff)
downloadchroma-d41ad45a2d1c4ffd32375c6b8e24f09d34585913.tar.gz
chroma-d41ad45a2d1c4ffd32375c6b8e24f09d34585913.tar.bz2
chroma-d41ad45a2d1c4ffd32375c6b8e24f09d34585913.zip
Create a r7081_cut mesh that uses the cut PMT model.
Modify LBNE class to take a cut_pmt option to switch to cut PMT model. Add corresponding lbne_cut, minilbne_cut, microlbne_cut detectors.
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r--detectors/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py
index 285480d..90f8c22 100644
--- a/detectors/__init__.py
+++ b/detectors/__init__.py
@@ -7,6 +7,11 @@ 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)
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)