diff options
author | Stan Seibert <stan@mtrr.org> | 2011-08-03 11:25:05 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-08-03 11:25:05 -0400 |
commit | 1fd605da0024f85714f9451bb78d3a767788e811 (patch) | |
tree | ad4069d02619d8a8d7a1239c1e47c3dd9778cbac /detectors/__init__.py | |
parent | 747d7cde79234775ac117cc58a47f5b2e91ccaaa (diff) | |
parent | 42d2241948e04953788ce82bbeef25d0cba584fb (diff) | |
download | chroma-1fd605da0024f85714f9451bb78d3a767788e811.tar.gz chroma-1fd605da0024f85714f9451bb78d3a767788e811.tar.bz2 chroma-1fd605da0024f85714f9451bb78d3a767788e811.zip |
Merge with Tony
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r-- | detectors/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py index 147fd59..d7583a6 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() |